I hereby claim:
- I am lasseskogland on github.
- I am lasseskogland (https://keybase.io/lasseskogland) on keybase.
- I have a public key ASCgvdqKVEsevMrGVCnG2B8tdEoBDd2S5uioSZ9moXDzawo
To claim this, I am signing this object:
# Go here for more information: https://developersparebank1.no/personlig-klient | |
$ClientID = '' | |
$ClientSecret = '' | |
$FinInst = '' | |
$RedirectUrl = 'http://localhost:8089/callback' | |
function New-StateCode { | |
return [System.Random]::new().Next(); | |
} |
using System; | |
using System.Collections.Generic; | |
using System.Dynamic; | |
using System.Linq; | |
using System.Net.Http; | |
using System.Security.Cryptography; | |
using System.Text; | |
using System.Text.Json; | |
using System.Threading.Tasks; | |
using System.Web; |
I hereby claim:
To claim this, I am signing this object:
<!DOCTYPE html> | |
<meta name="robots" content="noindex"> | |
<html><head> | |
<title>Obfuscated name remapper</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<style type="text/css"> | |
body { | |
background: white; | |
color: black; | |
font-family: "Trebuchet MS",Helvetica,Tahoma,Arial,sans-serif; |
#pragma once | |
#include <consoleapi.h> | |
#include <string> | |
#include <memory> | |
class Console { | |
public: | |
Console() { | |
hConsole = GetConsoleWindow(); | |
hConsoleOut = GetStdHandle(STD_OUTPUT_HANDLE); |
import urllib2 | |
import json | |
import sys | |
def getJson(url): | |
return json.loads(urllib2.urlopen(url).read()) | |
def download(author_repo): | |
print 'Gathering information' | |
data = getJson('https://api.github.com/repos/' + author_repo + '/releases/latest') |
import urllib2 | |
import json | |
import time | |
import os | |
import subprocess | |
import shutil | |
from zipfile import ZipFile | |
DATE_FORMAT = '%Y-%m-%d_%H-%M' |
#include <Windows.h> | |
#ifndef WIN32_LEAN_AND_MEAN | |
#define WIN32_LEAN_AND_MEAN | |
#endif | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <signal.h> | |
typedef int * RakPeer; | |
typedef UINT64 RAKNET_GUID; |