New pages

New pages
Show bots | Show redirects
  • 15:36, 22 March 2024Stardew Valley (hist | edit) ‎[270 bytes]Torben (talk | contribs) (Created page with "Apple M1/M2 XBox Controller fix see https://forums.stardewvalley.net/threads/bug-xbox-and-ps4-controller-not-working-works-in-steam-and-other-games.3949/#post-60203 replace file at ~/Library/"Application Support"/Steam/steamapps/common/"Stardew Valley"/Contents/MacOS")
  • 05:56, 16 March 2024Tasmota (hist | edit) ‎[1,008 bytes]Torben (talk | contribs) (Created page with "==MQTT Commands== see https://tasmota.github.io/docs/Commands/ I use mosquitto as MQTT message broker examples # read value mosquitto_pub -u mqtt_user -P mqtt_pass -t "cmnd/tasmota_MT681/MqttLog" -m "" # set value mosquitto_pub -u mqtt_user -P mqtt_pass -t "cmnd/tasmota_MT681/MqttLog" -m "0" set data-sending frequency to 15s mosquitto_pub -u mqtt -P f1612f6583 -t "cmnd/tasmota_MT681/TelePeriod" -m "15" set webserver off mosquitto_pub -u mqtt -P f1612f6583 -t "c...")
  • 00:35, 24 February 2024PlantUML (hist | edit) ‎[490 bytes]Torben (talk | contribs) (Created page with "==Install== ===MacOS=== brew install --cask temurin brew install graphviz ==Documentation== * https://plantuml.com/en-dark/component-diagram ==Examples== @startuml example1 [Component A] as A [Component B] as B [Component C] as C [Component D] as D [Component E] as E ' - is horizontal ' -- is vertical A-B C--E ' > is arrow A-->D ' . is dashed line B.C ' text on arrow B.>D : html note left of D : note 1 note right of D multi line note end...")
  • 18:00, 19 February 2024Gramps (hist | edit) ‎[144 bytes]Torben (talk | contribs) (Created page with "==MacOS== ===Change lang to DE=== defaults write -app Gramps AppleLocale "de_DE"")
  • 13:37, 7 February 2024Tabulator (hist | edit) ‎[1,029 bytes]Torben (talk | contribs) (Created page with "==Tabulator JavaScript Table Lib== https://tabulator.info/ ===minimal example=== <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="tabulator.min.css"> <script src="tabulator.min.js"></script> </head> <body> <div id="my-table"></div> <script> var table = new Tabulator("#my-table", { ajaxURL:"data.json", layout:"fitColumns", columns:[ {title:"Plant", field:"plant", headerFilter:"input", width:75}, {titl...")