Skip to content

Instantly share code, notes, and snippets.

@ederrafo
ederrafo / google
Created September 2, 2019 22:37
api apis gmail
Create credential: https://console.developers.google.com/apis/credentials
Create a project: https://console.developers.google.com/projectcreate
src: https://medium.com/employbl/add-login-with-google-to-your-laravel-app-d2205f01b895
@aliustaoglu
aliustaoglu / Public.md
Created June 26, 2019 23:11
Public APIs

https://github.com/n0shake/Public-APIs

Public-APIs Twitter: @abgbm Build Status PRs Welcome

This is an attempt to categorise different APIs scoured from the web which make their resources available for consumption.

*Items marked with Open Source are open-source *Items marked with 💸 are trial based APIs

@heywoodlh
heywoodlh / maderas.txt
Created June 19, 2019 15:47
Clone of the arsenal, armory & library by Maderas (@hackermaderas) -- https://pastebin.com/v8Mr2k95
The arsenal, armory & library by Maderas (@hackermaderas, #CyberpunkisNow) 6/8/2019
Original / 1st version here: https://pastebin.com/rMw4WbhX
___________________________________________________________________________________
# Basic knowledge requirements for Red Teaming, PenTesting, Hacking & Cybersecurity
# These are the basic competencies expected (and tested for during the in-person technical interview) by one of the largest, most visible InfoSec companies # on Earth.
██████╗ ███████╗ ██████╗ ██████╗ ███╗ ██╗
██╔══██╗██╔════╝██╔════╝██╔═══██╗████╗ ██║
██████╔╝█████╗ ██║ ██║ ██║██╔██╗ ██║
██╔══██╗██╔══╝ ██║ ██║ ██║██║╚██╗██║
██║ ██║███████╗╚██████╗╚██████╔╝██║ ╚████║
╚═╝ ╚═╝╚══════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═══╝
@intx0x80
#!/usr/bin/python
import skew, json, placebo, os, sys
from pprint import pprint
from datetime import datetime
from elasticsearch import Elasticsearch
# parse command line args
arn_list = {
# logging
@micklove
micklove / cli.md
Last active March 28, 2020 16:06
@markwk
markwk / zettel_identifier_note_creator.bash
Created February 11, 2019 06:47
Generate a unique identifier for plain text file names, including optional title and opening in target app
#!/bin/bash
#
# Bash script to generate a unique identifier for file name
# Used for a Plain Text Writing, Knowledge or Notes System
#
# Allows for following Options:
# -o: opening file in a target program
# Additional Title or name appended to end of file name
#
# Examples
@maliaga
maliaga / git-alias.git
Created January 28, 2019 12:54
Git Alias / Aliases
# ----------------------
# Git Aliases
# ----------------------
alias ga='git add'
alias gaa='git add .'
alias gaaa='git add --all'
alias gau='git add --update'
alias gb='git branch'
alias gbd='git branch --delete '
alias gc='git commit'
@dferrandizmont
dferrandizmont / awesome-api.md
Created January 10, 2019 09:08
[Public APIs 2] inglés #api

Awesome API Awesome Build Status Donate

A curated list of awesome resources for design and implement RESTful APIs.

Design

Overview

REST allows us to create services and applications that can be used by any device or client who understands HTTP.

import json
def lambda_handler(event, context):
print( "Event : " , event)
#This will print the event passed to lambda_handler in
#Cloudwatch Logs
print( "Context : " , context)
#This will print the context passed to lambda_handler in
#Cloudwatch #Logs
name = ""
if 'queryStringParameters' in event: