Skip to content

Instantly share code, notes, and snippets.

View mageddo's full-sized avatar
💭
🚲 🍺

Elvis Souza mageddo

💭
🚲 🍺
View GitHub Profile
@mageddo
mageddo / README.md
Last active May 2, 2016 17:18
Fix intellij idea swing ugly fonts
@mageddo
mageddo / README.md
Last active May 19, 2016 01:58
Dockerized phpmyadmin

Dockerized phpmyadmin

@mageddo
mageddo / README.md
Last active April 4, 2020 18:50
Changing Call Of Duty World At War Resolution Manually

Changing Call Of Duty World At War Resolution Manually

If your resolution is unavailable to change, go to:

%userprofile%\AppData\Local\Activision\CoDWaW\players\profiles\$$$

And edit

config.cfg

Find seta r_mode option and change it to the resolution that you want

@mageddo
mageddo / console
Created March 17, 2016 16:47 — forked from dmitriy-kiriyenko/console
Init.d to start/stop xvfb. Put it into /etc/init.d and chmod it to 755
apt-get install xvfb
apt-get install firefox
@mageddo
mageddo / README.md
Created March 17, 2016 16:46
Linux Service Example

Using it

cp ./whatever /etc/init.d/
sudo service whatever start
sudo service whatever stop
@mageddo
mageddo / Dockerfile
Created March 17, 2016 14:01
Running Ubuntu GUI on Docker
# Firefox over VNC
#
# VERSION 0.1
# DOCKER-VERSION 0.2
from ubuntu:12.04
# make sure the package repository is up to date
run echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list
run apt-get update
@mageddo
mageddo / README.md
Last active March 17, 2016 14:09
Run Lubuntu GUI On docker

Using it

  • Run docker image with start.sh script
  • Set your password for vnc access
  • Access 127.0.0.1:5901 on your vnc client
  • Set your password

Enjoy

@mageddo
mageddo / app.js
Created March 16, 2016 16:33
Notificador de status da entrega correios
(function($){
var codigo = 'PI861904134BR';
var ultimoRastreio;
permissionsNotificar();
acompanharRastreio();
function acompanharRastreio(){
window.intervalo = setInterval(() => {
rastrear(codigo, (err, data) => {
if(err){
return console.error(err);
@mageddo
mageddo / script.md
Last active March 15, 2016 17:08
Delete all docker images and containers

Deleting images

docker rmi $(docker images | awk '{print $3}')
# when you delete the images the containers are deleted too
@mageddo
mageddo / using-functions.js
Last active March 7, 2016 18:44
Javascript "Lambdas"
// with functions
var Person = function() {
this.say = message => console.log('you said: ', message);
this.getOnHand = (hand1, hand2) => {
console.log(hand1, 'at left hand');
console.log(hand2, 'at right hand');
}
};
var p1 = new Person();