Skip to content

Instantly share code, notes, and snippets.

@voluntas
voluntas / live.rst
Created August 16, 2017 14:42
ライブコマースをなんとなく調べてみた

ライブコマースをなんとなく調べてみた

概要

ライブコマースというビジネスの仕組みがあるらしいので、調べてみることにした。

WebRTC が使えるのか?という興味で調べたので、実際に使ってみたとかではないし、ビジネス的にどうなのとかはない。技術的な話がメイン。

@jawngee
jawngee / deploy.sh
Created October 3, 2012 11:01
bash script to combine multiple js files into main.js for Parse.com's Cloud shiz
#!/bin/bash
## combines multiple js files into main.js for deploying to parse
## Your separate js files should be in a directory 'source' that
## is at the same level as the 'cloud' and 'config' directories
## parse uses.
cat source/*.js > cloud/main.js
## deploy
parse deploy