Skip to content

Instantly share code, notes, and snippets.

@oxycoder
oxycoder / crontab
Last active February 20, 2023 06:38
DDNS Cloudflare
# Run script every hours
0 * * * * /ddns.sh
@oxycoder
oxycoder / step.md
Last active May 25, 2024 01:15
Build QT6 static with Visual stuio 2022

Require Tools

  • Visual studio 2022
  • Perl (Added to windows PATH)
  • CMake (Added to windows PATH)
  • Ninja (Added to windows PATH)
  • Postgresql LIB (Added to windows PATH)

Build command:

@oxycoder
oxycoder / angular.json
Created June 24, 2024 02:47
Angular custom webpack to generate external assets URL
...
"architect": {
"build": {
"builder": "@angular-builders/custom-webpack:browser",
"options": {
"customWebpackConfig": {
"path": "./extra-webpack.config.js"
},
}
}