Skip to content

Instantly share code, notes, and snippets.

View suica's full-sized avatar
🎯
Focusing

Sg suica

🎯
Focusing
  • NetEase Hangzhou Institute
  • China
  • 15:49 (UTC +08:00)
View GitHub Profile
@bitterteasweetorange
bitterteasweetorange / keybindings.json
Last active September 9, 2024 13:49
setup vscode like neovim
[
{
"command": "projectManager.listGitProjects#sideBarGit",
"key": "cmd+o"
},
{
"command": "expand_region",
"key": "ctrl+=",
"when": "editorTextFocus"
},
@xiaoxiangmoe
xiaoxiangmoe / 记数学公式.md
Created April 22, 2021 09:07
记数学公式

记数学公式

[TOC]

简介

leanote的markdown编辑器支持基于MathJax编写LaTeX数学公式。

@cedrickchee
cedrickchee / rust_resources.md
Last active September 16, 2024 08:52
Awesome Rust — a collection of resources for learning Rust

Awesome Rust

I learn Rust by reading The Rust Programming Language (aka. TRPL) book.

This is my mind map and collection of resources for learning Rust in early 2019.

I plan to continuously update this list if time allows in future. I will move this into its own GitHub repo or something more permanent when this grow.


@wilon
wilon / vim-surround使用指南.MD
Last active August 30, 2024 07:21
vim-surround使用指南,vim-surround如何使用

普通模式

命令 说明 + 示例
ds 删除括号
ds " "Hello world!" =>
Hello world!
cs 替换括号
cs "( "Hello world!" =>
(Hello world!)
cS 替换括号,括号内文本做新一行
cS "{ "Hello world!" => {     Hello world! }
@Birdie0
Birdie0 / ifttt-webhooks-extended-guide.md
Last active September 16, 2024 21:37
How to use Discord Webhooks

⚠️ This gist is no longer updated! For maintained, improved and even more extended guide click here.


How to use Discord Webhook

It's a JSON

First, learn JSON. It's not programming language, not even close. Just follow syntax rules and you will be fine.

@mdschweda
mdschweda / vs-code-install-extensions.ps1
Last active October 28, 2021 09:38
Batch install Visual Studio Code extensions
# Script for batch installing Visual Studio Code extensions
# Specify extensions to be checked & installed by modifying $extensions
$extensions =
# Look & Feel
"azemoh.one-monokai",
"emmanuelbeziat.vscode-great-icons",
# Editing
"HookyQR.beautify",
"ow.vscode-subword-navigation",
@soheilhy
soheilhy / nginxproxy.md
Last active September 19, 2024 06:16
How to proxy web apps using nginx?

Virtual Hosts on nginx (CSC309)

When hosting our web applications, we often have one public IP address (i.e., an IP address visible to the outside world) using which we want to host multiple web apps. For example, one may wants to host three different web apps respectively for example1.com, example2.com, and example1.com/images on the same machine using a single IP address.

How can we do that? Well, the good news is Internet browsers