Original link: http://www.concentric.net/~Ttwang/tech/inthash.htm
Taken from: http://web.archive.org/web/20071223173210/http://www.concentric.net/~Ttwang/tech/inthash.htm
Reformatted using pandoc
Thomas Wang, Jan 1997
last update Mar 2007
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <sys/types.h> | |
| #include <sys/socket.h> | |
| #include <netinet/in.h> | |
| #include <arpa/inet.h> | |
| #include <net/if.h> | |
| #include <ifaddrs.h> | |
| #include <errno.h> | |
| #include <net/if_dl.h> |
| // | |
| // Fully native C++ WinRT application example | |
| // Programmed by fincs | |
| // | |
| #include <windows.h> | |
| #include <roapi.h> | |
| #include <wchar.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> |
| var utils = function(){ | |
| "use strict"; | |
| var _class2type = {}; | |
| var _type = function( obj ) { | |
| return obj == null ? | |
| String( obj ) : | |
| _class2type[ toString.call(obj) ] || "object"; | |
| }; |
| jQuery.extend = jQuery.fn.extend = function() { | |
| var options, name, src, copy, copyIsArray, clone, | |
| target = arguments[0] || {}, | |
| i = 1, | |
| length = arguments.length, | |
| deep = false; | |
| // Handle a deep copy situation | |
| if ( typeof target === "boolean" ) { | |
| deep = target; |
Original link: http://www.concentric.net/~Ttwang/tech/inthash.htm
Taken from: http://web.archive.org/web/20071223173210/http://www.concentric.net/~Ttwang/tech/inthash.htm
Reformatted using pandoc
Thomas Wang, Jan 1997
last update Mar 2007
| #!/usr/bin/env python | |
| """ Script to scrape images from a flickr account. | |
| Author: Ralph Bean <[email protected]> | |
| """ | |
| import ConfigParser | |
| import urllib | |
| import requests |
| <?php | |
| /** | |
| * The plugin bootstrap file | |
| * | |
| * This file is read by WordPress to generate the plugin information in the plugin | |
| * admin area. This file also includes all of the dependencies used by the plugin, | |
| * registers the activation and deactivation functions, and defines a function | |
| * that starts the plugin. | |
| * | |
| * @link http://example.com |
| add_filter('upload_dir', 'cdn_upload_url'); | |
| function cdn_upload_url($args) | |
| { | |
| if (!is_admin()) { | |
| $args['baseurl'] = 'https://your-awesome-cdn.net/wp-content/uploads'; | |
| } | |
| return $args; | |
| } |
| git branch -r | Select-String -Pattern "->" -NotMatch | Select-String -pattern "^ origin/" | foreach { $_ -replace '^ origin/', '' } | Foreach { git checkout $_ } |
| // | |
| // Author: Jonathan Blow | |
| // Version: 1 | |
| // Date: 31 August, 2018 | |
| // | |
| // This code is released under the MIT license, which you can find at | |
| // | |
| // https://opensource.org/licenses/MIT | |
| // | |
| // |