Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

53 total results found

MAUI - physical IPhone deployment (without Mac)

.NET Development

In some cases the MacInCloud isn't sufficient: to test BLE devices you do need a physical device, for example. In that case, you can get a cheap Iphone SE2020 or simular - unfortunately you cannot link that phone over RDP (your macincloud) to its USB to deplo...

MAC OS

VirtualBox

For me many of the tutorials or iso's didn't work. The only method on VirtualBox is to get a .vmdk file with High Sierra and linking it as harddrive. (google, for example here ) The image you can find online, will not run on a AMD processor. Also, enable ...

Reach Client from Host (network)

VirtualBox

In order to connect to the virtual image, you have to add an adapter that is "host-only"   You can then start up your virtual machine and connect to it

MAUI - Connect IPhone to debug

.NET Development

According to Microsoft, an Itunes installation on Windows is enough to target the phone.However, after some days of debugging (and setting up a virtual machine to generate keys instead) - it turns out that it's a functionality that's broken. Either by Apple or...

Recover data on catastrophic loss

Windows

For some reason, something went wrong and corrupted my complete USB-controller.Booting into the BIOS or USB recovery disk, however, the keyboard and mouse worked fine. Booting into the recovery USB drive ( see Create installation media) I've tried using dism ...

Change Remote Desktop port

Windows

Regedit HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp  

Passwordless login

Windows

Set DevicePasswordLessBuildVersion to 0 Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device run netplwiz and uncheck

Make windows like it used to be (Windows 11 start menu etc)

Windows

Windows 11 feels nice, but the start-menu and context menu integrations always get in the way. The following app allows to completely set the behaviors to  your hand and remove the annoying "features"   Install ExplorerPatcher from here https://github.com...

Generate API key (for VS integration)

Apple

To connect your IPhone to your Windows PC and start debugging and publish your Visual studio application.You need to go here to generate your key for debugging. https://appstoreconnect.apple.com/access/integrations/api  

Set Iphone into Debug mode

Apple

Go to settings, account, scroll down to "Developer options"   This will restart the phone. You now can publish to the phone.

Peeling layers: set slower initial layer

Bambulabs A1 mini

Some fillament seems to be more sensitive for this issue.  Trying to adjust the temperature compounded problems. The solution seems to be to slow down the initial layer. From 50mm/s to 30mm/s  

Visual studio project version

.NET Development

Define a post-build to create a version file <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net8.0</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> ...

Pipeline - building offline packages

.NET Development Azure

I had trouble linking packages in the pipeline which blocked building solutions.The shortest path I could find, was to update configuration to look into my defined folder.And get a zipfile from an online resource, and extract it into this folder.   Update th...