Skip to content

Instantly share code, notes, and snippets.

View ryukinix's full-sized avatar
☢️
IN RESEARCH

Manoel V. Machado ryukinix

☢️
IN RESEARCH
View GitHub Profile
@lubien
lubien / show-me.js
Last active March 14, 2017 17:26 — forked from ronaiza-cardoso/show-me.js
Show Me the Evens - Show me the Odds
/**
* Show Me the Evens - Show me the Odds
* Diana is learning to count and she just learned the difference between odds and even numbers.
* She wants to have some fun, so she picks a random number.
* If that number is even, she decides to count all the even numbers up to it starting from 0 up to (but not including) the input.
* If not, she decides to count all the odd numbers up to that number starting from 1 (but not including) the input.
**/
const
range = x => y =>
@p-alik
p-alik / ghcPkgUtils.sh
Last active February 2, 2020 19:38 — forked from timmytofu/ghcPkgUtils.sh
ghc-pkg-clean and ghc-pkg-reset compatible with both zsh and bash
# unregister broken GHC packages. Run this a few times to resolve dependency rot in installed packages.
# ghc-pkg-clean -f cabal/dev/packages*.conf also works.
function ghc-pkg-clean() {
for p in `ghc-pkg check $* 2>&1 | grep problems | awk '{print $6}' | sed -e 's/:$//'`
do
echo unregistering $p; ghc-pkg $* unregister $p
done
}
# remove all installed GHC/cabal packages, leaving ~/.cabal binaries and docs in place.
@mpneuried
mpneuried / Makefile
Last active February 4, 2025 22:28
Simple Makefile to build, run, tag and publish a docker containier to AWS-ECR
# import config.
# You can change the default config with `make cnf="config_special.env" build`
cnf ?= config.env
include $(cnf)
export $(shell sed 's/=.*//' $(cnf))
# import deploy config
# You can change the default deploy config with `make cnf="deploy_special.env" release`
dpl ?= deploy.env
include $(dpl)
@Irio
Irio / email.md
Last active October 5, 2016 05:12
[Serenata de Amor] Email de caso disponível

Olá!

Você foi escolhido para participar das primeiras investigações da Operação Serenata de Amor. Se você ainda não se deu conta, você já está fazendo sua parte na Serenata ao Brasil, trabalhando na transparência nas contas públicas. Com a sua ajuda, chegaremos no estágio onde o trabalho manual será o mínimo possível, à cargo do próprio Poder Judiciário.

Mas antes de começarmos, aqui vão algumas dicas que podem facilitar o seu trabalho:

O caso que você vai investigar foi denunciado pelo Robô. Porém, como esse sistema ainda está aprendendo, não temos certeza se o que foi detectado realmente é ilegal. Por isso precisamos muito da sua contribuição.

Não queremos influenciar o seu trabalho. O que você está recebendo é um conjunto de notas que pode ou não ter irregularidades. Nos ajude a entender esses detalhes para identificar se o caso pode ou não ser denunciado ao Ministério Público.

@onlurking
onlurking / fizzbuzz.md
Last active September 6, 2016 01:01
Python FizzBuzz Oneliners
for x in ("FizzBuzz" if num % 15 == 0 else "Fizz" if num % 3 == 0 else "Buzz" if num % 5 == 0 else num for num in range(1,101)): print(x)
for x in ["fizzbuzz" if not x % 15 else "buzz" if not x % 5 else "fizz" if not x % 3 else str(x) for x in range(100)]: print(x)
var shitPosting;
function clearShitFromAPDA() {
Array.prototype.slice.call(document.getElementsByClassName('userContent'), 0)
.filter(x => x.innerText.match(/^\[off\]/i))
.map(x => x.parentNode.parentNode)
.forEach(x => x.parentNode.removeChild(x));
shitPosting = setTimeout(clearShitFromAPDA, 1000);
}
(defun dotspacemacs/user-config ()
"Configuration function for user code.
This function is called at the very end of Spacemacs initialization after
layers configuration.
This is the place where most of your configurations should be done. Unless it is
explicitly specified that a variable should be set before a package is loaded,
you should place your code here."
(spacemacs/set-leader-keys-for-major-mode 'oz-mode
"sb" 'oz-feed-buffer
"sl" 'oz-feed-line
@j-alberto
j-alberto / application.desktop
Last active November 15, 2024 20:46
Very basic ubuntu desktop-file template
[Desktop Entry]
Type=Application
Name=myAppName
Icon=~/myApp/icon.xpm
Exec=~/myApp/launcher
Comment=brief description
Categories=Development;IDE;
Terminal=false

This is unmaintained, please visit Ben-PH/spacemacs-cheatsheet

Useful Spacemacs commands

  • SPC q q - quit
  • SPC w / - split window vertically
  • SPC w - - split window horizontally
  • SPC 1 - switch to window 1
  • SPC 2 - switch to window 2
  • SPC w c - delete current window
@onlurking
onlurking / 2048.py
Last active November 4, 2018 18:57
Python 3 port and PEP8 compliant version of David Sousa's 2048 game, to run install the latest version of pygame with python 3: https://bitbucket.org/pygame/pygame/get/default.zip, original source: https://github.com/davidsousarj/2048py/blob/master/2048py.py
# 2048.py
# Written in python / pygame by DavidSousaRJ - [email protected]
# License: Creative Commons
# Sorry about some comments in portuguese!
import os
import sys
import pygame
from pygame.locals import *
from random import randint