Live data from Hacker News

Viewing profile — yisheng

yisheng

HN member
Joined
Sat, Apr 09, 2016, 3:40 AM UTC
HN karma
20
Public activity
11 items

About yisheng

No profile information was provided.

Recent public activity

  1. 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…

  2. comment
    Comment #14374666

    Oh cool thanks! useful link too

  3. comment
    Comment #14374122

    A little aside - does anyone know what's the colorscheme / theme of the editor in that blogpost?

  4. comment
    Comment #13914596

    I used your tutorial for learning to make my first interpreter and learnt a lot from it. Thank you for sharing!

  5. comment
    Comment #13660749

    I really liked The Elements of Computing Systems (nand2tetris). The reader gets to build a computer from nand gates up.

  6. comment
    Comment #12506479

    Any upsides to using this over a Table view in default kibana?

  7. 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.

  8. 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.

  9. comment
    Comment #11498844

    Nice references. Thanks!

  10. 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.

  11. 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 …