Skip to content

Instantly share code, notes, and snippets.

View GulajavaMinistudio's full-sized avatar
:octocat:
Memperbaiki dunia dengan kode kodean

Gulajava Ministudio GulajavaMinistudio

:octocat:
Memperbaiki dunia dengan kode kodean
View GitHub Profile
@GulajavaMinistudio
GulajavaMinistudio / package-lock.json
Created May 15, 2021 05:48
Package lock JSON for Iosevka build version 6.1.3
{
"name": "iosevka",
"version": "6.1.3",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "iosevka",
"version": "6.1.3",
"dependencies": {
@GulajavaMinistudio
GulajavaMinistudio / promise-allsettled.js
Created January 19, 2021 09:10
Contoh chain promise AllSettled
// const result = [];
// result.forEach((item, index) => {
// db.collection("pis_list_screen")
// .findOne({
// destination: item.lineDestination,
// stopkey: item.stopKey,
// })
// .then(
// function (items) {
// return (scodeku = items.scode);
@GulajavaMinistudio
GulajavaMinistudio / gist:c909db6edee3045a519822a0078c2f08
Created October 26, 2020 09:13 — 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:
@GulajavaMinistudio
GulajavaMinistudio / settings-json2020gist.json
Created June 1, 2020 06:35
Backup setting from VS Code and VS Codium via Settings Sync
{
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"enableTelemetry": false,
"extensions.autoUpdate": false,
"workbench.iconTheme": "material-icon-theme",
"editor.minimap.renderCharacters": false,
"editor.suggestSelection": "first",
"editor.fontLigatures": false,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
@GulajavaMinistudio
GulajavaMinistudio / settings_vscode_global_2020.json
Last active February 21, 2020 23:30
VSCodeCodium Global Settings Backup 2020
{
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"enableTelemetry": false,
"workbench.colorTheme": "Mayukai Mirage",
"extensions.autoUpdate": false,
"workbench.iconTheme": "material-icon-theme",
"editor.minimap.renderCharacters": false,
"editor.suggestSelection": "first",
"editor.fontLigatures": false,
@GulajavaMinistudio
GulajavaMinistudio / vscode_workspace_settings2020.json
Created February 10, 2020 04:29
VS Code Settings Workspace 2020
{
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/.vscode": true,
"**/__pycache__": true,
"**/.pytest_cache": true,
"**/node_modules": false,
@GulajavaMinistudio
GulajavaMinistudio / index.css
Last active December 20, 2019 03:15
TesPlaygroundWeb
‎‎​
@GulajavaMinistudio
GulajavaMinistudio / Dockerfile
Created November 27, 2019 15:43 — forked from RinatMullayanov/Dockerfile
Ubuntu Node.js Dockerfile
#
# Ubuntu Node.js Dockerfile
#
# https://github.com/dockerfile/ubuntu/blob/master/Dockerfile
# https://docs.docker.com/examples/nodejs_web_app/
#
# Pull base image.
FROM ubuntu:14.04
@GulajavaMinistudio
GulajavaMinistudio / eslint_prettier_airbnb.md
Created October 19, 2019 03:00 — forked from bradtraversy/eslint_prettier_airbnb.md
ESLint, Prettier & Airbnb Setup

VSCode - ESLint, Prettier & Airbnb Setup

1. Install ESLint & Prettier extensions for VSCode

Optional - Set format on save and any global prettier options

2. Install Packages

npm i -D eslint prettier eslint-plugin-prettier eslint-config-prettier eslint-plugin-node eslint-config-node
@GulajavaMinistudio
GulajavaMinistudio / package.json
Created October 13, 2019 21:57 — forked from evvvritt/package.json
Simple purgecss implementation for Vue CLI 3
// using in a Vue CLI 3, tailwindcss app but can be adjusted
"scripts": {
"build": "vue-cli-service build",
"postbuild": "yarn purgecss",
"purgecss": "node_modules/purgecss/bin/purgecss --config ./purgecss.config.js --out ./dist/css"
},