IaaS指提供系统(可以自己选)或者储存空间之类的硬件,软件要自己手动装;PaaS提供软件/框架(可以自己选);SaaS只能使用开发好的软件(卖软件本身);CaaS是使用docker容器的PaaS;BaaS一般是类似于非关系数据库,但各家不通用,有时还有一些其它东西。
集合:https://github.com/ripienaar/free-for-dev 、https://github.com/qinghuaiorg/free-for-dev-zh
| docker logs nginx 2>&1 | grep "127." | |
| # ref: http://stackoverflow.com/questions/34724980/finding-a-string-in-docker-logs-of-container |
| // ref https://stackoverflow.com/questions/34036018/to-print-all-the-paths-in-a-json-object | |
| ```js | |
| var YsakON = { // YsakObjectNotation | |
| stringify: function (o, prefix) { | |
| prefix = prefix || 'root' | |
| switch (typeof o) { | |
| case 'object': | |
| if (Array.isArray(o)) { return prefix + '=' + JSON.stringify(o) + '\n' } |
| var redis = require('redis') | |
| var rc = redis.createClient(6379, 'localhost'); | |
| function create( target, callback ) | |
| { | |
| x = [] | |
| for ( var i=0; i<40; ++i ) | |
| { | |
| // Only 100K entries in the reverse index | |
| var n = 1000*Math.round(Math.random()*100000); |
IaaS指提供系统(可以自己选)或者储存空间之类的硬件,软件要自己手动装;PaaS提供软件/框架(可以自己选);SaaS只能使用开发好的软件(卖软件本身);CaaS是使用docker容器的PaaS;BaaS一般是类似于非关系数据库,但各家不通用,有时还有一些其它东西。
集合:https://github.com/ripienaar/free-for-dev 、https://github.com/qinghuaiorg/free-for-dev-zh
| "facebook/create-react-app", | |
| "reduxjs/redux", | |
| "GoogleChrome/puppeteer", | |
| "trekhleb/javascript-algorithms", | |
| "30-seconds/30-seconds-of-code", | |
| "zeit/next.js", | |
| "yarnpkg/yarn", | |
| "storybooks/storybook", | |
| "thedaviddias/Front-End-Checklist", | |
| "NARKOZ/hacker-scripts", |
| #!/bin/sh | |
| # | |
| # Copyright (C) 2017 Upper Stream. | |
| # | |
| # See the bottom of this file for licensing conditions. | |
| # | |
| #set -x | |
| set -e |
| // Generate unique IDs for use as pseudo-private/protected names. | |
| // Similar in concept to | |
| // <http://wiki.ecmascript.org/doku.php?id=strawman:names>. | |
| // | |
| // The goals of this function are twofold: | |
| // | |
| // * Provide a way to generate a string guaranteed to be unique when compared | |
| // to other strings generated by this function. | |
| // * Make the string complex enough that it is highly unlikely to be | |
| // accidentally duplicated by hand (this is key if you're using `ID` |
本群組清單 提交修改 請至 gist 回覆
[AD]
| pipeline: | |
| build: | |
| image: alpine | |
| commands: | |
| - echo "do something :v" | |
| slack: | |
| image: plugins/slack | |
| channel: dev__builds | |
| webhook: https://hooks.slack.com/services/... | |