CLICK ME
yes, even hidden code blocks!
print("hello world!")| package main | |
| import ( | |
| "path/filepath" | |
| "fmt" | |
| "os" | |
| ) | |
| func main(){ | |
| location := "../gocode/" |
| $.fn.skrollto = function(speed, easing) { | |
| speed = speed || 1000; | |
| easing = easing || 'swing'; | |
| return $(this).each(function(i, el){ | |
| //calculate destination place | |
| var dest = 0; | |
| var el = $(this); | |
| if (el.is(':hidden')) { |
| <?php | |
| //This code is licensed under the terms of the MIT license | |
| use GuzzleHttp\Client; | |
| use Config; //using Laravel's Config facade | |
| /* | |
| |-------------------------------------------------------------------------- |
| /* From: http://www.minimit.com/articles/solutions-tutorials/bootstrap-3-responsive-columns-of-same-height */ | |
| /* columns of same height styles */ | |
| .container-xs-height { | |
| display:table; | |
| padding-left:0px; | |
| padding-right:0px; | |
| } | |
| .row-xs-height { | |
| display:table-row; |
| //place this script in the Editor folder within Assets. | |
| using UnityEditor; | |
| //to be used on the command line: | |
| //$ Unity -quit -batchmode -executeMethod WebGLBuilder.build | |
| class WebGLBuilder { | |
| static void build() { | |
| string[] scenes = {"Assets/main.unity"}; |
| /* bling.js */ | |
| window.$ = document.querySelector.bind(document); | |
| window.$$ = document.querySelectorAll.bind(document); | |
| Node.prototype.on = window.on = function(name, fn) { this.addEventListener(name, fn); }; | |
| NodeList.prototype.__proto__ = Array.prototype; | |
| NodeList.prototype.on = function(name, fn) { this.forEach((elem) => elem.on(name, fn)); }; |
| /*! | |
| * ES6 ScriptLoader snippet | |
| * (c) Javier Aguilar mjolnic.com | |
| * License: MIT (http://www.opensource.org/licenses/mit-license.php) | |
| * Source: https://gist.github.com/mjolnic/93cc837dd2213ec0636a | |
| */ | |
| window.ScriptLoader = function () { | |
| /** | |
| * | |
| * @param {string} url |
| package main | |
| import ( | |
| "database/sql" | |
| "fmt" | |
| "net" | |
| "os" | |
| "github.com/go-sql-driver/mysql" | |
| "golang.org/x/crypto/ssh" |