Skip to content

Instantly share code, notes, and snippets.

View Dimfred's full-sized avatar

Dimfred

View GitHub Profile
@Denys-Bushulyak
Denys-Bushulyak / .vimspector.json
Created August 29, 2021 19:50
Vimspector Jest debug configuration for @nrwl nx
{
"configurations": {
"run": {
"adapter": "vscode-node",
"configuration": {
"type": "node",
"request": "launch",
"name": "Jest Current File",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": [
@xbns
xbns / why-this-partitioning-scheme.md
Last active September 14, 2023 11:18
Why this partitioning scheme #arch-linux

Why this partitioning scheme

Laptop 1: hp-4540s-i5 (BIOS/MBR)

$ sudo dmidecode | grep -A3 '^System Information'
System Information
@wshayes
wshayes / poetry_dockerfile
Last active July 10, 2023 23:29
Poetry docker file that can support private git repository packages
# syntax=docker/dockerfile:experimental
FROM python:3.7-slim AS base
# ENV LANG=C.UTF-8 # Sets utf-8 encoding for Python et al
# ENV PYTHONDONTWRITEBYTECODE=1 # Turns off writing .pyc files; superfluous on an ephemeral container.
# ENV PYTHONUNBUFFERED=1 # Seems to speed things up
ENV PYTHONUNBUFFERED=1 \
PYTHONDONTWRITEBYTECODE=1 \