// jQuery
$(document).ready(function() {
// code
})
This file contains 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
Category | Title | URL | |
---|---|---|---|
Programming | CS50’s Introduction to Game Development from Harvard University | https://www.class-central.com/course/edx-cs50-s-introduction-to-game-development-11504 | |
Programming | CS50’s Mobile App Development with React Native from Harvard University | https://www.class-central.com/course/edx-cs50-s-mobile-app-development-with-react-native-11505 | |
Programming | CS50’s Web Programming with Python and JavaScript from Harvard University | https://www.class-central.com/course/edx-cs50-s-web-programming-with-python-and-javascript-11506 | |
Programming | Functions, Methods, and Interfaces in Go from University of California, Irvine | https://www.class-central.com/course/coursera-functions-methods-and-interfaces-in-go-12050 | |
Programming | Concurrency in Go from University of California, Irvine | https://www.class-central.com/course/coursera-concurrency-in-go-12047 | |
Programming | Getting Started with Go from University of California, Irvine | https://www.class-central.com/course/coursera-getting-started-with-go-1204 |
This file contains 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
-module(quicksort). | |
-export([quicksort/2]). | |
quicksort(List, SpawnFactor) when SpawnFactor > 0 -> | |
Self = self(), | |
Child = spawn(fun() -> quicksort(Self, List, SpawnFactor) end), | |
receive | |
{Child, SortedList} -> SortedList | |
end. |
This file contains 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
'use strict'; | |
var React = require('react-native'); | |
var { | |
AppRegistry, | |
StyleSheet, | |
Text, | |
View, | |
NativeModules, | |
TouchableHighlight, |
This file contains 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
module.exports = { | |
courses: [ | |
{ | |
id: "clean-code", | |
title: "Clean Code: Writing Code for Humans", | |
watchHref: "http://www.pluralsight.com/courses/writing-clean-code-humans", | |
author: { | |
id: "cory-house", | |
name: "Cory House" | |
}, |
###Icons
Name | Size |
---|---|
iphone_2x | 120x120 |
iphone_3x | 180x180 |
ipad | 76x76 |
ipad_2x | 152x152 |
android_ldpi | 36x36 |
android_mdpi | 48x48 |
This is a curated set of conventions and best practices for Stylus, an expressive, dynamic, robust and advanced CSS preprocessor. Frustrated with there not being a set of conventions set in place (that could be easily found), I set forth to find out on my own.
This file contains 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
// MIXINS | |
vendor(prop, args) | |
-webkit-{prop} args | |
-moz-{prop} args | |
-o-{prop} args | |
{prop} args | |
animation() | |
vendor('animation', arguments) |
This file contains 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
OBSOLETE PREFIXES | |
-xv-interpret-as // -xv- and -o- are old Opera prefixes for the Presto | |
-xv-phonemes // engine. Opera switched to the Blink engine with | |
-xv-voice-balance // version 15. The current version is 23. | |
-xv-voice-duration | |
-xv-voice-pitch | |
-xv-voice-pitch-range | |
-xv-voice-rate | |
-xv-voice-stress | |
-xv-voice-volume |
NewerOlder