by ChrisK
Thanks to torque
To fix up poorly encoded anime. These comparisons speak for themselves:
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
namespace Utility | |
{ | |
/// <summary> | |
/// public domain zlib decode | |
/// original: v0.2 Sean Barrett 2006-11-18 |
#!/usr/bin/env python2 | |
""" | |
Author: takeshix <[email protected]> | |
PoC code for CVE-2014-0160. Original PoC by Jared Stafford ([email protected]). | |
Supportes all versions of TLS and has STARTTLS support for SMTP,POP3,IMAP,FTP and XMPP. | |
""" | |
import sys,struct,socket | |
from argparse import ArgumentParser |
/* | |
* When developing the UI system we came across a bunch of things we were not happy | |
* with with regards to how certain events and calls could be sent in a loosely coupled | |
* way. We had this requirement because with a UI you tend to implement widgets that receive | |
* certain events, but you don't really want to have lots of glue code to manage them | |
* and keep track of them. The eventing interfaces we developed helped with this. One of | |
* the interesting things, is that they are not justfor the UI system! You can use this as | |
* a type-safe, fast, and simple alternative to SendMessage (never use SendMessage!). | |
* So how does it all work? |
Here are some simple ways to make your PICO-8 code fit in 140 280 characters (as in the #tweetjam #tweetcart craze). I did not invent these, I merely observed and collected them from the tweetjam thread.
x=.1
and x=.023
, not x=0.1
or x=0.023
x=1/3
is shorter than x=.3333
circ(x,y,1)pset(z,q,7)
works just as well[ { | |
"Date" : "2016-07-30", | |
"Data" : { | |
"Moves" : [ | |
{ "ID" : 13, "Key" : "Power", "Old Value" : 15, "New Value" : 25 }, | |
{ "ID" : 14, "Key" : "Power", "Old Value" : 70, "New Value" : 120 }, | |
{ "ID" : 18, "Key" : "Power", "Old Value" : 25, "New Value" : 30 }, | |
{ "ID" : 20, "Key" : "Power", "Old Value" : 15, "New Value" : 25 }, | |
{ "ID" : 21, "Key" : "Power", "Old Value" : 35, "New Value" : 40 }, | |
{ "ID" : 22, "Key" : "Power", "Old Value" : 55, "New Value" : 80 }, |
wget -c --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" https://download.oracle.com/otn-pub/java/jdk/12.0.2+10/e482c34c86bd4bf8b56c0b35558996b9/jdk-12.0.2_linux-x64_bin.tar.gz |
#pragma once | |
#include "UnityAppController.h" | |
#include "UnityView.h" | |
/* | |
This is a workaround for touches delayed by about 1s near the left | |
screen edge on iOS devices with 3D Touch | |
The issue is due to the global app switcher, which is invoked with |
FROM ubuntu | |
RUN apt update \ | |
&& apt install -y firefox \ | |
openssh-server \ | |
xauth \ | |
&& mkdir /var/run/sshd \ | |
&& mkdir /root/.ssh \ | |
&& chmod 700 /root/.ssh \ | |
&& ssh-keygen -A \ | |
&& sed -i "s/^.*PasswordAuthentication.*$/PasswordAuthentication no/" /etc/ssh/sshd_config \ |
#include <inttypes.h> | |
#include <string.h> | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <math.h> | |
#include <time.h> | |
// generation constants | |
#define CAVE_WIDTH 150 | |
#define CAVE_HEIGHT 300 |