- Ark - https://apps.kde.org/ark/
- ouch -
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
{ | |
"compilerOptions": { | |
"strict": true, | |
"alwaysStrict": true, | |
"noFallthroughCasesInSwitch": true, | |
"noUncheckedIndexedAccess": true, | |
"noImplicitAny": true, | |
"strictNullChecks": true, | |
"strictFunctionTypes": true, | |
"strictBindCallApply": true, |
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
{ | |
"[astro]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[css]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, |
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
name: Build and Deploy | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
migrate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 |
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
#!/usr/bin/bash | |
set -euo pipefail | |
printf "Package name? " | |
read -r PACKAGE_NAME | |
if [[ -z "$PACKAGE_NAME" ]]; then | |
echo "Error: package name should not be empty" | |
exit 1 | |
fi |
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 WebSocket = require("ws"); | |
const ws = new WebSocket("wss://xapi.netovas.app/auth/inspect/ws"); | |
ws.on("error", console.error); | |
ws.on("open", () => { | |
ws.send( | |
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE3MDY2MjE0MjAsImlkIjoxNzAzMDY5NDU4NTcyLCJyb2xlIjoicGFydG5lciJ9.m3h_XqTI-aGZPS4obnoKVfivDXy0cnVIQnoqQlqZNVA", | |
); |
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
server { | |
server_name api.gananwo.click; | |
location / { | |
proxy_pass http://localhost:8080; | |
proxy_http_version 1.1; | |
proxy_set_header Upgrade $http_upgrade; | |
proxy_set_header Connection "upgrade"; | |
proxy_set_header Host $host; | |
} |
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
#!/usr/bin/env bash | |
yad \ | |
--info --text 'Selamat Pagi !' --title 'Yuuko Alert' \ | |
--image './yuuko_selamat_pagi_greeting-75.png' --button="OK:0" \ | |
--width 200 --height 150 --text-align 'center' --buttons-layout 'center' \ | |
--center |
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
{"version":1,"resource":"file:///home/tfkhdyt/projects/netovas/crm-netovas-backoff/client/client_route.go","entries":[{"id":"ZcnH.go","timestamp":1710397371186},{"id":"Ujhy.go","source":"Organize Imports","timestamp":1710470627558},{"id":"Jjcq.go","source":"moved.source","timestamp":1710472172457},{"id":"mblm.go","timestamp":1710472192159},{"id":"33sp.go","timestamp":1710472249851},{"id":"MtLU.go","source":"Renaming AddClient to add","timestamp":1710472394769},{"id":"zTFM.go","source":"Renaming FindAll to findAll","timestamp":1710472402815},{"id":"tP6Y.go","timestamp":1710476227501},{"id":"klSK.go","timestamp":1710483090202},{"id":"kezv.go","timestamp":1710484547515},{"id":"6Fxj.go","source":"Renaming Admin to AdminGuard","timestamp":1710484561522},{"id":"CWPr.go","timestamp":1710739286391},{"id":"5gRX.go","timestamp":1710745959658},{"id":"4EZc.go","source":"Renaming Handler to ClientHandler","timestamp":1710753151419},{"id":"U22d.go","timestamp":1710753497427},{"id":"8cqf.go","timestamp":1710815241340},{"id" |
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
[Unit] | |
Description=Service description | |
[Service] | |
Type=simple | |
User=admin | |
WorkingDirectory=/home/admin/project-name | |
ExecStart=/usr/bin/node /home/admin/project-name/dist/index.js | |
Restart=on-failure |
NewerOlder