This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ $(yarn info --silent my_package name) = my_package ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# spec/support/locales.rb | |
RSpec.configure do |config| | |
# this filter hook set the default locale for the filtered examples to get | |
# the correct path helpers | |
# for example the route: | |
# scope "(:locale)" do | |
# get "xxx/:id", to: "xxx#show", as: :xxx | |
# end | |
# the helper for this route is for example: | |
# xxx_path(1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
rm *.png run.mp4 | |
for i in {3..192..3} | |
do | |
wget http://modeles.meteociel.fr/modeles/gfs/run/gfs-2-$i-3h.png | |
convert -pointsize 18 -font /path/to/font.ttf -fill red -draw "text 470,50 \"makhdoum by ubugnu ;-)\"" gfs-2-$i-3h.png gfs-2-$i-3h.png | |
done | |
j=1 | |
for i in {3..192..3} |