FROM python:3.13.6-trixie as python3
ENV DEBIAN_FRONTEND=noninteractive
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
This file contains hidden or 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
cursor-style = block | |
cursor-style-blink = false | |
cursor-color = #ffff00 | |
font-size = 15 | |
font-family = "JetBrainsMono-Regular" | |
font-thicken = true | |
window-save-state = never | |
shell-integration = zsh | |
shell-integration-features = sudo,no-cursor | |
cursor-click-to-move = false |
This file contains hidden or 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
// mkdir ./out && bun run --watch genstuff.ts | |
const upperFirst = (str: string) => str.charAt(0).toUpperCase() + str.substring(1); | |
const lowerFirst = (str: string) => str.charAt(0).toLowerCase() + str.substring(1); | |
// prettier-ignore | |
const prefixes = [ | |
"basementCeiling", | |
"groundSlab", | |
"internalDoors", |
This file contains hidden or 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
const chartOptions: EChartsOption = { | |
series: [ | |
{ | |
type: "gauge", | |
startAngle: 180, | |
endAngle: 0, | |
center: ["50%", "65%"], | |
radius: "90%", | |
min: 0, | |
max: 0.35, |
This file contains hidden or 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
@Component | |
public class SPHorStacked extends SPVisualizer<SPChart2DataSource> { | |
private DecimalFormat df = new DecimalFormat("#.##"); | |
private boolean escaped; | |
private boolean useCss; | |
/** | |
* Character in the center of the rectangle |
This file contains hidden or 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
cursor-style = block | |
cursor-style-blink = false | |
cursor-color = #ffff00 | |
font-size = 15 | |
font-family = "JetBrainsMono-Regular" | |
font-thicken = true | |
window-save-state = never | |
shell-integration = fish | |
shell-integration-features = sudo,no-cursor | |
cursor-click-to-move = false |
This file contains hidden or 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
Show hidden characters
[ | |
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol"} }, | |
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol"} }, | |
{ "keys": ["shift+end"], "command": "move_to", "args": {"to": "eol", "extend": true} }, | |
{ "keys": ["shift+home"], "command": "move_to", "args": {"to": "bol", "extend": true } }, | |
{ "keys": ["shift+alt+down"], "command": "duplicate_line" }, | |
{ "keys": ["alt+up"], "command": "swap_line_up" }, | |
{ "keys": ["alt+down"], "command": "swap_line_down" }, | |
{ "keys": ["ctrl+tab"], "command": "clone_file", "args": {"add_to_selection": true} }, | |
{ "keys": ["super+b"], "command": "toggle_side_bar" } |
This file contains hidden or 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 django.core.management.commands import inspectdb | |
from django.core.management.base import BaseCommand, CommandError | |
import keyword | |
import re | |
from django.core.management.base import BaseCommand, CommandError | |
from django.db import DEFAULT_DB_ALIAS, connections | |
from django.db.models.constants import LOOKUP_SEP |
NewerOlder