Skip to content

Instantly share code, notes, and snippets.

View joyoyoyoyoyo's full-sized avatar
🏴
supporting my community

Angel Ortega joyoyoyoyoyo

🏴
supporting my community
  • InterMedia Advertising
  • SoCal / Remote / LA / IE
View GitHub Profile
@joyoyoyoyoyo
joyoyoyoyoyo / docker-install-parrot.sh
Created May 1, 2020 00:53 — forked from nuga99/docker-install-parrot.sh
Install Docker Engine on Parrot OS
#!/bin/sh
# From https://www.hiroom2.com/2017/09/24/parrotsec-3-8-docker-engine-en/
set -e
# Install dependencies.
sudo apt install -y curl apt-transport-https \
software-properties-common ca-certificates
# Install docker.
@joyoyoyoyoyo
joyoyoyoyoyo / README.MD
Created April 19, 2020 21:30 — forked from RichardBronosky/README.MD
cb - A leak-proof tee to the clipboard - Unify the copy and paste commands into one intelligent chainable command.

cb

A leak-proof tee to the clipboard

This script is modeled after tee (see [man tee][2]) and works on Linux, macOS, Cygwin, WSL/WSL2

It's like your normal copy and paste commands, but unified and able to sense when you want it to be chainable.

This project started as an answer to the StackOverflow question: [How can I copy the output of a command directly into my clipboard?][3]

@joyoyoyoyoyo
joyoyoyoyoyo / array_slicing_and_compaction.advanced.bash
Created March 24, 2020 11:32
Advanced Bash :: Array slicing and compaction in bash
# Advanced Bash :: Array slicing and compaction in bash
# TL;DR
X=(something 'whatever' "i have more S P A C E S than i can give away. arent you jealous?")
# ${X[@]} the usual whole array
# ${X[@]:index:length} slice from index to index+length-1 inclusive
# ${X[@]::length} slice from 0 to length-1 inclusive
# ${X[@]:index} slice from index to end of array inclusive
@joyoyoyoyoyo
joyoyoyoyoyo / MacOS Homebrew Install Java.md
Created March 21, 2020 02:07 — forked from gwpantazes/How to Install JDK MacOS Homebrew.md
How to install different Java Versions with Homebrew on MacOS

We will install OpenJDK for anything Java 8 and later. Anything prior is probably Oracle JDK.

Prerequisite: Install Homebrew.

Remember to update your formulas.

$ brew update

Latest OpenJDK Feature Release (Java 12, 13, 14, etc...)

@joyoyoyoyoyo
joyoyoyoyoyo / SETUP.md
Created March 21, 2020 01:38 — forked from iolson/SETUP.md
New Macbook Setup

Install Homebrew

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew update

Cask Install Applications

brew cask install iterm2
brew cask install git
@joyoyoyoyoyo
joyoyoyoyoyo / AWS Solutions Architect Associate
Created March 3, 2020 06:00 — forked from pareddy113/AWS Solutions Architect Associate
AWS Solutions Architect Associate 2017- ACloud Guru course
----- Interested Reads------
+ Interesting Read (Serverless Architecture of Acloud guru)
https://read.acloud.guru/serverless-the-future-of-software-architecture-d4473ffed864
----- Getting Started-------
+ Requirements
+ AWS Free Tier Account
+ PC with putty and putty keygen/ Mac
+ Optional
+ IoS/ Android App $20
@joyoyoyoyoyo
joyoyoyoyoyo / markdown-details-collapsible.md
Created January 21, 2020 16:06 — forked from pierrejoubert73/markdown-details-collapsible.md
How to add a collapsible section in markdown.

A collapsible section containing markdown

Click to expand!

Heading

  1. A numbered
  2. list
    • With some
    • Sub bullets
@joyoyoyoyoyo
joyoyoyoyoyo / README.md
Created January 21, 2020 16:02 — forked from joyrexus/README.md
collapsible markdown

collapsible markdown?

CLICK ME

yes, even hidden code blocks!

print("hello world!")
@joyoyoyoyoyo
joyoyoyoyoyo / .gitignore
Created October 16, 2019 16:53
coderpad example
# sbt
# (may want to keep parts of 'project')
bin/
project/
target/
build/
# eclipse
build
.classpath