Skip to content

Instantly share code, notes, and snippets.

View tyluudinh's full-sized avatar
:octocat:
Focusing

Ty Luu Dinh tyluudinh

:octocat:
Focusing
View GitHub Profile
@tyluudinh
tyluudinh / find_email.py
Created February 21, 2024 01:54 — forked from newball2814/find_email.py
Check for existing email
#!/bin/python3
import httpx
import trio
from ghunt.helpers.gmail import is_email_registered
def gen_email():
email_list = []
for dd in range(1, 32):
@tyluudinh
tyluudinh / reactjs-interview-tips.md
Created July 6, 2020 07:02 — forked from paulnguyen-mn/reactjs-interview-tips.md
Bí kíp cho buổi phỏng vấn ReactJS thành công 🎉

Bí kíp cho buổi phỏng vấn ReactJS thành công 🎉

From unplash.com

AGENGA:

  1. Một vài lưu ý chung
  2. Ôn tập kiến thức JS/ReactJS
  3. Cày thuật toán, giải thuật
  4. Tìm hiểu về công ty mà mình xin ứng tuyển
@tyluudinh
tyluudinh / ffmpeg_tuts.md
Created January 1, 2020 10:11 — forked from tingplenting/ffmpeg_tuts.md
ffmpeg cli for youtube

Extract audio from a YouTube video file

ffmpeg -i INPUT.mp4 -ab 256k OUTPUT.mp3

Cut 3s length

ffmpeg -y -ss 00:00:03 -i INPUT.mp4 -codec copy OUTPUT.mp4
@tyluudinh
tyluudinh / media-query.css
Created June 5, 2019 04:45 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
@tyluudinh
tyluudinh / React-Directory-Layout.md
Created August 21, 2017 02:51 — forked from koistya/React-Directory-Layout.md
File and folder naming convention for React.js components

File and folder naming convention for React.js components

Directory Layout #1

/actions/...
/components/common/Link.js
/components/common/...
/components/forms/TextBox.js
/components/forms/TextBox.res/style.css