Pour fêter la nouvelle année, quoi de tel qu’une bonne dose de Smalltalk. Eh bien, figurez-vous que ça ne pouvait pas mieux tomber. Le 40ème anniversaire de Smalltalk a été célébré dignement à travers une première vague d’articles sur différentes facettes de ce langage mythique. Les festivités se poursuivent en ce début 2021. La deuxième […]
Tag: Pharo
Smalltalk est l’avenir du code – 1ère partie – Programmez! Magazine #243
Pour fêter le 40ème anniversaire de Smalltalk-80, la communauté francophone du Smalltalk libre Pharo a écrit une série d’articles. Ils sont publiés dans le magazine “Programmez!”, à destination des développeurs. Ce dossier a été assemblé et relu par Stéphane Ducasse (INRIA). La coordination en a été assurée par Laurent Julliard (Google Cloud). Vu le nombre […]
Développement interactif de programmes Pharo 8
Comme vous pouvez le constater à travers les menus de Pharo, il y a de nombreux outils. Mais, pour débuter, vous n’avez besoin que d’un petit sous-ensemble. C’est justement ce qui est abordé dans ce tutoriel. Dans ce qui suit, je vous propose de prendre en main les outils de base de Pharo 8. Chaque […]
PharoJS ESUG 2019 Update
I gave a short presentation at the ESUG 2019 Smalltalk conference that was held this year in Cologne, Germany. In this talk, I made a summary of main PharoJS changes and improvements done during the last 12 months. This includes a more robust test framework to run and test Javascript code generated from Pharo code. […]
Polygon-Based 2D SLAM for Robotic Exploration
Johann Dichtl successfully defended his PhD, that I’ve co-supervised with Luc Fabresse and Guillaume Lozenguez. The defense took place this tuesday July 2nd, 2019 morning. The jury members were: Prof. Ouiddad Labbani from Université de Limoges, Dr. Mikal Ziane, HdR, from Université Paris Descartes, and Dr. Laetitia Matignon from Université Claude Bernard, Lyon 1. Title […]
Observer Pattern Made Easy with Pharo Lightweight Observer
Lightweight Observer is an alternative to Announcement, the default Pharo implementation of the Observer Design Pattern. I started developing Lightweight Observer because I needed a small framework, with an implementation that can be easily converted to Javascript using PharoJS. I also wanted to be straight forward to use. I had in mind beginners such as […]
Farmers Market App: Find Fresh Locally Grown Food
If you care both about the planet and your health, the Farmers Market app is for you! This app allows you to find nearby markets, where you can buy fresh food directly from farmers. Most of the produce are grown locally. This means less fuel for transportation. So, by buying locally grown food you contribute […]
How to Make a Large Lighthouse Using a Cheap 3D Printer
As a Pharo addict, making a 3D printed lighthouse is a fun week-end project. This idea is even more attractive. It’s a project that goes beyond what can be done using a small 3D printer, with a single extruder. The requirement are the following: The lighthouse can be taller than the maximum printing height. The […]
Nao Humanoid Robot Can Write Arbitrary Text
Some of my students worked on this project. They used Pharo, ROS, as well as Choregraphe to make Nao write arbitrary text. Since the robot motion is not very precise, they made up a simple but smart solution to allow the robot can push the page after writing each letter. Source code is available on […]
Hello World in Pharo
The best first post for a software developer is a ‘Hello World’ program. For this, I’m using my favorite programming language: Pharo. Transcript cr; show: ‘Hello World!’