Skip to content

Instantly share code, notes, and snippets.

View robertofd1995's full-sized avatar

Roberto Fernandez Diaz robertofd1995

  • Asturias , Spain
View GitHub Profile
@staltz
staltz / introrx.md
Last active September 20, 2024 10:10
The introduction to Reactive Programming you've been missing
@sathish-io
sathish-io / Start and Stop PostgreSQL Service on Windows command line
Created May 5, 2014 08:04
Start and Stop PostgreSQL Service on Windows command line
NET START postgresql-x64-9.3 (64-bit windows)
NET STOP postgresql-x64-9.3 (64-bit windows)
NET START postgresql-9.3 (32-bit windows)
NET STOP postgresql-9.3 (32-bit windows)
Note: This is for Windows 7. Replace 9.3 with your version of PostgreSQL version.
@tsiege
tsiege / The Technical Interview Cheat Sheet.md
Last active September 6, 2024 15:34
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

ANNOUNCEMENT

I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!






\

@OnesimusUnbound
OnesimusUnbound / quote.txt
Last active September 3, 2024 12:53
Programming Quotes
[T]he difference between a bad programmer and a
good one is whether he considers his code or his
data structures more important. Bad programmers
worry about the code. Good programmers worry about
data structures and their relationships.
-- Linus Torvalds
~~~
Clarity and brevity sometimes are at odds.
When they are, I choose clarity.
-- Jacob Kaplan-Moss