A list of amazingly awesome PHP libraries, resources and shiny things.
- Composer/Packagist - A package and dependency manager.
- Composer Installers - A multi framework Composer library installer.
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Playlister</title> | |
<link rel="stylesheet" href="sp://import/css/adam.css"> | |
<link rel="stylesheet" href="styles.css"> | |
<script type="text/javascript" src="js/jquery.min.js"></script> | |
</head> |
#!/bin/bash | |
# Script for installing tmux on systems where you don't have root access. | |
# tmux will be installed in $HOME/local/bin. | |
# It's assumed that wget and a C/C++ compiler are installed. | |
# exit on error | |
set -e | |
# create our directories |
A list of amazingly awesome PHP libraries, resources and shiny things.
{ | |
"cmd": ["msbuild"], | |
"path": "C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319", | |
"working_dir": "${project_path:${folder}}", | |
"file_regex": "^ (.*)\\(([0-9]*),([0-9]*)" | |
} |
from bs4 import BeautifulSoup | |
import requests | |
import console | |
import sys | |
url="https://developer.apple.com/support/system-status/" | |
resp = requests.get(url) | |
html_doc = resp.text | |
soup = BeautifulSoup(html_doc) |
// data comes from here http://stat-computing.org/dataexpo/2009/the-data.html | |
// download 1994.csv.bz2 and unpack by running: cat 1994.csv.bz2 | bzip2 -d > 1994.csv | |
// 1994.csv should be ~5.2 million lines and 500MB | |
// importing all rows into leveldb took ~50 seconds on my machine | |
var level = require('level') | |
var byteStream = require('byte-stream') | |
var split = require('binary-split') | |
var fs = require('fs') | |
var count = 0 |
using System; | |
using MonoTouch.UIKit; | |
using MonoTouch.CoreAnimation; | |
namespace XamarinStore | |
{ | |
public class BrightlyBlurredUIView: UIView | |
{ | |
CALayer blurLayer,accentLayer; | |
UIView accentView; |
.gem | |
.npm | |
cgi-bin | |
fcgi-bin | |
html | |
lib | |
man | |
share | |
tmp | |
**/node_modules |
#!/usr/bin/env ruby | |
# encoding: utf-8 | |
# Brett Terpstra 2013, WTF license <http://www.wtfpl.net/txt/copying/> | |
# Outputs a vertical bar chart from date-based JSON data | |
# Requires the JSON rubygem: `[sudo] gem install json` | |
require 'date' | |
require 'open-uri' | |
require 'rubygems' | |
require 'json' |