Skip to content

Instantly share code, notes, and snippets.

@alifarukm
alifarukm / AdbCommands
Created October 31, 2021 18:34 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
@alifarukm
alifarukm / index.js
Created February 9, 2021 20:14 — forked from zerbfra/index.js
node-postgres connection and query with async/await
const pg = require('pg')
// create a config to configure both pooling behavior
// and client options
// note: all config is optional and the environment variables
// will be read if the config is not present
var config = {
user: '', // env var: PGUSER
database: '', // env var: PGDATABASE
password: '', // env var: PGPASSWORD
#!/bin/bash
# Author: Daniel Alvarenga Lima
# Ubuntu version supported: 18.04 LTS 64Bit
# EXECUTE
# sudo chmod +x script-configure-ubuntu18.94-amd64.sh
# ./script-configure-ubuntu18.94-amd64.sh
#INSTRUCTIONS
@alifarukm
alifarukm / gist:1ef161cd9f085feebdd29994e6e40888
Created January 9, 2021 19:26 — 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:
@alifarukm
alifarukm / extensions.md
Last active March 12, 2020 11:15
Usefull VSCode extensions

#Javascript -Debugger for Chrome -Debugger for Firefox -ESLint -TSLint -Jshint -JavaScript (ES6) Code Snippets -VS Code ES7 React/Redux/React-Native/JS snippets

#DevOps

@alifarukm
alifarukm / extensions.md
Created March 12, 2020 11:08
Usefull VSCode extensions

#Javascript -Debugger for Chrome -Debugger for Firefox -ESLint -TSLint -Jshint -JavaScript (ES6) Code Snippets -VS Code ES7 React/Redux/React-Native/JS snippets

#DevOps

@alifarukm
alifarukm / color.html
Created November 18, 2018 15:25
Random rgb color generator javascript.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Gist</title>
<style>
button {
background-color: aquamarine;