I hereby claim:
- I am fionera on github.
- I am fionera (https://keybase.io/fionera) on keybase.
- I have a public key ASDdBVrBXAWQqKmqo6STiK4TvIsLpIHRHRhCey7cKuz_SAo
To claim this, I am signing this object:
/** | |
* Created by fionera on 08.06.16. | |
*/ | |
request = require("request"); | |
var fs = require("fs"); | |
var Twitter = require('twitter'); | |
var config = require('./config'); | |
var userdata = config.userdata; |
import random, socket | |
import subprocess | |
import sys | |
import time | |
from PIL import Image | |
import threading | |
#HOST = '185.55.125.62' |
I hereby claim:
To claim this, I am signing this object:
var WebSocket = require('ws'); | |
/*[{"starts": 0, "ends": 20}], //Row 1 | |
[{"starts": 64, "ends": 84}] // Row 2 | |
]; | |
*/ | |
//kiste 1 = 0-20 | |
//kiste 2 = 64 | |
#!bin/sh | |
OLDFOLDER=/var/www/old/media/image | |
NEWFOLDER=/var/www/new/media/image | |
FILES=$(find $OLDFOLDER -maxdepth 1 -type f | sed 's!.*/!!') | |
for FILE in $FILES; do | |
MD5=$(echo -n $OLDFOLDER/$FILE | md5sum | awk '{ print $1 }'); | |
FOLDER1=$(echo -n $MD5 | cut -c1,2); |
# Maintainer: fionera <[email protected]> | |
# Contributor: fionera <[email protected]> | |
# Submitter: fionera <[email protected]> | |
pkgname=wolfenstache | |
pkgver=0.1 | |
pkgrel=1 | |
pkgdesc='A parody of Wolfenstein 2: The New Colossus. ' | |
arch=('i686' 'x86_64') | |
url='https://dancingengie.itch.io/wolfenstache' |
<?php | |
include_once 'vendor/autoload.php'; | |
$loop = React\EventLoop\Factory::create(); | |
$client = new React\HttpClient\Client($loop); | |
function crawlSoftwareTypes() | |
{ | |
global $client; |
package main | |
import ( | |
"bytes" | |
"context" | |
"io" | |
"net" | |
"net/http" | |
"os" | |
"time" |
package de.fionera.springboottest; | |
import org.springframework.boot.ApplicationArguments; | |
import org.springframework.boot.ApplicationRunner; | |
import org.springframework.context.SmartLifecycle; | |
public class DemoApplication implements ApplicationRunner, SmartLifecycle { | |
private boolean isRunning; | |
@Override |
using System; | |
using System.IO; | |
using System.Security.Cryptography; | |
using System.Text; | |
namespace ConsoleApp1 | |
{ | |
class Program | |
{ | |
private byte[] bDebug = new byte[16] |