Introduction to Databases & SQL
2:11:04
Friday Hacks #253 MySQL Internals
59:30
Introduction to Docker
1:09:14
2 ай бұрын
Practical Functional Programming
1:52:49
Introduction to Rust
1:29:14
3 ай бұрын
Hackers Toolbox AY 23/24 S 5: Vim
1:40:25
Пікірлер
@apollion888
@apollion888 4 ай бұрын
I'm sorry dude, the sound quality falls really short, I cannot understand you.
@cliveaw1206
@cliveaw1206 4 ай бұрын
it's cool man.
@elcomskhang1697
@elcomskhang1697 8 ай бұрын
As a designer myself, I think it’s really beneficial for engineers to help out in design, especially bc like Chester said we might miss out on certain details or solutions bc we dont have the tools or the knowledge. Engineers don't have to be designers to design, just need to be interested in improving their apps' experience 😄
@happyboy2323
@happyboy2323 11 ай бұрын
Thank you. I spent a sunny afternoon a few months ago, last night and this morning following this video to learn and enjoyed it very much.
@sockbot_
@sockbot_ Жыл бұрын
Great talk! It would be nice if next time the microphone audio could be patched into the computer directly.
@ericloiczerotoni1238
@ericloiczerotoni1238 Жыл бұрын
pretty video your channel need to have 1M subscribers
@x22578
@x22578 Жыл бұрын
we're unable to see the screen with the slides/code :'( will the slides/code be shared for this talk?
@user-qj6hl5xb8q
@user-qj6hl5xb8q Жыл бұрын
Hi NUSHackers, is there part 2 of the video on Jane Street coming up separately?
@danielledecoursey4168
@danielledecoursey4168 Жыл бұрын
🤣 p̾r̾o̾m̾o̾s̾m̾
@MrKarameyl
@MrKarameyl Жыл бұрын
Wonderful work! I was just working on something similar in my spare time tinkering with Platform.Worker for creating my i3wm status bar entirely in Elm on my ArchLinux installation and then I was let's just write a full stack app with Elm and ports with Node and I was genuinely happy when I saw your work. I didn't even know about Lamdera it looks so cool I gotta try it out! Thanks for your talk sir.
@choonkeat77
@choonkeat77 2 жыл бұрын
lol I forgot 1 last refactor in the live demo: instead of rendering data hosted on the page, get the data from server instead! and I've recorded the short bit here kzbin.info/www/bejne/d4mukoiDat6smsU
@shivashankar28
@shivashankar28 2 жыл бұрын
Hi, the video quality is bad, I can’t look at the code, thanks NUS hackers ;)
@NUSHackersChannel
@NUSHackersChannel 2 жыл бұрын
For the second part of the Day 1 Stream, please visit kzbin.info/www/bejne/oH2UZomtf6mdp5o.
@Ragnarok540
@Ragnarok540 2 жыл бұрын
I read Karen and I thought you were implementing a Karen AI...
@somethingintheway151
@somethingintheway151 2 жыл бұрын
Damn this is good!
@muhammadfaizaladdi791
@muhammadfaizaladdi791 2 жыл бұрын
Hi Nus, is it possible for me to get the data?
@chaitanyabaranwal5576
@chaitanyabaranwal5576 2 жыл бұрын
Awesome!
@JakeHebbert
@JakeHebbert 2 жыл бұрын
At 1:43:46, line number 47 should be ""(and new-subst (unify (rhs t1) (rhs t2) new-subst))))"". Adding the new-subst to the line would make this unify so it matches with Prof. Hemann's implementation from his paper. Would this contribute to the angry repl around 2:09? I am jumping around and watching bits and pieces so I am not sure if the bug in the unify was fixed.
@yongkangchia1993
@yongkangchia1993 3 жыл бұрын
thanks for uploading this! i missed the real time lecture for this
@billyzheng7001
@billyzheng7001 3 жыл бұрын
Why so little people see this video? as of now, this video is the only i saw for ruby 3, many details is exposed.
@LearnFlutterCode
@LearnFlutterCode 3 жыл бұрын
Thanks for having me! All the best.
@yongkangchia1993
@yongkangchia1993 3 жыл бұрын
thank you so much for organizing this talk and making it public!
@upplabs3480
@upplabs3480 3 жыл бұрын
Great video format about hacks! You've got a new follower!
@yongkangchia1993
@yongkangchia1993 3 жыл бұрын
great stuff
@tanercoder1915
@tanercoder1915 3 жыл бұрын
best explanation for a beginner
@franciscomagalhaes7457
@franciscomagalhaes7457 7 жыл бұрын
Wow, finally an idiot-proof, step-by-step explanation for this system. Bet you had almost forgotten you uploaded this video, huh? =D
@diegoraggio3180
@diegoraggio3180 7 жыл бұрын
Just incase someone needed it the blog.rb code is: require 'sqlite3' class Blog def initialize() @db = SQLite3::Database.open('blog.sqlite') end def posts self.post_array_to_hash(@db.execute("SELECT * FROM posts")) end def new_post(title, body) @db.execute("INSERT INTO posts (title, body) VALUES ('#{title}', '#{body}')") @db.last_insert_row_id() end def post(id) self.post_array_to_hash(@db.execute("SELECT * FROM posts WHERE id = #{id}"))[0] end def post_array_to_hash(arr) arr.map do |post| { :id => post[0], :title => post[1], :body => post[2], :timestamp => post[3] } end end end And the init.rb code is: #!/usr/bin ruby require 'sqlite3' # remove sqlite file if File.exists? "blog.sqlite" File.delete( "blog.sqlite") end db = SQLite3::Database.open('blog.sqlite') # Create table if it does not existe db.execute <<SQL CREATE TABLE posts( id INTEGER PRIMARY KEY, title VARCHAR(255), body TEXT, timestamp DATETIME DEFAULT CURRENT_TIMESTAMP ); SQL #add some dummy posts db.execute <<SQL INSERT INTO posts (title, body) VALUES ("Post number one", "lorem ipusm dolor sit bamet, consectetur a") SQL db.execute <<SQL INSERT INTO posts (title, body) VALUES ("My second post", " BLAH BLAH BLHA BLHA") SQL
@AshutoshSapkota1
@AshutoshSapkota1 8 жыл бұрын
Awesome tutorial. At the end, I heard of utilizing shell. If there is video can somebody post a link. I would really appreciate it.
@CraneMaster9000
@CraneMaster9000 9 жыл бұрын
Awesome Tutorial !! You should make more tutorials.
@andrewwiggins9233
@andrewwiggins9233 10 жыл бұрын
this is dummy proof. awesome. winning.
@leacocksteve
@leacocksteve 10 жыл бұрын
You made it so simple to understand, your a good speaker!
@transportation-talk
@transportation-talk 10 жыл бұрын
This is probably the only tutorial for non-programmers. Thanks!
@SirUncleCid
@SirUncleCid 10 жыл бұрын
Accent is pretty hard to hear fully. Yano, just slow down your annunciation a bit. Other than that, sweet.
@skurhse
@skurhse 10 жыл бұрын
great tutorial
@skurhse
@skurhse 10 жыл бұрын
great tutorial
@NUSHackersChannel
@NUSHackersChannel 11 жыл бұрын
Updated the video description. Enjoy!
@thegoz
@thegoz 11 жыл бұрын
any chance of making the slides downloadable?