I hereby claim:
- I am BuonOmo on github.
- I am ulysse (https://keybase.io/ulysse) on keybase.
- I have a public key ASDbVJjf42fm6IxIB-ZXs73n7JTntl9GQXWlHCI9C7ybcQo
To claim this, I am signing this object:
sudo apt-get install nodejs-legacy nodejs npm | |
npm config set prefix ~/npm | |
sudo ln -s /usr/bin/nodejs /usr/bin/node | |
sudo -H npm install -g ungit |
I hereby claim:
To claim this, I am signing this object:
/* ================================= | |
Pass by parameter | |
================================= */ | |
function par(e) { | |
e = "bar"; | |
} | |
var a = "foo"; | |
par(a); | |
console.log("a: "+a); // "foo" |
#!/bin/sh | |
# | |
# Change definition of the screen on line 6. | |
file=$(mktemp /tmp/wallpaper.XXX.jpg) | |
curl --output $file 'https://unsplash.it/1920/1080/?random' | |
gsettings set org.gnome.desktop.background picture-uri file://$file |
# List of image ratio, every image should be <width>-<height> | |
list=(100-100 50-100 100-50 60-200 800-600) | |
# Options for unsplash, & separated (random, blur..) | |
opts="random&blur" | |
for i in $list;do ~/Images/unsplash | |
l=($(echo $i | tr '-' ' ')) | |
curl --output $i.jpg "https://unsplash.it/$l[1]/$l[2]?$opts" | |
done |
#!/bin/zsh | |
# Copyright (C) 2016 Ulysse Buonomo <[email protected]> | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
#!/bin/zsh | |
# Copyright (c) 2016 Ulysse Buonomo <[email protected]> (MIT license) | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: | |
# |
@base <https://www.wikidata.org/wiki/> | |
@prefix fb: <https://facebook.com/> | |
@prefix gh: <https://github.com/> | |
# Friend Of A Friend | |
@prefix foaf: <http://xmlns.com/foaf/0.1/> | |
_:me foaf:firstname "Ulysse"^^string ; # could be integer or else |
#!/bin/sh | |
# Copyright (c) 2016 Ulysse Buonomo <[email protected]> (MIT license) | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: | |
# |
puts (1..10).map do |i| | |
doc = Nokogiri::HTML(open("http://www3.forbes.com/leadership/the-10-best-cities-for-jobs-in-2017/#{i}/")) | |
(11 - i).to_s + ": " + doc.css('.articleContentText > p > strong').text.split(' – ').pop | |
end.reverse |