IaaS指提供系统(可以自己选)或者储存空间之类的硬件,软件要自己手动装;PaaS提供软件/框架(可以自己选);SaaS只能使用开发好的软件(卖软件本身);CaaS是使用docker容器的PaaS;BaaS一般是类似于非关系数据库,但各家不通用,有时还有一些其它东西。
集合:https://github.com/ripienaar/free-for-dev 、https://github.com/qinghuaiorg/free-for-dev-zh
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/... | |
#### myspace configuration ref: https://gitee.com/oschina/oschina-config/blob/master/main/my.conf #### | |
server { | |
listen 80; | |
server_name my.oschina.net; | |
include oschina/realip.conf; | |
if ($request_method !~ ^(GET|POST|HEAD)$ ) { | |
return 405; | |
} |
/** | |
* Simple node.js style script loader for modern browsers | |
**/ | |
function loadScript(src, cb) { | |
var script = document.createElement('script'); | |
script.async = true; | |
script.src = src; | |
script.onerror = function() { | |
cb(new Error("Failed to load" + src)); |