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
{Array(10).fill( | |
<div className={styles.dash_row}> | |
{Array(35).fill( | |
<div className={styles.dash_cell}></div> | |
) | |
} | |
</div> | |
) | |
} | |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>CSS Grid Test</title> | |
</head> | |
<body> | |
<div class="wrapper"> | |
<div class="header"></div> | |
<div class="menu"> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>CSS Grid Test</title> | |
</head> | |
<body> | |
<div class="wrapper"> | |
<div class="header"></div> | |
<div class="menu"> |
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
http://geosoft.no/development/android.html | |
##DIRECTORIES USED | |
"%ANDROID_HOME%"\build-tools\19.1.0\ | |
"%ANDROID_HOME%"\platform-tools\ | |
%JAVA_HOME%\bin\ | |
##COMPILE |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Texas Holdem Simulator</title> | |
<meta charset="UTF-8" /> | |
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></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
(?<!//)console.log |
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
http://blog.thefrontiergroup.com.au/2014/10/look-cayley/ | |
// paths that lead to users of the tools | |
var a = g.V('sass').In('uses') | |
var b = g.V('sublime text').In('uses') | |
// Who uses both tools | |
var c = a.Intersect(b).ToArray() | |
// What tools are used by all of those people |
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
/********************************************************************* | |
#### Twitter Post Fetcher! #### | |
Coded by Jason Mayes 2013. | |
www.jasonmayes.com | |
Please keep this disclaimer with my code if you use it. Thanks. :-) | |
Got feedback or questions, ask here: http://goo.gl/JinwJ | |
http://jsfiddle.net/abenlumley/xRwam/4/ | |
Ammended by Ben Lumley and djb31st 2013 | |
www.dijitul.com | |
Ammended to display latest tweet only with links |
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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<title>AJAX TEST</title> | |
</head> | |
<body> | |
<div id="gallery"> | |
<div id="b0" class="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
//VARS | |
var $ = document; | |
var doc = $; | |
$.id = function(x){ | |
return this.getElementById(x); | |
} | |
$.class = function(x){ | |
var e = document.getElementsByTagName('*'); |
NewerOlder