Skip to content

Instantly share code, notes, and snippets.

View JJ's full-sized avatar
🏠
Working from home

Juan Julián Merelo Guervós JJ

🏠
Working from home
View GitHub Profile
@Michael0x2a
Michael0x2a / minimal-template.tex
Last active July 5, 2024 14:42
Minimal LaTeX template
\documentclass{article}
% General document formatting
\usepackage[margin=0.7in]{geometry}
\usepackage[parfill]{parskip}
\usepackage[utf8]{inputenc}
% Related to math
\usepackage{amsmath,amssymb,amsfonts,amsthm}
\begin{document}
@terceranexus6
terceranexus6 / hwriter
Created October 26, 2015 10:22
haiku writer for your dash. Just because you sometimes are inspired, and happen to be in the terminal.
#!/bin/bash
#by @terceranexus6
#this is a haiku writer
read -p"write firt line: " LINEA1
read -p"write second line: " LINEA2
read -p"write third line: " LINEA3
read -p"name of the haiku (add .txt): " NOMBRE
touch $NOMBRE
@nbremer
nbremer / .block
Last active March 29, 2025 11:57
Radar Chart Redesign
height: 600
license: mit
acknowledgement: Please add "Nadieh Bremer | Visual Cinnamon" to your credit when re-using this code, thank you!
@angrykoala
angrykoala / brainfuck_example.b
Last active July 11, 2017 10:15
Easy and comprehensive example of Brainf*uck language
Easy and comprehensive example of Brainf*uck language
@angrykoala
Writes text
>++++++++[<+++++++++++>-]<-.
>+++[<+++++++++>-]<.
---------.
+++++++++++.
---------------.
>+++++++[<---------->-]<+.
@joyrexus
joyrexus / README.md
Last active April 19, 2025 09:46 — forked from btoone/curl.md
curl tutorial

An introduction to curl using GitHub's API.

Basics

Makes a basic GET request to the specifed URI

curl https://api.github.com/users/caspyin

Includes HTTP-Header information in the output

@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
@Su-Shee
Su-Shee / gist:5d1a417fa9de19c15477
Last active January 14, 2025 16:06
Falsehoods Programmers Believe About "Women In Tech"

Falsehoods Programmers Believe About "Women In Tech"

  • We have absolutely no idea what we're doing in tech. Please explain the utmost basic things to us.

  • We only do web design. Our whole reason of being in tech is to make things pretty. Consider us the doilies of the industry.

  • We're not laughing about your joke, so we clearly need you explain it to us. In great detail.

  • We're only in tech to find a husband, boyfriend or generally to get laid.

@staltz
staltz / introrx.md
Last active May 15, 2025 10:37
The introduction to Reactive Programming you've been missing
@oskyar
oskyar / deleteLineCsv.pl
Last active August 29, 2015 13:58
Elimina columnas o filas de un archivo .csv
#!/usr/bin/perl
# CopyRight 2014 Óscar Zafra ([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,
@josecolella
josecolella / forum.py
Last active August 29, 2015 13:57
Forum Challenge TeamTreehouse
#!/usr/bin/env python3
# Author: Jose Miguel Colella
import urllib.request as http
import os.path
import re
import pprint
# The url of the essay
essayUrl = 'http://treehouse-forum-contests.s3.amazonaws.com/visualizing-information/part-one/essays-first-series.txt'