Skip to content

Instantly share code, notes, and snippets.

View Akagi201's full-sized avatar
🎯
Focusing

Bob Liu Akagi201

🎯
Focusing
View GitHub Profile

课程大纲

  1. 使用 SDK 搭建一个简易网站
  2. Motoko 语言简介
  3. Canister 智能合约
  4. 用 Motoko 做后端
  5. 用 Javascript 做前端

第二课-课程要求

DFINITY 课程作业讲解 - Mulander

第1课 - 使⽤ SDK 搭建简易⽹站

课程回顾

1.安装SDK

安装指引

@Akagi201
Akagi201 / .Cloud.md
Created October 2, 2022 05:27 — forked from imba-tjd/.Cloud.md
☁️ 一些免费的云资源

IaaS指提供系统(可以自己选)或者储存空间之类的硬件,软件要自己手动装;PaaS提供语言环境和框架(可以自己选);SaaS只能使用开发好的软件(卖软件本身);BaaS一般类似于非关系数据库,但各家不通用,有时还有一些其它东西。

其他人的集合

@Akagi201
Akagi201 / stun.md
Last active September 17, 2022 15:32
[stun]
@Akagi201
Akagi201 / proxy.sh
Created August 13, 2018 02:35
[proxy]
function proxy(){
#export ALL_PROXY=socks5://127.0.0.1:1086;
export http_proxy=http://127.0.0.1:1087;
export https_proxy=http://127.0.0.1:1087;
echo -e "芝麻开门了"
}
function unproxy(){
#unset ALL_PROXY
unset http_proxy
unset https_proxy

Live Transcoding

This is a collection of working commandline examples to show how one could use FFMpeg and VLC for live transcoding of video streams. All examples have been tested on OSX 10.7.5 with FFMPeg 1.1.3 and VLC 2.0.5 in early 2013.

Documentation links

@Akagi201
Akagi201 / concurrency-in-go.md
Created March 13, 2016 03:58 — forked from kachayev/concurrency-in-go.md
Channels Are Not Enough or Why Pipelining Is Not That Easy