Skip to content

Instantly share code, notes, and snippets.

View dcarral's full-sized avatar

Daniel Carral dcarral

View GitHub Profile
@nijicha
nijicha / install_nodejs_and_yarn_homebrew.md
Last active July 25, 2025 09:02
Install NVM, Node.js, Yarn via Homebrew
@lc512k
lc512k / ft-tech-job
Last active February 3, 2019 00:48
Senior Developer - GDPR Team (Internal Products)
Senior Developer - FT Tech GDPR Team - Internal Products)
=========================================================
Rolling 6mo Contract (perm roles available too)
We're looking for a software developer to join our team who shares our love for the web, our passion for performance
and our commitment to accessibility.
Internal Products FT is a team comprised of 50+ developers working in small cross-functional teams of 4-6 people,
with opportunities to rotate internally and learn new technologies. The systems we build range from internal tools,
client-facing applications, APIs, and more.
@alastairs
alastairs / Cambridge Software Crafters Email.md
Last active April 12, 2018 12:40
Email to the Cambridge Software Crafters re: name change and CoC

Changes to the Cambridge Software Craftsmanship Community

Hi everyone

It's not often that we email our members, so please bear with me and read this to the end.

Recent events in the wider tech community, and reactions within the Software Craftsmanship community, have prompted wider discussions about the inclusiveness of the community, and I've decided to make some small but important changes to our local chapter.

@kevin-smets
kevin-smets / iterm2-solarized.md
Last active September 14, 2025 16:48
iTerm2 + Oh My Zsh + Solarized color scheme + Source Code Pro Powerline + Font Awesome + [Powerlevel10k] - (macOS)

Default

Default

Powerlevel10k

Powerlevel10k

TL; DR: "mock" and "stub" were the common terminology when RSpec's API was first created but we've realized that using them to create fake objects causes confusion and that double is a much better term.

I wasn't around when RSpec's original APIs were created, so this is a bit of guess work, but here's my understanding.

When RSpec's mocking API was first created, the two common terms used for what we now commonly call "test doubles" were mocks and

@willurd
willurd / web-servers.md
Last active September 14, 2025 18:56
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000
@coreyhaines
coreyhaines / timer.rb
Created February 4, 2012 09:14
Timer for coderetreat session
#!/usr/bin/env ruby
# Usage ruby 2-minute-timer.rb "message to say when time is up"
# or just chmod +x timer.rb and ./timer.rb
# for more info, see http://coderetreat.org/profiles/blogs/new-session-idea-baby-steps
message = ARGV[0] || "times up"
minutes = 2
seconds = minutes*60
while(true)