I hereby claim:
- I am myrkvi on github.
- I am vegberg (https://keybase.io/vegberg) on keybase.
- I have a public key ASDvfsZ1PL2msVZAeAapXyRrpZNDp2gMkZ66uhJV0PnWEwo
To claim this, I am signing this object:
#lang racket | |
(require racket/gui/base) | |
; Create the main window. | |
(define frame (new frame% [label "Filler"] | |
[min-width 300] | |
[min-height 240] | |
[style '(no-resize-border)] | |
)) | |
; Create the status line |
<!DOCTYPE html5> | |
<html> | |
<head> | |
<script type="text/javascript" src="processing.js"> </script> <!-- Loads the Processing.js library from the same directory --> | |
</head> | |
<body> | |
<canvas data-processing-sources="test.pde"></canvas> <!-- This loads the file called "test.pde" in the same directory as the file" --> | |
</body> | |
</html> |
import requests, sys | |
url = "https://www.atb.no/xmlhttprequest.php?service=routeplannerOracle.getOracleAnswer&question=" + " ".join(sys.argv[1:]) | |
r = requests.get(url) | |
text = r.text | |
print(text) |
# -*- coding: utf-8 -*- | |
from sys import argv | |
class Stack: | |
def __init__(self): | |
self.items = [] | |
def isEmpty(self): | |
return self.items == [] |
package utils | |
import ( | |
"encoding/base64" | |
"net/http" | |
"strings" | |
) | |
func BasicAuth(handler http.HandlerFunc, username, password string) http.HandlerFunc { | |
return func(w http.ResponseWriter, r *http.Request) { |
#! /usr/env python3 | |
# Dependencies: | |
# discord.py https://github.com/Rapptz/discord.py | |
# requests http://docs.python-requests.org/en/master/ | |
import discord | |
import asyncio | |
import requests | |
import json |
I hereby claim:
To claim this, I am signing this object:
CSS Emulation of the UI style of the Common Desktop Environment
A Pen by Vegard Berg on CodePen.