Eclipse de soleil annulaire du 01.09.2016 à la Réunion

clipse-tire-par-la-main-du-soleil-de-vintage-avec-des-plantes-66019962

img_3484

eclipse-20160901-verhille

C’était une très belle éclipse. Avec pas mal de nuages avant et pendant l’annularité. Une très belle journée. Avec de beaux sténopés grâce aux arbres.

presque_un_anneau

img_20160901_130608

 

Google Deep Dream – What’s in a computer neural network.

dream_feae72e09e

You should have a look and start playing with your own pictures here : Deep Dream Generator

Playing with fractals on snap

mandelzoomSnap is really great for algorithm research and test.

Here is a big classic from the eighties :

The Mandelbrot fractal Set for Snap.

Get the files here : fractals-0.2.xml

 

And Have Fun !

 

Mandelbrot_Snap

Snap4arduino drag-and-drop programming language for arduino

snap bannerSnap! (formerly BYOB) is a visual, drag-and-drop programming language. It is an extended reimplementation of Scratch (a project of the Lifelong Kindergarten Group at the MIT Media Lab) that allows you to Build Your Own Blocks. It also features first class lists, first class procedures, and continuations. These added capabilities make it suitable for a serious introduction to computer science for high school or college students.

Let’s have fun in your browser with snap by clicking here !

snap4arduino logoSnap4Arduino is a modification of the Snap visual programming language that lets you seamlessly interact with almost all versions of the Arduino electronic prototyping board.

Get Snap 4 Arduino here !

Making a SD card for the Raspberry Pi from an image with ddrescue.

ddrescueOn GNU/Linux :

The SD card may be presented on any device like /dev/sdx so use on the Terminal the command lsblk  or sudo fdisk -lu to check.

 

sudo apt-get install gddrescue xz-utils
unxz myimage-raspberry-pi.img.xz
sudo ddrescue -D --force myimage-raspberry-pi.img /dev/sdx

 

On MacOSX :

On MacOsx you’ll need a real package handler aka : brew !

  1. Press Command+Space and type Terminal and press enter/return key.
  2. Run in Terminal app:

    ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null

    and press enter/return key. Wait for the command to finish.

  3. Run:
    brew install ddrescue
  4. Search where is your SD card device with diskutil list
  5. Then use it :
sudo ddrescue -D --force myimage-raspberry-pi.img /dev/diskx