- 1.8kg chicken
- olive oil
- 1 shallot
- 1 lemon
- 500g potatoes (?) + one big other potato
- 1/2 stick of butter (or less)
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Autocomplete tests</title> | |
<style> | |
label { |
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
/* References: https://css-tricks.com/this-page-is-a-truly-naked-brutalist-html-quine/ */ | |
* { | |
margin: 0; | |
padding: 0; | |
} | |
html { | |
font-family: Monospace; | |
} |
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
version: "3.8" | |
x-environment-variables: &environment-variables | |
PUID: 1000 | |
PGID: 1000 | |
TZ: Europe/Berlin | |
services: | |
vpn: | |
image: linuxserver/wireguard |
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 * as AccordionPrimitive from "@radix-ui/react-accordion"; | |
import { FunctionComponent } from "react"; | |
interface AccordionProps extends AccordionPrimitive.AccordionSingleProps {} | |
export const Accordion: FunctionComponent<AccordionProps> = (props) => ( | |
<AccordionPrimitive.Accordion {...props} /> | |
); | |
export const AccordionItem = AccordionPrimitive.AccordionItem; |
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
services: | |
node: | |
image: node:16 | |
user: "node" | |
command: "npm start" | |
working_dir: /app | |
volumes: | |
- ./:/app | |
ports: | |
- 3000:3000 |
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
- What was the last thing you learned? When? | |
- What excites or interests you about coding? | |
- What is a recent technical challenge you experienced and how did you solve it? | |
- What actions have you personally taken on recent projects to increase maintainability of your code? |
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
codesign --remove-signature /Applications/Visual\ Studio\ Code.app/Contents/Frameworks/Code\ Helper\ \(Renderer\).app | |
(https://github.com/microsoft/vscode/issues/105446) | |
or | |
changing renderer? | |
(--disable-renderer-accessibility) | |
https://github.com/microsoft/vscode/issues/108590 |
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
npm config set registry https://registry.npmjs.org |
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
DO NOT USE ARRAY.INCLUDES WITH OBJECTS |
NewerOlder