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
--extra-experimental-features ca-derivations --option experimental-features nix-command flakes fetch-closure profile install --profile /Users/jakubkoralewski/Projects/devbox-collision-repr/.devbox/nix/profile/default --offline --impure --priority 7 /nix/store/6qsqma7ywrlcppjbvbp518fy8fhkq551-kotlin-1.9.10 | |
unmatched | |
error: collision between '/nix/store/6qsqma7ywrlcppjbvbp518fy8fhkq551-kotlin-1.9.10/license' and non-directory '/nix/store/kr4332sbls2lb7ccggwa8538q6ggpvbp-emulator-35.3.7/LICENSE' |
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
2022-11-12 21:02:28.382 [error] Error: react app did not load | |
at Timeout._onTimeout (/home/ubuntu/.vscode-server/extensions/ponicode.ponicode-0.71.2/dist/main.js:26:161570) | |
at listOnTimeout (node:internal/timers:559:17) | |
at processTimers (node:internal/timers:502:7) | |
2022-11-12 21:02:29.270 [error] Error: Please try again | |
at E (/home/ubuntu/.vscode-server/extensions/ponicode.ponicode-0.71.2/dist/main.js:421:5188) | |
at C (/home/ubuntu/.vscode-server/extensions/ponicode.ponicode-0.71.2/dist/main.js:421:5638) | |
at f (/home/ubuntu/.vscode-server/extensions/ponicode.ponicode-0.71.2/dist/main.js:26:291705) | |
at c (/home/ubuntu/.vscode-server/extensions/ponicode.ponicode-0.71.2/dist/main.js:26:291773) | |
at P (/home/ubuntu/.vscode-server/extensions/ponicode.ponicode-0.71.2/dist/main.js:421:6313) |
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
dates = new Array(...document.querySelector('.timeline__header-list').children).map(x => x.innerText); | |
titles = new Array(...document.querySelector('.fds-carousel-slides').children).map(x => x.children[0].innerText.split('\n\n')[0].toLowerCase()); | |
dates.map((d, i) => `${d} - ${titles[i]}`).join('\n') |
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
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
#SingleInstance Force | |
#Persistent | |
AutoTrim, Off | |
; menu | |
Menu, Tray, Add |
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
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
#SingleInstance Force | |
#Persistent | |
AutoTrim, Off | |
; menu | |
Menu, Tray, Add |
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
#SingleInstance Force | |
#Persistent | |
SendMode, Input | |
AutoTrim, Off | |
Browser := false | |
; menu | |
Menu, Tray, Add | |
Menu, Tray, Add, Ustaw okno jako przeglądarkę, ChooseBrowserWindow |
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
let promptly: Record<any, any> | |
if (require.main === module) { | |
promptly = require('promptly') | |
require('dotenv').config({ debug: true }) | |
const fileIndex = process.argv.findIndex( | |
(val) => val.endsWith('initiateDb.ts') | |
) | |
const optionalArguments = process.argv.slice(fileIndex + 1) | |
console.log({ optionalArguments }) | |
let dbUrl: string |


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
<form action="{% url 'new' %}" method="post"> | |
{% csrf_token %} | |
{% for field in form %} | |
<div class="field-wrapper"> | |
{{ field.errors }} | |
{{ field.label_tag }} {{ field }} | |
{% if field.help_text %} | |
<p class="help">{{ field.help_text|safe }}</p> | |
{% endif %} | |
</div> |
NewerOlder