Advanced Search
Search Results
53 total results found
.NET MAUI - Handling taps
Now that we can send text and images, we can handle events.We'll continue from the last project. But this one is quite straightforward now, so see the base example .NET MAUI Integration: First contact Android will show a notification of how many times we ta...
How it fits in the Vuzix stack
It appears that the Vuzix100 glasses use LVGLImage to render the GUI. As far I have understood from the API of the Vuzix SDK documentation that the only interface we have from our code, is to load a Bitmap. Which is logical, as the LVGL format looks like embe...
Microgreens
Intro My partner eats almost daily "microgreens" and pays about 4€ for a small tray. Which is basically buying a plastic container to carry it home and throw it away.So I got some seeds to make "window greens". Containers and growing kits And went about to ...
Glühwein: recuded alcohol
It's fairly easy to find recipes and suggestions. The main idea, is that alcohol evaporates at 70°C.To avoid this from happening, you can close it with a lid.To motivate this from happening, you can remove the lid and keep it brewing a while above 70°C. Rec...
Container station: sharing common files
In this page we're going to create a link from in a container/image to the Host.Inside the container is "/app/media" and bind it to a share on the QNAP host system. Context While it's convenient to spin up a new Docker image, or republish one. You'll soon co...
Run your own Bookstack docker
After being required to move my server and the LinuxServer BookStack image stopped working.At the same time I've been obligated to migrate my containers.Delving deeper, I ended up making my own bookstack docker image - which turned out to be quite easy but not...
Error starting docker after update
After an update I came across this error chmod: changing permissions of '/config/nginx/site-confs': Bad address chmod: changing permissions of '/config/nginx/site-confs/default.conf.sample': Bad address chmod: changing permissions of '/config/nginx/site-con...
Error starting MariaDB after update
After an update I saw this in my docker station Brought to you by linuxserver.io ─────────────────────────────────────── To support LSIO projects visit: https://www.linuxserver.io/donate/ ─────────────────────────────────────── GID/UID ──────────...
SMTP: response code "235" but got code "535"
This is probably more a PHP error, but I came across it in the context of bookstacks.When configuring the .env file to connect to a mail server, and testing the email, you might get this error: unexpected response code "235" but got code "535", with message "...
.NET MAUI - reporting events to the GUI
In this page, we will send a notifiation of an event back to the .NET GUI. The resulting project is as follows: ExcersisTapCallback.zip This way, we're completely disconnected with the Android stack and can focus on development in MAUI or .NET and only consi...
URL: Passing variables
Add the path @page "/reader/{Id:int}" Bind the parameter [Parameter] public string Id { get; set; } It should be said that via the easy mix of code between the server and the GUI - this approach to pass variables might not the best way. But it coul...
.NET MAUI - reading glass status
Once you're playing around and get some life in the glasses, there are moments you're not sure if your glasses aren't listening or wonder about the battery or status. The resulting project is this one: ExerciseGlassesInfoCallBack.zip In this project, ...
.NET: Refactoring / Dependency Injection
This section will be a more around architectural and design considerations.Someone who is affluent with .NET Core will probably have wondered "why didn't we start off like this", while we focused on the integration and left the considerations of other aspects ...
MAUI - IOS Emulator / Building without MAC
It seems nearly impossible to run an Iphone emulator without a Mac or Iphone device.You could invest in a Mac / Macbook or reason to get something cheap refurbished for a few builds. But for my development, http://www.macincloud.com was sufficient and quite f...
php8.2-fpm with nginx base
Composed from different sources to fit my purpose. Requires docker to be running on the machine. This will create a docker image with PHP8.2 using Nginx - which is usable for Laravel. It's easiest to put the dockerfile together the script Dockerbuild.bat an...
Export SVN repository
At first it seems quite forward to do this, but I have ran into the issue of encoding problems. And trying to get a huge (40G) dumpfile into the container. What did work for me: 1. Have a bind path in your container, to manage the large file 2. Use the co...
Error Code: 1175.
Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column To disable safe mode, toggle the option in Preferences -> SQL Editor and reconnect. SET SQL_SAFE_UPDATES = 0;
Update Database Links to relative paths
SET SQL_SAFE_UPDATES = 0; UPDATE bookstackapp.images SET URL= REPLACE(REPLACE(url, 'http://wiki.yourdomain.com', ''),'https://wiki.yourdomain.com','') UPDATE bookstackapp.settings set value = REPLACE(value, 'https://wiki.yourdomain.com', '') where value lik...
Migrate configuration after export
After you have the repository in a dmp file, you don't have your configuration yet.In my case with the docker, I can see which configuration files are required: docker run -d --name svn-server -p 80:80 -p 3690:3690 -v <hostpath>:/home/svn -v svn_config:/et...
RDP file autologin
For our macincloud accounts, it was cumbersome to always manually login without copy-paste ability into the session. You will need to edit the .rdp file and generate a passsword hash with a program from the internet.1. Get the program cryptRDP5.exe 2. In the...