Skip to content

Instantly share code, notes, and snippets.

View aamnah's full-sized avatar
💭
the learning never stops

Aamnah aamnah

💭
the learning never stops
View GitHub Profile
@aamnah
aamnah / sysctl.conf
Last active March 27, 2019 11:13
Increase file watchers (error ENOSPC)
# sudo nano /etc/sysctl.conf
###################################################################
# Increase the number for files being watched
# Default is: 8192 (files that can be watched)
# One file watch roughly takes 1kb.
# 1048576 files being watched would take a max of 1GB of memory
#
# Gets rid of (error ENOSPC) given by Node and VS Code
# https://code.visualstudio.com/docs/setup/linux#_visual-studio-code-is-unable-to-watch-for-file-changes-in-this-large-workspace-error-enospc
@aamnah
aamnah / .xprofile
Last active November 25, 2019 09:40
Monitor profile for multi-monitor setups
# ~/.xprofile
# Get attached screens and resolution details with `xrandr`
# Get resolution modelines with `gtf` or `cvt`
# e.g: `gtf 2560 1440 60 -x` or `cvt 2560 1440 60`
# You can use `--right-of` and `--left-of` to arrange monitors
# e.g: `--right-of DP-1`
#-------------------------------------------#
@aamnah
aamnah / example.com.conf
Created February 28, 2019 06:49
Virtual Host conf for SSL enabled site
# domain: example.com
# public: /var/www/example.com/public_html/
# logs: /var/www/example.com/logs/
<VirtualHost *:443>
# Admin email, Server Name (domain name), and any aliases
ServerAdmin [email protected]
ServerName example.com
#ServerAlias example.com
@aamnah
aamnah / dump.jsx
Created February 22, 2019 06:52
Dump state inside React Components
<pre>
<code>{JSON.stringify(this.state.blah, null, 2)}</code>
</pre>
@aamnah
aamnah / vars.css
Last active January 17, 2019 06:53
CSS Root variables
/*
from https://docs.sentry.io/
*/
:root {
--blue: #5d91c9;
--indigo: #6610f2;
--purple: #6c5fc7;
--pink: #e83e8c;
--red: #e03e2f;
@aamnah
aamnah / _fonts.scss
Last active October 20, 2018 16:26
Font defaults for new projects
// see: https://gist.github.com/aamnah/52630097e3992906b0507fff5d9ac4ef
// for an explanation of font types and compatability
// woff and otf/ttf are supported by everything except IE 8-11
@mixin font-smoothing {
// Font Smoothing
font-smooth: always; // Non-standard CSS
// https://developer.mozilla.org/en-US/docs/Web/CSS/font-smooth
-webkit-font-smoothing: antialiased; // Webkit, only works on macOS
-moz-osx-font-smoothing: grayscale; // Firefox, only works on macOS
@aamnah
aamnah / yarn-defaults.sh
Last active October 20, 2018 16:21
Yarn global defaults
# more: https://yarnpkg.com/lang/en/docs/cli/config/
# list all config values
yarn cnofig list
# yarn config set <key> <value> [-g|--global]
yarn config set -g init-license 'CC BY-SA 4.0'
yarn config set -g init-version '0.0.1'
# the rest it picks up from npm defaults
@aamnah
aamnah / npm-defaults.sh
Created October 18, 2018 10:18
npm global defaults
# check the entire config
npm config ls -l
# npm config set <key> <value> -g
npm config set init-author-name 'Aamnah' -g
npm config set init-author-url 'https://aamnah.com' -g
npm config set init-author-email '[email protected]' -g
npm config set init-license 'CC BY-SA 4.0' -g
npm config set init-version '0.0.1' -g
@aamnah
aamnah / click.js
Created July 28, 2018 09:44
React Clicker
import React, { Component } from 'react'
class App extends Component {
constructor () {
super() // allows us to use `this`
this.state = {
count: 10
}
}
@aamnah
aamnah / sound.js
Last active October 7, 2018 23:12
Web Audio API - Create a sound in browser
// Create an Audio Context
let context = new AudioContext()
// Create an Oscillator
let osc = context.createOscillator()
// Lower the volume
/*
.createGain() represents a change in Volume
It's an `AudioNode` audio-processing module that causes a given 'gain'