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
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<!-- Created with Inkscape (http://www.inkscape.org/) --> | |
<svg | |
xmlns:dc="http://purl.org/dc/elements/1.1/" | |
xmlns:cc="http://creativecommons.org/ns#" | |
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
xmlns:svg="http://www.w3.org/2000/svg" | |
xmlns="http://www.w3.org/2000/svg" | |
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" |
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
### | |
This is a block comment that can be used to provide extended documentation... | |
It's not supported by docco [issue #72](https://github.com/jashkenas/docco/pull/72) | |
* *foo* Foo is the first parameter | |
* *bar* Bar is the second parameter | |
* Returns foo | |
### | |
doSomething = (foo, bar)-> | |
return foo |
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
clear | |
function RetrieveData($output, $param1, $param2){ | |
#TODO: Retrieve data | |
$output.data = 42 | |
$output.temp = $param1 + $param2 | |
} | |
function ProcessData($output, $param1){ |
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
.bg-full-screen { | |
background-image: url(...); | |
background-color: transparent; | |
background-size: cover; | |
background-position: center center; | |
background-repeat: no-repeat; | |
position: absolute; | |
top: 0; | |
left: 0; | |
right: 0; |
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
<script type='text/javascript'> | |
function doIt(){ | |
function Class(){ | |
var self = this; | |
self.foo = function fooFunction(){ | |
console.log('foo'); | |
}; | |
var test = 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus |
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
<script type='text/javascript' src='http://code.jquery.com/jquery-1.11.1.min.js'> | |
</script> | |
<script> | |
$(function(){ | |
var div = $('.a1a'); | |
var divs = div.parents('div'); | |
console.log(divs); | |
}); |
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
/*The definition of the animation:*/ | |
@-webkit-keyframes zoomBorderAnimation { | |
from { | |
border-color: rgba(87,181,212, 0.4); | |
border-width: 1px; | |
} | |
70% { | |
border-color: rgba(87,181,212, 0.8); |
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
@-webkit-keyframes pulse { | |
from { | |
width: 170px; | |
} | |
59% { | |
margin-left: 0; | |
margin-top: 0; | |
width: 170px; |
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
DECLARE @PageNumber AS INT, @RowsPerPage AS INT | |
SET @PageNumber = 1 | |
SET @RowsPerPage = 20 | |
SELECT * FROM ( | |
SELECT ROW_NUMBER() OVER(ORDER BY Id /* Sort example*/) AS [Meta.Index], COUNT(Id) OVER() [Meta.Total], | |
i.* FROM Items i | |
WHERE Id > 5 AND Id < 20 -- Filter example | |
) AS result | |
WHERE [Meta.Index] BETWEEN ((@PageNumber - 1) * @RowsPerPage + 1) AND (@PageNumber * @RowsPerPage) -- Pagination | |
ORDER BY [Meta.Index] |
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 gulp = require("gulp"), | |
rimraf = require("rimraf"), | |
concat = require("gulp-concat"), | |
cssmin = require("gulp-cssmin"), | |
uglify = require("gulp-uglify"), | |
project = require("./project.json"), | |
livereload = require('gulp-livereload'), | |
nodemon = require('nodemon'); |
OlderNewer