"A girl whose parents had ran on vacation, now had a massive debt left by the parents. Now she had to pay those bills by making her family's farm prosperous. How to make it prosperous can be left to her imaginations."
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
; extends | |
; put this file at ~/.config/nvim/after/queries/go/injections.scm | |
; preview: https://github.com/user-attachments/assets/4cb70b78-8861-4a72-a330-40065b6fccb2 | |
; This injection provide syntax highlighting for variable declaration and arguments by | |
; using the comment before the target string as the language. | |
; | |
; The dot after @injection.language ensures only comment text left to the target string will | |
; trigger injection. |
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
local wezterm = require("wezterm") | |
return { | |
font = wezterm.font("JetBrainsMono Nerd Font Mono"), | |
default_prog = { "wsl.exe", "-d", "Arch", "tmux", "attach", "||", "tmux" }, | |
hide_tab_bar_if_only_one_tab = true, | |
window_close_confirmation = "NeverPrompt", | |
} |
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
Add-Type -AssemblyName System.Speech; | |
$read = [string]::Format("It's {0}", $(Get-Date -Format "hh tt")); | |
(New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak($read); |
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
# Logs | |
logs | |
*.log | |
npm-debug.log* | |
yarn-debug.log* | |
yarn-error.log* | |
lerna-debug.log* | |
# Diagnostic reports (https://nodejs.org/api/report.html) | |
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json |
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
import { createConnection, Connection } from 'typeorm' | |
import User from 'some-folder' | |
import { Request, Response, NextFunction } from 'express' | |
// Infrastructure Codes | |
let readConn: Connection | |
let writeConn: Connection | |
// Contoh misal user repo |