This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const exec = require('child_process').exec; | |
| const request = require('request'); | |
| function loadRouteList() { | |
| return new Promise(function (resolve, reject) { | |
| request("http://f.ip.cn/rt/isproutes-ct.txt", function (e, res, body) { | |
| if (e) { | |
| reject(e); | |
| return; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class FXAA { | |
| const FXAA_REDUCE_MIN = 0.0078125; | |
| const FXAA_REDUCE_MUL = 0.125; | |
| const FXAA_SPAN_MAX = 8; | |
| static $w = 0; | |
| static $h = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="steamposts-widget"><div class="steamposts-loading">Loading SteamPosts...</div></div> | |
| <script>(function(e){var t=e.getElementsByTagName("head")[0];var n=e.createElement("script"); | |
| n.type="text/javascript";n.src="//store.licson.net/sp.js";n.async=true; | |
| n.onload=n.onreadystatechange=function(){if(!this.readyState||this.readyState==="complete")new SteamPosts({})}; | |
| t.appendChild(n)})(document)</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- phpMyAdmin SQL Dump | |
| -- version 3.5.8.1 | |
| -- http://www.phpmyadmin.net | |
| -- | |
| -- Host: 127.0.0.1 | |
| -- Generation Time: Jun 14, 2013 at 08:39 AM | |
| -- Server version: 5.6.11-log | |
| -- PHP Version: 5.4.14 | |
| SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| @keyframes animation { | |
| from { | |
| transform: translateX(0px); | |
| } | |
| 60% { | |
| transform: translateX(36px); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| @keyframes animation { | |
| from { | |
| transform: translateX(0px); | |
| } | |
| 60% { | |
| transform: translateX(82px); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| @keyframes animation { | |
| from { | |
| transform: translateX(0px); | |
| } | |
| 60% { | |
| transform: translateX(82px); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * CSS Triangles | |
| */ | |
| body { | |
| margin: 20px; | |
| } | |
| .shape { | |
| width: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Just for fun: Wifi icon with pure CSS | |
| */ | |
| .wifi { | |
| padding: 20px; | |
| } | |
| .wifi, .wifi:before { | |
| display: inline-block; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class FourierTransform { | |
| public $bufferSize; | |
| public $sampleRate; | |
| public $bandwidth; | |
| public $spectrum = array(); | |
| public $real = array(); | |
| public $imag = array(); | |
| public $peakBand = 0; | |
| public $peak = 0; |
NewerOlder