Skip to content

Instantly share code, notes, and snippets.

View marcospinello's full-sized avatar
🖖
Docs or it didn't happen

Marco Spinello marcospinello

🖖
Docs or it didn't happen
View GitHub Profile
@marcospinello
marcospinello / jekyll-and-liquid.md
Created July 12, 2016 16:04 — forked from magicznyleszek/jekyll-and-liquid.md
Jekyll & Liquid Cheatsheet

Jekyll & Liquid Cheatsheet

A list of the most common functionalities in Jekyll (Liquid). You can use Jekyll with GitHub Pages, just make sure you are using the proper version.

Running

Running a local server for testing purposes:

@marcospinello
marcospinello / keybase.md
Created October 23, 2016 12:53
my keybase PGP public key

Keybase proof

I hereby claim:

  • I am marcospinello on github.
  • I am marcospinello (https://keybase.io/marcospinello) on keybase.
  • I have a public key ASDvRPqdO_fzlRQ5LfRz8CgDz82zSiXEl7_y-dXTz79HBAo

To claim this, I am signing this object:

@marcospinello
marcospinello / jdk_download.sh
Created January 26, 2017 15:52 — forked from P7h/jdk_download.sh
Script to download JDK / JRE / Java binaries from Oracle website from terminal / shell / command line / command prompt
##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### #####
### Shell script to download Oracle JDK / JRE / Java binaries from Oracle website using terminal / command / shell prompt using wget.
### You can download all the binaries one-shot by just giving the BASE_URL.
### Script might be useful if you need Oracle JDK on Amazon EC2 env.
### Script is updated for every JDK release.
### Features:-
# 1. Resumes a broken / interrupted [previous] download, if any.
# 2. Renames the file to a proper name with including platform info.
@marcospinello
marcospinello / wget-jdk-oracle-install-example.txt
Created January 26, 2017 15:52 — forked from sr75/wget-jdk-oracle-install-example.txt
wget command to install Oracle JAVA JDK from stupid oracle website for centos and ubuntu
http://d.stavrovski.net/blog/post/how-to-install-and-setup-oracle-java-jdk-in-centos-6
# rpm
wget --no-cookies \
--no-check-certificate \
--header "Cookie: oraclelicense=accept-securebackup-cookie" \
"http://download.oracle.com/otn-pub/java/jdk/7u55-b13/jdk-7u55-linux-x64.rpm" \
-O jdk-7-linux-x64.rpm
# ubuntu
# Find World Writable Folders
find / -xdev -type d -perm -0002 -ls
# Find World Writable Files
find / -xdev -type f -perm -0002 -ls