Skip to content

Instantly share code, notes, and snippets.

View thanapoom21's full-sized avatar
🏠
Working from Kepler-452b

Music thanapoom21

🏠
Working from Kepler-452b
View GitHub Profile
@thanapoom21
thanapoom21 / new-repository.md
Created August 4, 2023 19:55
Create & push a new local repository to a remote location.

On GitHub:

  • Click the green new Button to initialize a repo.
  • Choose a template.
  • Pick an owner and give it a name.
  • Add a description and set it to either public or private.
  • Initialize README.MD, .gitignore, and LICENSE are optional.
  • Hit the Create repository button and boom you've created your first repo.
@thanapoom21
thanapoom21 / gitinitialization.md
Last active June 24, 2022 19:39
Create a new git repository & push local working directory to remote repo

Connect a local repository to github

If you're new to github, then create an account. Github is like an online storage for you files and folders. However, it was not designed to store a ton of files though.

  • Go to github.
  • Log in with your credentials.
  • On the top right hand corner, you'll see a plus icon and click on New Repository.
  • Select a template if you want.
  • Select an owner and create a repo name.
@thanapoom21
thanapoom21 / terminal-&-git-cheat-sheet.md
Last active June 24, 2022 19:51
Terminal & Git Cheat Sheet

Useful Linux Commands

pwd
print working directory in terminal
ls
list files in current directory
cd
change directory
touch
@thanapoom21
thanapoom21 / gist:be075d1603ec5fa8d2d3ddffa27894ec
Created December 6, 2020 06:50 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: πŸ˜„ :smile: πŸ˜† :laughing:
😊 :blush: πŸ˜ƒ :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
πŸ˜† :satisfied: 😁 :grin: πŸ˜‰ :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: πŸ˜€ :grinning:
πŸ˜— :kissing: πŸ˜™ :kissing_smiling_eyes: πŸ˜› :stuck_out_tongue:
@thanapoom21
thanapoom21 / gulpfile.js
Created January 6, 2019 09:00 — forked from demisx/gulpfile.js
Gulp 4 gulpfile.js
// Gulp 4
var gulp = require('gulp');
var using = require('gulp-using');
var grep = require('gulp-grep');
var changed = require('gulp-changed');
var del = require('del');
var coffee = require('gulp-coffee');
var less = require('gulp-less');
var coffeelint = require('gulp-coffeelint');
var sourcemaps = require('gulp-sourcemaps');