Skip to content

Instantly share code, notes, and snippets.

View Makova's full-sized avatar

Manu Makova

  • GCubo en su día. Ahora nómada.
  • Spain
  • X @Makova_
View GitHub Profile
@javilonas
javilonas / Operaciones-Git
Created December 3, 2015 23:30 — forked from jelcaf/Operaciones-Git
Git Tips - Mini-trucos de Git para facilitarme la tarea
#############################################
# Push de la rama actual
git push origin $rama_actual
#############################################
# Volver a un commit anterior, descartando los cambios
git reset --HARD $SHA1
#############################################
# Ver y descargar Ramas remotas
Huerto = ["zanahoria", "col", "lechuga", "col"]
for Planta in Huerto:
if Planta != "col"
print Planta
else
print "Odio las coles"
@angrykoala
angrykoala / hasselhoffinator.sh
Last active July 11, 2017 10:16
hasselhoffinator
#!/bin/bash
#hasselhoff attack taken to a new level
#@angrykoala
DIR=/home/$(whoami)/hasselhoff.jpg
MESSAGE="you have been hasselhoffed"
IMAGE_URL=http://www.ljpaez.es/imagen/hasselhoff.jpg
wget $IMAGE_URL -q
mv ./hasselhoff.jpg $DIR
gsettings set org.gnome.desktop.background picture-uri file://$DIR
@jiggneshhgohel
jiggneshhgohel / gist:ade2c57d03c4ad895e82
Created February 27, 2015 21:26
Adobe Air 2.6 Installation Steps on Ubuntu 14.04 (64-bit)
@angrykoala
angrykoala / md2pdf
Last active July 11, 2017 10:16
small flavored markdown converter to pdf using pandoc
#!/bin/bash
#md2pdf: small flavored markdown converter to pdf using pandoc
#by @angrykoala
if [ $# -eq 0 ]
then echo "Need at least one argument md2pdf [files]";
else
for var in "$@"
do
filename=$(basename "$var")
@TorresM
TorresM / gist:358625e70d0d46d6b053
Created November 18, 2014 11:42
Formulario de solicitud de recogida de material OSL UGR
function doGet() {
var app = UiApp.createApplication();
//estilo
app.setStyleAttribute("background", "Lavender");
//elementos
/**/
@paulmillr
paulmillr / active.md
Last active April 23, 2024 17:32
Most active GitHub users (by contributions). http://twitter.com/paulmillr

Most active GitHub users (git.io/top)

The count of contributions (summary of Pull Requests, opened issues and commits) to public repos at GitHub.com from Wed, 21 Sep 2022 till Thu, 21 Sep 2023.

Only first 1000 GitHub users according to the count of followers are taken. This is because of limitations of GitHub search. Sorting algo in pseudocode:

githubUsers
 .filter(user => user.followers > 1000)