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 . -name "*.js" -not -path "*node_modules*" | xargs wc -l | |
find . -name "*.ts" -not -path "*node_modules*" | xargs wc -l | |
find . -name "*.js" -not -path "*public*" | xargs wc -l | |
find . -name "*.js" -not -path "*dist*" | xargs wc -l | |
# and all together | |
find . -name "*.js" -not -path "*node_modules*" -not -path "./public*" -not -path "./dist*" | xargs wc -l |
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> | |
<meta charset="utf-8"> | |
<title>Simple HTML5 page </title> | |
</head> | |
<body> | |
<header> | |
<hgroup> |
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 net = { | |
objects:{ | |
request:require('request'), | |
cheerio:require('cheerio') | |
}, | |
actions:{ | |
search:function(params){ | |
return new Promise(function(resolve_search, reject_search){ | |
var url = 'http://api.pearson.com/v2/dictionaries/entries?headword=' + params.data; |
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 parser = { | |
objects: { | |
}, | |
api: { | |
parse: function (params) { | |
return new Promise(function (resolve_parse) { | |
var response = { | |
what:params.data.what, | |
hash:params.hash |
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 crud = { | |
objects: {}, | |
api: { | |
get: function (params) { | |
var QUERY_STRING, | |
QUERY_PARAMS = [], | |
WHERE_STRING, | |
WHERE_PIECES = [], | |
HOW = params.how || 'and', |
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 api = { | |
crud:require('./api/crud'), | |
parser:require('./api/parser'), | |
net:require('./api/net'), | |
db:require('./api/db'), | |
com:require('./api/com'), | |
mem:require('./api/mem'), | |
sys:require('./api/sys') | |
} |
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
{ | |
"name": "IO", | |
"version": "1.0.0", | |
"description": "IO", | |
"main": "go", | |
"scripts": { | |
"go": "forever go" | |
}, | |
"dependencies": { | |
"babylonjs": "^3.2.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
-- | |
-- PostgreSQL database dump | |
-- | |
-- Dumped from database version 9.3.22 | |
-- Dumped by pg_dump version 9.3.22 | |
-- Started on 2018-07-30 11:16:37 | |
SET statement_timeout = 0; | |
SET lock_timeout = 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
Thanks! |