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.
| async void Main() | |
| { | |
| var content = "Hello, World!"; | |
| var size = QRCodeSize.Large; | |
| var errorCorrection = QRErrorCorrection.H; | |
| var qrUrl = GenerateQRCodeUrl(content, size, errorCorrection); | |
| qrUrl.Dump(); | |
| var image = await GetQRCodeImage(qrUrl); |
| #!/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' |
| .gem | |
| .npm | |
| cgi-bin | |
| fcgi-bin | |
| html | |
| lib | |
| man | |
| share | |
| tmp | |
| **/node_modules |
| using System; | |
| using MonoTouch.UIKit; | |
| using MonoTouch.CoreAnimation; | |
| namespace XamarinStore | |
| { | |
| public class BrightlyBlurredUIView: UIView | |
| { | |
| CALayer blurLayer,accentLayer; | |
| UIView accentView; |
| // 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 |
| 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) |
| { | |
| "cmd": ["msbuild"], | |
| "path": "C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319", | |
| "working_dir": "${project_path:${folder}}", | |
| "file_regex": "^ (.*)\\(([0-9]*),([0-9]*)" | |
| } |
A list of amazingly awesome PHP libraries, resources and shiny things.
| #!/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 |