I hereby claim:
- I am edomora97 on github.
- I am edomora97 (https://keybase.io/edomora97) on keybase.
- I have a public key whose fingerprint is 14F3 C390 C274 A2BC 668B 3B32 FF05 4151 02A6 81A7
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
This script downloads from Mojang servers and runs the specified Minecraft version. It supports only offline (i.e. not online-verified) mode.
You have to have java
, python3
and the python request
library installed.
Run it like ./client_launcher.py 1.15.2 username
The images of https://hyp-donadoni-morassutto-oanca.herokuapp.com/
#!/bin/sh | |
UPGRADE_SYSTEM=yes | |
INSTALL_SOFTWARE=yes | |
INSTALL_MATE=yes | |
INSTALL_KEEPASS2=yes | |
INSTALL_CHROME=yes | |
INSTALL_DROPBOX=yes | |
INSTALL_SPOTIFY=yes | |
INSTALL_OH_MY_ZSH=yes |
# Path to your oh-my-zsh installation. | |
export ZSH=$HOME/.oh-my-zsh | |
# Set name of the theme to load. | |
ZSH_THEME="lukerandall" | |
# Uncomment the following line to enable command auto-correction. | |
# ENABLE_CORRECTION="true" | |
# Uncomment the following line to display red dots whilst waiting for completion. |
@import url(https://fonts.googleapis.com/css?family=Rancho&effect=shadow-multiple); | |
a { | |
color: #333; | |
text-decoration: none; | |
} | |
a:hover,a:focus { | |
text-decoration: underline; | |
} | |
a:visited { | |
color: #333; |
var b=document.querySelector("img[id^='profile_pic_header_']").id.substr(19),c;c=window.XMLHttpRequest?new XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP");c.onreadystatechange=function(){if(4==c.readyState&&200==c.status){var a=c.responseText,a=a.substr(9),a=JSON.parse(a).payload.entries;console.log(a);document.body.innerHTML="";document.write("<title>Affinit\u00e0 con i tuoi amici</title><link rel='stylesheet' type='text/css' href='https://fonts.googleapis.com/css?family=Rancho&effect=shadow-multiple'><style>a{text-decoration:none;color:#333;}a:hover,a:focus{text-decoration:underline;}a:visited{color:#333;}img{height:25px;border-radius:25px;border:2px solid;float:left;margin-right:5px}table{cursor:default;margin:20px;background:#e9e9e9;font-family:'Rancho';font-size:25px;}th{border-bottom:1px solid white;background:#e0e0e0;}th,td{border-left:1px solid white;border-right:1px solid white;}tr{transition:all .4s;}td,th{transition:all .4s;padding:0;}th{padding:10px;}tr:hover,tr:focus{background:rgba(255, 25 |
import math | |
import subprocess | |
def clamp(x, minimum, maximum): | |
return max(minimum, min(x, maximum)) | |
def gaussian (w, x): | |
return (w**-0.5) * math.exp(-(x/2*w)**2) | |
def wl2rgb (wl, f = 0.02): | |
mult = 255 / gaussian(f, 0) | |
r = mult * gaussian(f, wl-660) |
#include <stdio.h> | |
#include <fcntl.h> | |
#include <unistd.h> | |
#include <stdlib.h> | |
class FileReader { | |
private: | |
FileReader(const FileReader&fr){} | |
int maxBufferSize,bufferSize,bufferPointer;int fileNo;char*buffer; | |
void loadBuffer(){bufferSize=read(fileNo,buffer,maxBufferSize);bufferPointer=0;} | |
inline char nextChar(){if(bufferPointer>=bufferSize)loadBuffer();return buffer[bufferPointer++];} |
16 | |
1 | |
2 3 | |
4 5 6 | |
7 | |
8 9 | |
10 11 | |
12 | |
13 14 15 | |
1234567890 |