Skip to content

Instantly share code, notes, and snippets.

View auula's full-sized avatar
😎
Talk is cheap show me the code!

Leon Ding auula

😎
Talk is cheap show me the code!
View GitHub Profile
@auula
auula / powerlevel9k.config
Created February 22, 2023 12:07 — forked from athityakumar/powerlevel9k.config
Powerlevel9k oh-my-zsh theme configuration for screenshots used in https://github.com/athityakumar/colorls
export ZSH=$HOME/.oh-my-zsh
export DEFAULT_USER='athityakumar'
TERM=xterm-256color
ZSH_THEME="powerlevel9k/powerlevel9k"
POWERLEVEL9K_MODE='awesome-fontconfig'
POWERLEVEL9K_PROMPT_ON_NEWLINE=true
POWERLEVEL9K_PROMPT_ADD_NEWLINE=true
POWERLEVEL9K_RPROMPT_ON_NEWLINE=true
POWERLEVEL9K_SHORTEN_DIR_LENGTH=2
@auula
auula / Telegram_it_group_list.md
Created February 9, 2023 05:56 — forked from Barneybook/Telegram_it_group_list.md
Telegram 資訊相關 群組清單
@auula
auula / gist:579ee5f15d19bfed257fef2c6f23af39
Created February 1, 2023 06:14 — forked from oderwat/gist:9158840
GoLang HTTP PUT / DELETE (just copied from somewhere else!)
package main
import (
"encoding/json"
"fmt"
"net/http"
"net/url"
)
const (
@auula
auula / curl-websocket.sh
Created August 11, 2022 10:04 — forked from htp/curl-websocket.sh
Test a WebSocket using curl.
curl --include \
--no-buffer \
--header "Connection: Upgrade" \
--header "Upgrade: websocket" \
--header "Host: example.com:80" \
--header "Origin: http://example.com:80" \
--header "Sec-WebSocket-Key: SGVsbG8sIHdvcmxkIQ==" \
--header "Sec-WebSocket-Version: 13" \
http://example.com:80/

##分布式系统(Distributed System)资料


#####希望转载的朋友,你可以不用联系我.但是一定要保留原文链接,因为这个项目还在继续也在不定期更新.希望看到文章的朋友能够学到更多.

介绍:这是一篇介绍在动态网络里面实现分布式系统重构的paper.论文的作者(导师)是MIT读博的时候是做分布式系统的研究的,现在在NUS带学生,不仅仅是分布式系统,还有无线网络.如果感兴趣可以去他的主页了解.

@auula
auula / .zshrc
Created April 10, 2022 00:50
.zshrc
# Fig pre block. Keep at the top of this file.
export PATH="${PATH}:${HOME}/.local/bin"
eval "$(fig init zsh pre)"
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="/Users/dings/.oh-my-zsh"
@auula
auula / god.rs
Last active April 10, 2022 00:45
in god we trust.
// ✡️
fn main() {
const GOD:&str = "科学";
println!("in {} we trust.",GOD);
}