Skip to content

Instantly share code, notes, and snippets.

View biancapower's full-sized avatar

Bianca Power biancapower

View GitHub Profile
@biancapower
biancapower / ruby_books.md
Created October 21, 2021 10:33 — forked from baweaver/ruby_books.md
A list of books for learning and expanding on your Ruby knowledge.

Ruby Book List

Learning Ruby

You're taking your first steps into Ruby

A good introduction to programming in general. Easy on newer programmers.

What is a bash profile?

  • configuration file for the bash shell
  • gets loaded when you load up the shell (open the terminal)
  • actual file depends on which shell you're using
    • .bash_profile and .bashrc if you're using bash
    • .zshrc if you're using zsh
  • check which shell you're in by running echo $SHELL in terminal

Customising Command Prompt

@biancapower
biancapower / gist:1af232a6f2ae4cf390c1fc24189cbf85
Last active April 13, 2022 02:35 — forked from graymouser/gist:8771fdcf0d7715929073b4f8b6143b40
Setup taskwarrior taskserver on ec2 amazon linux
#A sequence for installing a taskwarrior server on an ec2 amazon linux instance
#FIRST go to the ec2 instance management panel,
#edit the security group for the instance and add an inbound rule, custom tcp, port 53589, source anywhere (0.0.0.0/0)
#THEN ssh to the box as ec2-user and run the following
#BUILD TASKSERVER
# install needed things
admin account info" filetype:log
!Host=*.* intext:enc_UserPassword=* ext:pcf
"# -FrontPage-" ext:pwd inurl:(service | authors | administrators | users) "# -FrontPage-" inurl:service.pwd
"AutoCreate=TRUE password=*"
"http://*:*@www” domainname
"index of/" "ws_ftp.ini" "parent directory"
"liveice configuration file" ext:cfg -site:sourceforge.net
"parent directory" +proftpdpasswd
Duclassified" -site:duware.com "DUware All Rights reserved"
duclassmate" -site:duware.com
@biancapower
biancapower / simple_bootstrap_navbar_links_on_right.html
Created November 14, 2017 00:40
A simple Bootstrap 4 navbar with the brand on the left and links on the right
@biancapower
biancapower / simple_boostrap_navbar.html
Last active November 14, 2017 00:53
A simple navbar using Bootstrap 4, straight from Bootstrap 4 docs
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">Navbar</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>