Skip to content

Instantly share code, notes, and snippets.

View MuhammadFariMadyan's full-sized avatar
🔥
Coding from Home

Fari MuhammadFariMadyan

🔥
Coding from Home
View GitHub Profile
@nafiesl
nafiesl / tahapan-pembuatan-website.md
Created June 30, 2018 01:27
Tahapan Pembuatan Website

Tahapan Pembuatan Website

Dalam mengerjakan suatu proyek website atau aplikasi berbasis web, kami (JasaWebsiteBanjarmasin.com) bagi dalam 4 tahap pengerjaan sejak persiapan hingga selesai. Ke empat tahap tersebut adalah:

1. Analisis

Dalam tahap ini, kami mempersiapkan pengerjaan proyek dengan terlebih dahulu melakukan inteview kepada klien. Yaitu untuk mendiskusikan apa saja hal atau fitur sistem yang ingin dituangkan ke dalam website atau aplikasi web yang ingin dibuat.

Kemudian hasil inteview tersebut kami buat menjadi sebuah konsep tertulis, untuk di-review atau dianalisis oleh klien. Analisis ini diperlukan sebagai feedback dari klien, apakah konsep yang kami buat sudah sesuai dengan harapan dan keinginan klien.

@r17x
r17x / gpggithub.md
Last active June 23, 2019 13:40
GPG Signing Key For Github
  • Setup Basic
$ git config --global user.name "name"
$ git config --global user.email "email"
  • Installation
# mac
$ brew install gpg
# brew install gpg2 
@dmastag
dmastag / Dockerfile
Created January 24, 2019 05:10
Dockerfile for NodeJS with Puppeteer
FROM zenika/alpine-chrome:with-node
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD 1
COPY --chown=chrome package.json package-lock.json /usr/src/app/
RUN npm install --production
COPY --chown=chrome . /usr/src/app
WORKDIR /usr/src/app
ENTRYPOINT []
# run command
@rawaludin
rawaludin / stack.md
Last active September 21, 2019 02:10

Dependency Stack

The following table is a list of the major dependencies we use along with their purpose and links to supplemental documentation.

Dependency Purpose Docs
NextJS Official Docs
Another Name Parser Break up a concatenated name into pieces Official Docs
CASL Restricting access to features based on permissions Official Docs
@jldeen
jldeen / build19-superhero.md
Last active May 21, 2020 23:08
Build19 From Zero to DevOps Superhero
@GulajavaMinistudio
GulajavaMinistudio / UdemyJavaScriptCourse_Recommended.txt
Last active September 26, 2020 23:38
Gist yang berisi daftar Course Udemy untuk belajar pengembangan aplikasi web modern dengan serba JavaScript
@greyscaled
greyscaled / README.md
Last active September 19, 2022 08:59
Sequelize + Express + Migrations + Seed Starter
@AllThingsSmitty
AllThingsSmitty / js-terms.md
Last active April 21, 2023 04:21
10 terms to help you better understand JavaScript

10 JavaScript Terms You Should Know

From currying to closures there are quite a number of special words used in JavaScript. These will not only help you increase your vocabulary but also better understand JavaScript. Special terms are normally found in documentation and technical articles. But some of them like closures are pretty standard things to know about. Knowing what the word itself means can help you know the concept it's named for better.

  1. Arity
  2. Anonymous
  3. Closure
  4. Currying
  5. Hoisting
  6. Mutation
@paulallies
paulallies / gist:0052fab554b14bbfa3ef
Last active November 12, 2023 23:00
Remove node_modules from git repo
#add 'node_modules' to .gitignore file
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin <branch-name>
@nijicha
nijicha / install_nodejs_and_yarn_homebrew.md
Last active January 30, 2024 12:14
Install NVM, Node.js, Yarn via Homebrew