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
var fs = require('fs'); | |
var fse = require('fs-extra'); | |
var path = require('path'); | |
var mkdirp = require('mkdirp'); | |
// The file we'll write the stats to. | |
var deployPath = path.resolve(__dirname, '../../../deploy/'); | |
var filepath = deployPath + '/.webpack-stats.json'; |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
int main(int argc, char *argv[]) | |
{ | |
int a, b, len, chr; | |
for (a = 1; a < argc; ++a) { |
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
// small test (compiled with DJGPP for MSDOS) | |
#include <stdio.h> | |
int main(int argc, char *argv[]) | |
{ | |
int a; | |
char *arg; | |
if (argc == 0) { |
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
/** file 1: lines.c */ | |
/************************************************************************** | |
* lines.c * | |
* written by David Brackeen * | |
* http://www.brackeen.com/home/vga/ * | |
* * | |
* Tab stops are set to 2. * |
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
/** | |
* Returns server environment information and copyright. This is intended | |
* only to be displayed inside of a terminal. | |
* | |
* @returns {String} Copyright and server environment information | |
*/ | |
function getServerInfo() { | |
const engineName = process.title == 'node' ? 'Node.js' | |
: process.title == 'iojs' ? 'io.js' : '(unknown engine)'; | |
const engineVersion = process.title + ' v' + process.versions.node; |
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
// Hide My Ass <https://www.hidemyass.com/> | |
// Copyright (C) 2005-2015, Privax Ltd. | |
$payments: "avangate_bank", "avangate_cashu", "avangate_webmoney", "avangate_qiwi", "avangate_boleto", | |
"avangate_sofort", "avangate_cc", "adyen_cc", "adyen_ideal", "onebip", "mopay", "bitpay", "paypal"; |
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
// ---- | |
// libsass (v3.1.0-beta) | |
// ---- | |
@mixin pulsate($animation-name, $start-size: 0.75, $end-size: 1, $duration: 1.5s) { | |
@keyframes #{$animation-name} { | |
0% { transform: scale($start-size); } | |
50% { transform: scale($end-size); } | |
100% { transform: scale($start-size); } | |
} |
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
// JSCS - for testing code style. | |
jscs: { | |
options: { | |
config: 'jscs.json', | |
}, | |
gruntfile: { | |
src: ['gruntfile.js'] | |
}, | |
// es6 and jsx are not testable yet. | |
src: { |
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
{ | |
"AT": "Austria", | |
"BE": "Belgium", | |
"BG": "Bulgaria", | |
"HR": "Croatia", | |
"CY": "Cyprus", | |
"CZ": "Czech Republic", | |
"DK": "Denmark", | |
"EE": "Estonia", | |
"FI": "Finland", |