Author Archive
Use Docker Swarm secrets in ASP.NET Core Configuration
Thursday, January 2, 2020 15:28 No CommentsNeed to pull in docker swarm secrets into the asp.net core configuration? The following article linked here: Use docker swarm secrets in Asp.Net core demonstrates how to write a custom configuration provider to do just that, or pull the existing NuGet package and let it do the work.
Xamarin & .NET Core how to ignore SSL certificate errors
Monday, September 30, 2019 14:40 No CommentsThe following article talks about ignoring SSL Certificate errors in Xamarin and .NET Core (Xamarin.Android, Xamarin.iOS, SignalR, Refit): Ignore ssl certificate errors in xamarin & .Net core / “Servercertificatevalidationcallback” is not called anymore on android
GIT – How to merge specific files from another branch
Monday, September 3, 2012 16:41 No CommentsUsing GIT you can merge specific files from another branch using the ‘checkout’ command. After you checkout the files do a commit on the current branch. Example: $ git checkout anotherBranchName path/to/file.etx path/to/file2.ext path/to/file3.ext $git commit -m “Merged files from anotherBranchName”
Digital photographic mosaics using AndreaMosaic
Thursday, August 30, 2012 0:03 No CommentsUsing Andrea Mosaic you can create interesting digital photography mosaics. A photo mosaic is an image composed of many tiled photos. AndreaMosaic is free to download. Visit the page at: www.andreaplanet.com/andreamosaic/
M-AUDIO Fast Track Ultra not recognized. Problem identified.
Monday, August 27, 2012 18:11 No CommentsA number of M-AUDIO Fast Track Ultra devices has a problem of not being recognized by the operating system or losing connectivity after system restart. M-AUDIO has identified the problem, and it is a technical one which requires the device to go into repair. If the 6th digital is the letter “F”, there is a [...]
Linux server – Change default timezone
Monday, August 6, 2012 12:45 No CommentsChanging the timezone on a Ubuntu/Debian server can be done using the following command: su dpkg-reconfigure tzdata
Use GMail to send emails through the Linux consolse
Saturday, July 28, 2012 10:09 No CommentsIf you need to be able to send simple, one user account emails from a Linux server which has no mail server configured then this is for you. Additionally you can use GMail to send messages from. Install software: # apt-get update # apt-get install ssmtp Edit configuration file: #nano /etc/ssmtp/ssmtp.conf [email protected] AuthPass=gmailpassword FromLineOverride=YES mailhub=smtp.gmail.com:587 [...]
VirtualBox – Disable Date and Time synchronization for a VirtualBox Guest system
Thursday, April 26, 2012 16:24 No CommentsThe following command will disable the date/time synchronization for a Guest operating system. Assuming the host is running Windows OS. Open the command prompt. (Run -> cmd) Enter command: C:\Users\User>”c:\Program Files\Oracle\VirtualBox\VBoxManage.exe” setextradata ENTER_MACHINE_NAME_HERE “VBoxInternal/Devices/VMMDev/0/Config/GetHostTimeDisabled” “1″ * Replace ENTER_MACHINE_NAME_HERE with Guest system name * This command will add an extra line to the “C:\Users\User\VirtualBox VMs\MACHINE_NAME\MACHINE_NAME.vbox” file. [...]
MySQL InnoDB table truncate fails because of foreign keys
Thursday, April 12, 2012 8:51 No CommentsIf trying to truncate MySQL InnoDB tables and you are getting an error because of foreign keys constraints try disabling the foreign keys checks. SET FOREIGN_KEY_CHECKS = 0; .. TRUNCATE tableName; TRUNCATE tableName2; .. SET FOREIGN_KEY_CHECKS = 1;
MediaWiki – List all namespaces and their ID numbers
Friday, March 23, 2012 13:13 No CommentsTo list all available namespaces and their ID numbers in MediaWiki you have to query MediaWiki’s api. Simpy open the following address in your browser: http://www.mywebsite.tld/mediawiki_installation/api.php?action=query&meta=siteinfo&siprop=namespaces *replacing http://www.mywebsite.tld/mediawiki_installation with the path to your MediaWiki page. This will return a XML representation of Namespaces data.