I hereby claim:
- I am superboum on github.
- I am superboum (https://keybase.io/superboum) on keybase.
- I have a public key whose fingerprint is 645F 540A AABE 1452 B294 C970 917F E482 0B73 9EB3
To claim this, I am signing this object:
| 001 | 00 | NUL | |
|---|---|---|---|
| 002 | 01 | SOH | |
| 002 | 02 | STX | |
| 003 | 03 | ETX | |
| 004 | 04 | EOT | |
| 005 | 05 | ENQ | |
| 006 | 06 | ACK | |
| 007 | 07 | BEL | |
| 008 | 08 | BS | |
| 009 | 09 | HT |
I hereby claim:
To claim this, I am signing this object:
| void setup() { | |
| BufferedReader reader; | |
| reader = createReader("euler.txt"); | |
| ArrayList<Integer> nombres = new ArrayList<Integer>(); | |
| while (true) { | |
| try { | |
| int lu = reader.read(); | |
| if (lu == -1) { | |
| break; | |
| } else { |
| float vit=1; | |
| int taille =50; | |
| PVector[] squares; | |
| void setup() { | |
| size(600, 600); | |
| squares = new PVector[] { | |
| new PVector(0,0), | |
| new PVector(taille,taille), |
| import com.mashape.unirest.http.*; | |
| /* API Documentation : | |
| * https://developer.yahoo.com/weather/#curl | |
| * Click on "Current conditions for San Diego, CA" to have a similar requests. | |
| * Conditions code can be found here: https://developer.yahoo.com/weather/documentation.html#codes (eg: 0 = tornado) | |
| * You must create a folder named "code" in your sketch directory and put unirest.jar inside | |
| */ | |
| void setup() { | |
| try { |
| #!/usr/bin/python3 | |
| import requests, sys | |
| payload = { | |
| 'user': sys.argv[1], | |
| 'pass': sys.argv[2], | |
| 'msg': sys.stdin.read() | |
| } | |
| r = requests.get("https://smsapi.free-mobile.fr/sendmsg", params=payload) |
| # run with FLASK_APP=server.py flask run | |
| # download your file on http://127.0.0.1:5000/random | |
| from flask import Flask | |
| from flask import Response | |
| import os | |
| app = Flask(__name__) | |
| @app.route('/random') | |
| def gen_random(): |
| import processing.video.*; | |
| int delay = 3; | |
| int square_size = 5; | |
| Capture cam; | |
| ArrayList<PImage> frames = new ArrayList(); | |
| void setup() { | |
| size(640, 480); |
| #!/usr/bin/bash | |
| # How to add a UEFI entry | |
| # efibootmgr \ | |
| # --disk /dev/sda \ | |
| # --create \ | |
| # --label 'Choisis moi' \ | |
| # --loader '\EFI\efistub\vmlinuz' \ | |
| # --unicode 'root=UUID=50200856-c21a-4bea-9412-bd2f7b27b8b5 ro rootflags=subvol=root rhgb quiet initrd=\EFI\efistub\initramfs' \ | |
| # --verbose |
| ### | |
| # DDCLIENT : https://www.cloudflare.com/technical-resources/#ddclient | |
| ### | |
| # /etc/ddclient/ddclient.conf | |
| daemon=600 # check every 600 seconds | |
| syslog=yes # log update msgs to syslog | |
| mail=root # mail all msgs to root | |
| mail-failure=root # mail failed update msgs to root | |
| pid=/var/run/ddclient.pid # record PID in file. |