A one paragraph description about the container.
These instructions will cover usage information and for the docker container
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
I hereby claim:
To claim this, I am signing this object:
{ | |
"data": { | |
"title": "Stardew Valley Items and Bundles", | |
"version": "1.2", | |
"bundles": { | |
"en": [{ | |
"uid": "185b35ec7502ad3bdbe2c850331964e4", | |
"raw": "Pantry\/0", | |
"id": 0, | |
"title": "Spring Crops", |
<?php | |
/** | |
* Copyright (c) 2015 - CLSource | |
* Helps with the debug log. | |
* see: https://processwire.com/talk/topic/4550-debugging-tips/ | |
* | |
* @author : clsource <camilo@ninjas.cl> | |
* @license : MIT https://opensource.org/licenses/MIT | |
* | |
* usage: |
// Substring Closure | |
// Similar for what found in other languages | |
// Usage | |
// substring(@"my-string", 2, 4); | |
// => -st | |
NSString * ( ^ substring ) (NSString *, int , int); | |
substring = ^(NSString * string, int from, int to) { | |
<?php | |
/* | |
* 401 Response | |
* | |
* Sends a 401 Response Unauthorized | |
* | |
* @author Camilo Castro | |
* | |
* @date 29/07/2014 |
<table style="font-size:110px;padding:10px;margin:10px;margin-top:50px;"> | |
<tr> | |
<th></th> | |
<th><a href="/up">UP</a></th> | |
<th></th> | |
</tr> | |
<tr> | |
<td><a href="/left">LEFT</a></td> | |
<td></td> | |
<td><a href="/right">RIGHT</a></td> |
#!/usr/bin/env python | |
# Filename: soundex.py | |
# Based on the code by Jonathan Wong http://hawflakes.unoc.net/?p=182 | |
# by ClSource | |
# requires swfextract | |
# This program takes a swf and extract all the sounds within. | |
# | |
# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
# Version 2, December 2004 | |
# |