Viewing profile — yisheng
yisheng
HN member- Joined
- Sat, Apr 09, 2016, 3:40 AM UTC
- HN karma
- 20
- Public activity
- 11 items
- HN profile
- View on Hacker News ↗
About yisheng
No profile information was provided.
Recent public activity
-
comment
Comment #17379626
I use this when designing a redux application: 1. Define function signatures of selectors and action creators. 2. Define the state tree shape. Action Creators and Selectors transla…
-
comment
Comment #14374666
Oh cool thanks! useful link too
-
comment
Comment #14374122
A little aside - does anyone know what's the colorscheme / theme of the editor in that blogpost?
-
comment
Comment #13914596
I used your tutorial for learning to make my first interpreter and learnt a lot from it. Thank you for sharing!
-
comment
Comment #13660749
I really liked The Elements of Computing Systems (nand2tetris). The reader gets to build a computer from nand gates up.
-
comment
Comment #12506479
Any upsides to using this over a Table view in default kibana?
-
comment
Comment #11796759
Flask is a server-side framework, as others have mentioned. You should be comparing it to micro web frameworks like Nodejs' Express, Ruby's Sinatra, PHP's Slim, Java's Spark, etc.
-
comment
Comment #11728878
I use DRY to enforce consistency. Bad repetition is when you or other engineers have to also remember to update the repeated parts.
-
comment
Comment #11498844
Nice references. Thanks!
-
comment
Comment #11498393
Are there any emacs/vim users here who moved to GUI editors like atom or VS code? I would like to know what potential gains could come from using a GUI text editor.
-
comment
Comment #11459781
The only time you should avoid trailing commas is if your javascript needs to run on older browsers. If you use babel, you can write your source with trailing commas, then let the …