Skip to content

Instantly share code, notes, and snippets.

View jakub-g's full-sized avatar

jakub-g jakub-g

  • Antibes, France
  • 07:06 (UTC +02:00)
View GitHub Profile
@jakub-g
jakub-g / macos-energy-drains.md
Last active September 24, 2022 10:21
macos big sur disable all energy drains - MacBookPro 2020

MacOS Big Sur MacBookPro 2020 disable energy drains

Disable settings that prevent the Mac from sleeping or let it wake up overnight in your backpack and drain half of battery.

On top of those, it's probably best to not leave any USB thing plugged to the Mac before putting it to sleep (including YubiKeys).

Enable hibernation (i.e. write to disk)

sudo pmset -a hibernatemode 25  
@jakub-g
jakub-g / vscode.md
Last active November 11, 2021 14:49
vscode mac shortcuts
Action Shortcut
Show hover infobox cmd-k,cmd-i
@jakub-g
jakub-g / javascript-to-typescript-cheatsheet.md
Last active February 14, 2024 00:50
Migrate/convert JavaScript to TypeScript cheatsheet

Relevant official docs

Migrating NodeJS CJS files (require, module.exports)

First steps

  1. Rename the file from .js to .ts
  2. Change module.exports = to export =
  3. Change all exports.foobar = to export const foobar =
  4. Update top-level require calls to static import.
@jakub-g
jakub-g / wpt_wishlist.md
Last active March 24, 2021 15:39
WebPageTest wishlist 2021

0. Filmstrip page

  • There's no link back to waterfall page
  • Custom end time URL param is not validated. I can put -e:99 and will have 99s worth of filmstrip images (while the test was shorter than that)

1. Re-run the test equivalent which allows changing config

Sometimes I have very elaborate test config which I want to reuse, but slightly change one thing (e.g. add one param to URL). I can easily re-run the test with exact same config, but it's not easy to slightly change config and re-run. You need to re-create the config from scratch by checking multiple checkboxes, and hoping you come up with same exact set of params as before

@jakub-g
jakub-g / intro.md
Last active March 11, 2021 00:18
preact-redux: where can `props` come from
import { compose } from 'redux'
import { connect } from 'react-redux'

compose

compose(func1, func2, func3, func4) === func1(func2(func3(func4))))
@jakub-g
jakub-g / perf_observer_support.md
Last active March 22, 2021 21:46
PerformanceObserver.supportedEntryTypes

Test query

({a: window.PerformanceObserver.supportedEntryTypes, b: window.PerformancePaintTiming, c: navigator.userAgent})

Safari

A TP blog says shipped in TP75 which would mean 12.1 stable but I tested in 12.1 and it's not true. It returns undefined. So I asssume 13.0 (I don't have 13.0 to test).

@jakub-g
jakub-g / es-modules-tooling-config.md
Last active March 2, 2021 21:22
Configure popular tools to work with ES modules

Things to do before you start using ES modules and put "type": "module" in package.json

The correct behavior of all tools is to assume that .js files are in ES modules format. Hence you must convert existing .js files (including config files) to ESM format, or rename them to .cjs if you want to keep them intact.

eslint, prettier

You should rename .eslintrc.js/.prettierrc.js to .cjs extension, or make them a valid JSON with .json extension

doc: eslint prettier

@jakub-g
jakub-g / esmodules-specs.md
Last active March 2, 2021 20:54
Compatibility of javascript test runners with ES modules

Compatibility of JavaScript test runners with "native" ES modules based spec files (import), without additional transpilation and plugins

updated: 2021-03-02

For node-based runners, assuming node or 12.17.0+ or 13.2.0+ (or v12.11.0+ with --experimental-modules command line flag)

mocha (node)

  • .spec.mjs: supported, w/o additional conf
  • .spec.js + "type": "module" in package.json: supported, w/o additional conf
@jakub-g
jakub-g / settings.json
Last active July 15, 2021 12:16
vscode settings.json dell
{
"files.trimTrailingWhitespace": true,
"window.title": "${rootPath}${separator}${activeEditorMedium}${separator}${appName}",
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"editor.mouseWheelZoom": true,
"window.menuBarVisibility": "default",
"window.titleBarStyle": "custom",
"eslint.autoFixOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
@jakub-g
jakub-g / keybindings.json
Last active July 15, 2021 12:17
vscode keybindings dell
[
{
"key": "ctrl+i escape",
"when": "editorTextFocus",
"command": "moveby.calculation",
"args": {
"lineNrEx": "selections[selections.length-1].start.line",
"charNrEx": "selections[selections.length-1].start.character"
}
},