Skip to content

Instantly share code, notes, and snippets.

View Rugal's full-sized avatar

Rugal Bernstein Rugal

View GitHub Profile
@Rugal
Rugal / PvsNP.md
Last active August 16, 2020 06:22

definition

problem

大千世界,问题千万. 世间的一切都可以是我们的问题:

  1. 天上有没有神仙
  2. 地下有没有地府
  3. 明天会不会下雨
  4. 考试会不会及格
@Rugal
Rugal / metric.md
Last active August 23, 2019 22:13

Metric

Unit Metric Note
W 10000 CAD$
J 15W of Judy
N 3J of Noah
H 3N of Hao
import java.util.LinkedList;
import java.util.Queue;
import ga.rugal.lintcode.Point;
/**
* https://www.lintcode.com/problem/knight-shortest-path/description
*
* @author rugal
@Rugal
Rugal / CapitalOne.md
Created August 13, 2018 22:51
CapitalOne

1

    // Complete the fizzBuzz function below.
    static void fizzBuzz(int n) {
      for (int i = 1; i <= n; ++i) {
        if(i % 3 == 0 || i % 5 == 0) {
          print(i); 
        } else {
          System.out.println(i);
        }

Create new partition

sudo fdisk /dev/sda
n
p
3
w

Mark partition standard

错误写法 错误发音 正确写法 正确发音 颁布时间 农历时间
孑然一身 jié rán yī shēn 孜然 一身 zī rán yī shēn 2017年2月6日 丁酉年正月初十
聒噪 guō zào 恬噪 tián zào 2017年2月6日 丁酉年正月初十
食古不化 shí gǔ bù huà 尸骨不化 shī gǔ bù huà 2017年2月14日 丁酉年正月十八
龟裂 jūn liè guī liè 2017年2月14日 丁酉年正月十八
心塞 xīn sāi xīn sè 2017年2月16日 丁酉年正月二十
义薄云天 yì bó yún tiān 义盖云天 yì gài yún tiān 2017年7月29日 丁酉年闰六月初七
秸秆 jiē gǎn 桔梗 jū gěng 2017年11月16日 丁酉年十月初一
扑面而来 pū miàn ér lái 铺面而来 2017年11月16日 丁酉年十月初一
@Rugal
Rugal / Maze.java
Last active November 17, 2017 17:14
package ga.rugal.ben;
import java.util.Stack;
public class Maze {
private final Stack<Integer> current = new Stack<>();
private Stack<Integer> minStack = new Stack<>();
@Rugal
Rugal / tmux-cheatsheet.markdown
Created July 14, 2016 15:34 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname