Skip to content

Instantly share code, notes, and snippets.

@agnoster
agnoster / README.md
Last active March 10, 2025 15:41
My ZSH Theme

agnoster.zsh-theme

A ZSH theme optimized for people who use:

  • Solarized
  • Git
  • Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)

For Mac users, I highly recommend iTerm 2 + Solarized Dark

@tsiege
tsiege / The Technical Interview Cheat Sheet.md
Last active April 11, 2025 17:09
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!






\

@askharley
askharley / ssh_keys.md
Last active November 9, 2018 23:47
SSH Keys

alt text

Setting up a SSH Key

What is a SSH Key?

SSH stands for Secure Shell. This is a cryptographic network protocol that's used for operating network services securely over an unsecured network. An SSH key is a way of connecting and authenticating yourself to networks.

Generating a SSH Key on macOS

  1. SSH keys can be generated through the terminal. The code below will begin the process.
@askharley
askharley / scrum.md
Last active April 19, 2021 16:53
Scrum Methodology

alt text

Scrum Methodology

What is scrum?

Scrum is a form of agile methodology that is iterative and incremental. It focuses on approaching a project in a flexible manner as the team works towards it's goal. Scrum encourages close collaboration and constant communication from each member in the team.

Why use scrum?

@javilobo8
javilobo8 / download-file.js
Last active March 17, 2025 14:25
Download files with AJAX (axios)
axios({
url: 'http://localhost:5000/static/example.pdf',
method: 'GET',
responseType: 'blob', // important
}).then((response) => {
const url = window.URL.createObjectURL(new Blob([response.data]));
const link = document.createElement('a');
link.href = url;
link.setAttribute('download', 'file.pdf');
document.body.appendChild(link);
@bradtraversy
bradtraversy / vscode_shortcuts.md
Last active April 18, 2025 13:45
Helpful shortcuts for VSCode

VSCode Shortcuts

List of helpful shortcuts for faster coding

If you have any other helpful shortcuts, feel free to add in the comments of this gist :)

Official List of all commands

@simolus3
simolus3 / main.dart
Created March 28, 2019 18:16
Displays the current balance of a given ethereum address
import 'package:flutter/material.dart';
import 'package:http/http.dart';
import 'package:web3dart/web3dart.dart';
void main() {
runApp(MaterialApp(
home: EthApp(),
theme: ThemeData(
primaryColor: Colors.orange,
typography: Typography(