Configured for a Mac-like experience
Apple Magic Keyboard 2: Model A1644 (same as MLA22LL/A ?)
Mapping for Linux Mint 18 Cinnamon 64-bit
{ | |
"target": "ES2022", // Good for modern browsers or Node.js | |
"compilerOptions": { | |
"esModuleInterop": true, // Ensures ESM and CJS imports work together well | |
"skipLibCheck": true, // Ensures .d.ts files from 3rd libraries are not type-checked | |
"target": "es2022", // Sets a relatively modern ECMAScript version as compilation target | |
"allowJs": true, // Allows importing .js files into .ts (helpful when migrating projects) | |
"strict": true, // Ensures strict type checking (i.e., noImplicitAny etc) | |
"noUncheckedIndexedAccess": true, // Adds undefined as a value when accessing by index | |
// "noImplicitOverride": true, // Enable this when working with classes & inheritance |
/** | |
* Sass-Ready media queries | |
* Here there are some presets of useful | |
* media queries breakpoints for various devices | |
* Usage: @media #{variable-name} { } | |
* and it will compile to: @media variable-name { } | |
* | |
*/ | |
// Devices |
Configured for a Mac-like experience
Apple Magic Keyboard 2: Model A1644 (same as MLA22LL/A ?)
Mapping for Linux Mint 18 Cinnamon 64-bit
var webpack = require('webpack'); | |
var path = require('path'); | |
var ExtractTextPlugin = require("extract-text-webpack-plugin"); | |
var plugins = []; | |
var production = false; | |
if (production) { | |
plugins.push( |
$ uname -r
IE6 Only | |
================== | |
_selector {...} | |
IE6 & IE7 | |
================== | |
*html or { _property: } | |
IE7 Only | |
================== |
{ "keys": ["ctrl+alt+p"], "command": "prompt_select_workspace" } |
/* | |
Based on: | |
1. http://stephen.io/mediaqueries | |
2. https://css-tricks.com/snippets/css/media-queries-for-standard-devices/ | |
*/ | |
/* iPhone X in portrait & landscape */ | |
@media only screen | |
and (min-device-width : 375px) | |
and (max-device-width : 812px) |
There are certain files created by particular editors, IDEs, operating systems, etc., that do not belong in a repository. But adding system-specific files to the repo's .gitignore
is considered a poor practice. This file should only exclude files and directories that are a part of the package that should not be versioned (such as the node_modules
directory) as well as files that are generated (and regenerated) as artifacts of a build process.
All other files should be in your own global gitignore file:
.gitignore
in your home directory and add any filepath patterns you want to ignore.Note: The specific name and path you choose aren't important as long as you configure git to find it, as shown below. You could substitute
.config/git/ignore
for.gitignore
in your home directory, if you prefer.
Windows Registry Editor Version 5.00 | |
[-HKEY_CLASSES_ROOT\Directory\Background\shell\Cmder] | |
[-HKEY_CLASSES_ROOT\Directory\shell\Cmder] |