FIBONACCI "...considering both the originality and power of his methods, and the importance of his results, we are abundantly justified in ranking Leonardo of Pisa as the greatest genius in the field of number theory who appeared between the time of Diophantus [4th century A.D.] and that of Fermat" [17th century] R.B. McClenon [13]. [Numbers in square brackets refer to REFERENCES at the end of this article.] 1. The world of Fibonacci. During the twelfth and thirteenth centuries, many far-reaching changes in the social, political and intellectual lives of people and nations were taking place. By the end of the twelfth century, the struggle between the Papacy and the Holy Roman Empire had left many Italian cities independent republics. Among these important and remarkable republics was the small but powerful walled city-state of Pisa which played a major role in the commercial revolution which was transforming Europe. 2. No portraits of Fibonacci exist. 3. 4. What did Fibonacci look like? 5. 6(a).
Help: TeXlipseBibSonomyExtension By using the TeXlipseBibSonomyExtension you can import the publications from your BibSonomy account directly in TeXlipse and make use of them. For installation use the Eclipse Update mechanism with the TeXlipse site ( Please note: You need the TeXlipse plugin in version 1.5 or above to use the TeXlipseBibSonomyExtension. Features# Preferences# Use the preference page to adjust your BibSonomy username and API key. Cite Function# Import publication entries from the BibSonomy server into the .bib file of your LaTeX project. Filter the entries-to-fetch with one or more tag(s). Synchronization# This function enables the synchronization of the .bib file with the server (not completely working until now). Current release# TeXlipseBibSonomyExtension_0.1 Older releases# Known issues# Sometimes the .bib file and autocomplete container lose sync. Questions, bugs, suggestions?
Que peut-on faire avec SVG? Les meilleures applications actuelles réalisées avec SVG vous ferons voir ce que l'on peut faire avec ce langage graphique standard. SVG est un langage pour convertir les données en graphiques. Nous allons voir avec la liste d'applications qui suit que cela peut représenter en fait une variété très étendue d'utilisations. Mais avant tout, il ne faut pas se leurrer, SVG ne convient pas à tous les cas de figure et souvent il vaudra mieux remplacer le code par une simple image, éventuellement avec une image map pour ajouter un peu d'interactivité... Parce que le code SVG est lourd, on peut souvent le remplacer par une image sans ralentir le chargement de la page. Mais lorsque les conditions sont réunies, il est alors possible de fournir grâce à SVG des choses étonnantes... SVG Web Demo Ce site propose un outil qui convertit SVG en Flash afin de l'afficher sur tous les navigateurs. Tracer un chemin sur une carte Jeu de plateau Le lien est sur un fichier SVG. Le jeu Invaders Le jeu Tetris
9 Things You Didn't Know About Benjamin Franklin It's Fun Friday -- time for some fun for the weekend. Enjoy today's post and I'll see you back here on Monday with more philatelic news and notes. United States, 1938Scott #803 In 1938, the United States issued a set of definitive postage stamps featuring images of the nation's first 29 presidents. For those not familiar with fractional postage, some types of U.S. mail required a partial cent, even though there was no coinage for half cents in use in the United States at the time. The first stamp (in denomination order) is the half-cent Benjamin Franklin issue. Many people know that Ben Franklin supported having the turkey as the national emblem for the United States, as opposed to the majestic Bald Eagle, and know that he invented the lightning rod, but do you know these facts? He never once sought public office. Previous Fun Friday Posts
Raspberry Pi FAQs Table of Contents: The Raspberry Pi is a credit-card-sized computer that plugs into your TV and a keyboard. It is a capable little computer which can be used in electronics projects, and for many of the things that your desktop PC does, like spreadsheets, word processing, browsing the internet, and playing games. It also plays high-definition video. We want to see it being used by adults and children all over the world to learn programming and digital making. You can read more about the Raspberry Pi here. The Raspberry Pi Foundation is a charity, so you can’t buy shares in the company. You can buy a Raspberry Pi from our main distributors, Premier Farnell/Element14 and RS Components/Allied Electronics. The Model A+ costs $20, the Model B+ costs $25, the Pi 2 costs $35, the Pi 3 costs $35, and the Pi Zero costs $5, plus local taxes and shipping/handling fees. You get the Raspberry Pi board itself. The components we buy are priced in dollars, and we negotiate manufacturing in dollars. 4.
SVG ou Canvas, que choisir ? Depuis plusieurs années que je m’intéresse à SVG et aux nouvelles possibilités qu’offre HTML5, on me pose régulièrement cette même question : « Quel est le mieux entre SVG et Canvas ? ». Je réponds alors stoïquement et laconiquement : « Les deux mon capitaine, ça dépend ». En effet, ça dépend, voilà donc un petit guide pour vous aider à choisir entre ces deux technologies. Voyons tout d’abord ce que ces technologies ont en commun. Il est très rare que dans le cadre du Web nous ayons deux standards qui fassent la même chose... Vecteurs contre bitmap La première différence entre ces deux technologies tient aux types de données qu’elles manipulent. La différence entre les deux va donc se jouer sur des questions assez simples finalement : si vous devez envisager un redimensionnement sans perte de qualité, SVG sera plus indiqué. Déclaratif contre programmatif Une autre différence de fond entre ces deux technologies tient à la façon de les utiliser. DOM or not DOM, zat iz ze question Conclusion
Sisters 4 Peace | Découvrir linux pas à pas Formations en informatique Accueil > Linux pas à pas Découvrir linux pas à pas Cette page liste l'ensemble des articles dédiés à Linux par ordre de difficulté croissante. Pour plus de clarté, les articles sont classés par rubriques (Introduction à Linux, Installation de Debian...) que vous pouvez retrouver sur le bord gauche de la page. More Sharing Services6 L'ensemble des tutoriels Mistra by Mistra est mis à disposition selon les termes de la licence Creative Commons et Paternité - Partage des Conditions Initiales à l'Identique 3.0 Unported. Tutoriels Linux Prochaines Formations Promotions sur nos prochaines formations à -30% et -50% : Formation Android développement - 7 au 11 Avril - 1000 euros HT Formation iPhone iPad développement -14 au 18 Avril- 1600 euros HT Formation nodeJS- 17 et 18 Avril- 900 euros HT Formation maven - 10 et 11 Avril - 750 euros HT Formation Xamarin pour iOS et Android - 14 au 18 Avril 1800 euros HT Contactez nous pour toute inscription ou information
SVG vs Canvas, à l'heure du choix Quel format choisir pour intégrer des graphismes dans une page Web, ou pour réaliser une application en ligne? Balises contre fonctions SVG est un langage à balise dérivé de XML. Par exemple, voila comment on affiche un texte vectoriel en SVG: <svg width="320px" height="48px"> <g> <text font-size="24" font-style="italic" x="16" y="16" style="fill:purple"> Un texte en SVG </text> </g></svg> Et avec Canvas: <canvas id="can" width="320" height="48">Un texte avec Canvas</canvas><script>function cText(){ var ctx = document.getElementById('can').getContext('2d'); ctx.fillStyle="rgb(255,32,32)"; ctx.font='italic normal 24px Calibri, sans-serif'; ctx.fillText("Un texte avec Canvas", 16, 16);}window.onload=cText;</script> Vectoriel et bitmap? Même s'il est certain que SVG est vectoriel, donc que l'utilisateur peut changer la taille de l'image, Canvas n'est pas bitmap pour autant. Interaction avec l'utilisateur Le code SVG est fait de balises qui peuvent se combiner avec les balises HTML. Scripting