Skip to content

Instantly share code, notes, and snippets.

View beyondlimits's full-sized avatar

beyondlimits

View GitHub Profile
for a in {0..64}
do
for b in {0..40}
do
for c in {0..28}
do
for d in {0..25}
do
dc -e "[p]sp 2 $a ^ 3 $b ^ * 5 $c ^ * 7 $d ^ * d 2 64 ^ >p"
done
1
2
3
4
5
6
7
8
9
10
#include <err.h>
#include <stdio.h>
#include <stdlib.h>
static unsigned short lookup_table[512];
unsigned short mul(unsigned char a, unsigned char b)
{
unsigned short x = a + b, y = (a > b) ? (a - b) : (b - a);
return lookup_table[x] - lookup_table[y];
import bpy
empty = bpy.data.objects['Empty']
probe = empty.constraints['Probe']
output = bpy.data.texts['Output']
output.clear()
for i in range(0, 101):
t = i / 100
{
"manifest_version": 2,
"name": "My New Extension",
"version": "1.0",
"background": {
"scripts": ["script.js"]
},
"permissions": [
"downloads",
"tabs",
var arr = 'abcdefghijklmnopqrstivwxyz'.split('');
var start = 0;
var end = arr.length - 1;
var swaps = 0;
while (start < end) {
for (var i = start; i < end; i += 2) {
var tmp = arr[i];
arr[i] = arr[i + 1];
arr[i + 1] = tmp;
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title>Sub-stereo test</title>
</head>
<body style="margin:0">
<audio id="audio" src="test.ogg" type="audio/ogg" controls="controls" autoplay="autoplay" style="width:100%"></audio>
<table>
<tr>
<?php
class HttpClient
{
private $statusCode;
private $statusMessage;
private $headers;
private $cookies;
public $userAgent;
<?php
require_once 'EasyXMLParser.php';
class AmazonS3XMLParser
{
protected $properties;
protected $contents;
protected $currentItem;