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
| # simple script to generate random keys | |
| # You can modify the left and right attributes to be longer, | |
| # or contain any mix of alphanumeric characters you like | |
| # By using the String.succ method, keys will always be uniq. | |
| # Depending on the amount of keys generated, key length may exceed the original length of left + right | |
| @left = "0a0" | |
| @right = "a0a" | |
| 1000.times do |
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
| <body> | |
| <div id="fb-root"> | |
| <script type="text/javascript"> | |
| (function() { | |
| var e = document.createElement('script'); | |
| e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js'; | |
| e.async = true; | |
| document.getElementById('fb-root').appendChild(e); | |
| }()); | |
| window.fbAsyncInit = function() { |
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
| <html lang='en' xml:lang='en' xmlns='http://www.w3.org/1999/xhtml' xmlns:fb='http://www.facebook.com/2008/fbml'> |
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
| <fb:serverFbml> | |
| <script type="text/fbml"> | |
| <fb:fbml> | |
| <fb:request-form invite="true" type="XFBML" content="This is a test invitation from XFBML"> | |
| <fb:multi-friend-selector showborder="false" actiontext="Invite your friends to use this app."> | |
| </fb:request-form> | |
| </fb:fbml> | |
| </script> | |
| </fb:serverFbml> |
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
| window.onload = function() { | |
| var canvas = document.getElementById('c'); | |
| if (canvas && canvas.getContext) { | |
| // Canvas is supported | |
| var ctx = canvas.getContext('2d'); | |
| ctx.gobalAlpha = 1; | |
| ctx.fillStyle = 'red'; | |
| ctx.fillRect(0,0,185,160); | |
| ctx.fillStyle = 'black'; | |
| ctx.fillRect(185,0,8,400); |
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
| require 'formula' | |
| class Fishpatch < Formula | |
| url 'http://downloads.sourceforge.net/project/fish/fish/1.23.1/fish-1.23.1.tar.bz2' | |
| homepage 'http://fishshell.org/' | |
| md5 'ead6b7c6cdb21f35a3d4aa1d5fa596f1' | |
| depends_on 'readline' | |
| skip_clean 'share/doc' |
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
| *.pbxproj -crlf -diff -merge |
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
| find: TAGS=[^"](.*?)[^"]> | |
| replace with: TAGS="\1"> |
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
| Pod::Spec.new do |s| | |
| s.name = 'Nimbus' | |
| s.version = '0.9.3' | |
| s.license = 'Apache License, Version 2.0' | |
| s.summary = 'An iOS framework whose growth is bounded by O(documentation).' | |
| s.homepage = 'http://docs.nimbuskit.info/index.html' | |
| s.author = { 'Jeff Verkoeyen' => '[email protected]', | |
| 'Bubnov Slavik' => '[email protected]', | |
| 'Roger Chapman' => '[email protected]', | |
| 'Manu Cornet' => '[email protected]', |
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
| Pod::Spec.new do |s| | |
| s.name = 'ILTesting' | |
| s.version = '0.1' | |
| s.summary = 'ILTesting provides a collection of Objective C helper classes primarily for assisting with testing. That is, if you can call the current content of one class a collection.' | |
| s.homepage = 'https://github.com/InfiniteLoopDK/ILTesting' | |
| s.license = 'BSD' | |
| s.author = { 'Claus Broch' => '' } | |
| s.source = { :git => 'https://github.com/InfiniteLoopDK/ILTesting.git', :commit => :head} | |
| s.source_files = FileList['*.{c,h,m}'].exclude('ILTestImag |