Skip to content

Instantly share code, notes, and snippets.

View stereobooster's full-sized avatar
🇺🇦
stand with Ukraine

stereobooster

🇺🇦
stand with Ukraine
View GitHub Profile
@stereobooster
stereobooster / embed
Created April 10, 2011 18:13
share buttons snippet
<iframe frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?hl=ru&amp;ie=UTF8&amp;output=embed&amp;q={address}"></iframe>
<!DOCTYPE html>
<!-- Helpful things to keep in your <head/>
// Brian Blakely, 360i
// http://twitter.com/brianblakely/
-->
<head>
<!-- According to Heather Champ, former community manager at flickr,
you should not allow search engines to index your "Contact Us"
@stereobooster
stereobooster / LICENSE.txt
Created May 24, 2011 05:38 — forked from jed/LICENSE.txt
use anchor tags to parse URLs into components
Copyright (c) 2011 Jed Schmidt, http://jed.is
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
@stereobooster
stereobooster / test_env_path.rb
Created July 16, 2011 23:49
Information about environment path
executables = {}
total = 0
path_extensions = ENV["PATHEXT"].gsub(".", "").downcase.split(File::PATH_SEPARATOR)
path = ENV["Path"]
path.split(File::PATH_SEPARATOR).each do |value|
dir = Pathname.new(value)
if dir.exist? then
filter = File.join(dir.realpath, "*.{" + path_extensions.join(",") + "}")
Dir.glob(filter).each do |file|
@stereobooster
stereobooster / mysql.bat
Created July 27, 2011 14:24
windows prompt cli
sc create MySQL5 binPath= "D:\tools\mysql\bin\mysqld --defaults-file=D:\tools\mysql\my.ini MySQL5"
NET START MySQL5
NET STOP MySQL5
sc delete MySQL5
<!-- Facebook async loading of JSAPI -->
<div id="fb-root"></div>
<script>
// Facebook async loading.
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
@stereobooster
stereobooster / apng.js
Created November 19, 2011 21:55
Modernizr
// This test is ascynchronous. Watch out.
(function(){
var datauri = new Image,
ctx = document.createElement("canvas").getContext("2d");
datauri.onerror = function() {
Modernizr.addTest('apng', function () { return false; });
};
@stereobooster
stereobooster / function.js
Created April 16, 2012 10:56
getElementsByClassName polyfill
/*jshint forin:true, noarg:true, noempty:true, eqeqeq:true, bitwise:true, strict:true, undef:true, curly:true, browser:true, indent:2, maxerr:50 */
(function (document) {
"use strict";
function getElementsByClassName(match, tag) {
if (document.getElementsByClassName) {
return document.getElementsByClassName(match);
}
var result = [],
elements = document.getElementsByTagName(tag || '*'),
i, elem;
@stereobooster
stereobooster / gist:2758622
Created May 20, 2012 16:07
ruby codepoint
puts ["2B71F".hex].pack("U")
# In Ruby 1.9 you can even do this:
puts "\u{2B71F}"