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 / 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 / KVMetricsSource.java
Created September 17, 2019 11:32 — forked from ambud/KVMetricsSource.java
Spark Custom Metrics Source
/**
* Copyright 2017 Ambud Sharma
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
@joyoyoyoyoyo
joyoyoyoyoyo / SparkStatsLogger.scala
Created September 17, 2019 11:30 — forked from petrovg/SparkStatsLogger.scala
Logging listener for Spark
import java.io.PrintWriter
import java.util.Properties
import org.apache.spark.SparkContext
import org.apache.spark.scheduler._
import org.apache.spark.storage.RDDInfo
/**
* Created by petrovg on 22/04/2017.
*/
@joyoyoyoyoyo
joyoyoyoyoyo / GitHub protocol comparison.md
Created August 29, 2019 12:03
A comparison of protocols offered by GitHub (for #git on Freenode).

Primary differences between SSH and HTTPS. This post is specifically about accessing Git repositories on GitHub.

Protocols to choose from when cloning:

plain Git, aka git://github.com/

  • Does not add security beyond what Git itself provides. The server is not verified.

    If you clone a repository over git://, you should check if the latest commit's hash is correct.

@joyoyoyoyoyo
joyoyoyoyoyo / clean_code.md
Created August 29, 2019 11:59 — forked from wojteklu/clean_code.md
Summary of 'Clean code' by Robert C. Martin

Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.


General rules

  1. Follow standard conventions.
  2. Keep it simple stupid. Simpler is always better. Reduce complexity as much as possible.
  3. Boy scout rule. Leave the campground cleaner than you found it.
  4. Always find root cause. Always look for the root cause of a problem.

Design rules