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.
(function( $ ){ | |
jQuery.fn.trace = function () { | |
if (this.length != 1) | |
return ''; | |
var path, node = this; | |
while (node.length) { | |
var realNode = node[0], name = realNode.localName; | |
if (!name) break; | |
name = name.toLowerCase(); |
A list of amazingly awesome PHP libraries, resources and shiny things.
var ip_server = '127.0.0.1:8899'; | |
//includes web server modules | |
var server = require('webserver').create(); | |
//start web server | |
var service = server.listen(ip_server, function(request, response) { | |
var links = []; | |
var casper = require('casper').create(); |
I hereby claim:
To claim this, I am signing this object:
Provides admin skeleton for application | |
Components are built as module | |
Each module has | |
Public routes | |
Admin routes | |
Custom settings routes | |
File based config | |
Database based settings |
# Hello, and welcome to makefile basics. | |
# | |
# You will learn why `make` is so great, and why, despite its "weird" syntax, | |
# it is actually a highly expressive, efficient, and powerful way to build | |
# programs. | |
# | |
# Once you're done here, go to | |
# http://www.gnu.org/software/make/manual/make.html | |
# to learn SOOOO much more. |
#!/usr/bin/env ruby | |
# ./apib2httpsnippets | |
# Author: Max Novakovic | |
# Email: [email protected] | |
require 'awesome_print' | |
require 'json' | |
require 'fileutils' | |
require 'uri' |
I hereby claim:
To claim this, I am signing this object:
These are python 2 and 3 snippets showing how to generate headers to authenticate with HashiCorp's Vault using the AWS authentication method.
It will look for credentials in the
default boto3 locations;
if you need to supply custom credentials (such as from an AssumeRole
call), you would use the
botocore.session.set_credentials
method before calling create_client
.