Skip to content

Instantly share code, notes, and snippets.

View ajmwagar's full-sized avatar
🏠
Working from home

Avery Wagar ajmwagar

🏠
Working from home
View GitHub Profile
@DanOswalt
DanOswalt / chessmove.md
Last active May 18, 2018 04:53
How to make a chess move when you have no idea what to do.

How to make a chess move when you have no idea what to do.


Sometimes it's dead simple.

  • Can you capture the enemy king? Do this. You win. This is highly recommended.

Otherwise, you'll have to sort things out.

@AndrewJakubowicz
AndrewJakubowicz / Cargo.toml
Last active December 20, 2022 15:05
Specs Roguelike
[package]
name = "specs-roguelike"
version = "0.1.0"
authors = ["youCodeThings"]
edition = "2018"
[dependencies]
tcod = "0.13"
specs = "0.14.0"
@tiagosomda
tiagosomda / gito-command-in-bash.md
Created March 11, 2021 05:33
gito alias in bash

'gito' alias in bash

This is an alias I find useful to have in my dev environment.
I worked with a lot of different people in different projects and in different git repositories.
so I am often going to the repo's website to give people reference to code, so this command makes it easy to quickly get to the repo's website.

## add this to your .bashrc or .profile file
alias gito="browse_to_git_repo"
browse_to_git_repo() {
 # this assumes the remote origin url is using an ssh url