This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~/.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` | |
#-------------------------------------------# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<pre> | |
<code>{JSON.stringify(this.state.blah, null, 2)}</code> | |
</pre> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
from https://docs.sentry.io/ | |
*/ | |
:root { | |
--blue: #5d91c9; | |
--indigo: #6610f2; | |
--purple: #6c5fc7; | |
--pink: #e83e8c; | |
--red: #e03e2f; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react' | |
class App extends Component { | |
constructor () { | |
super() // allows us to use `this` | |
this.state = { | |
count: 10 | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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' |