Skip to content

Instantly share code, notes, and snippets.

View LisoCodes's full-sized avatar
🤪
I may be slow to respond.

Liso LisoCodes

🤪
I may be slow to respond.
  • NYC
View GitHub Profile
@LisoCodes
LisoCodes / GoogleDorking.md
Created September 4, 2022 19:34 — forked from sundowndev/GoogleDorking.md
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"

One Hundred Days of Hacking

Objective

Get better at some aspects of creating software by doing them more regularly.

Inspiration

A friend of mine, as a way to "level-up" her young daughter at violin, set a goal that the child would practice every single day for 100 days, without a break. This seems like such a good idea that I decided to steal it.

@LisoCodes
LisoCodes / Dockerfile
Created April 9, 2021 18:41 — forked from hopsoft/Dockerfile
Dockerize your Rails app
FROM ruby:3.0-alpine
RUN apk add --no-cache --update \
ack \
bash \
build-base \
curl \
htop \
less \
libsass \
@LisoCodes
LisoCodes / git-cheat-sheet.md
Created March 24, 2021 16:52 — forked from jjjjcccjjf/git-cheat-sheet.md
GIT CHEAT SHEET by TOWER - www.git-tower.com

CREATE

Clone an existing repository

$ git clone ssh://[email protected]/repo.git

Create a new local repository

$ git init

LOCAL CHANGES