Tag: code
-
Turning off suggestions in Visual Studio Code
Visual Studio Code, is a great program and it is my favorite editor, however it bugs me that it makes suggestions for every second work I type. This is how you turn that off.
-
Installing Visual Studio Code on RHEL
RHEL, Fedora, and CentOS based distributions We currently ship the stable 64-bit VS Code in a yum repository, the following script will install the key and repository: sudo rpm –import https://packages.microsoft.com/keys/microsoft.asc sudo sh -c ‘echo -e “[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc” > /etc/yum.repos.d/vscode.repo’ Then update the package cache and install the package using dnf (Fedora 22 and…
-
Automatic Android Code Signing in Unity
Create a new folder in your project called Editor Within that folder create a new C# script called something like PreloadSigningAlias.cs Copy and paste the code below into the script and save it. Replace KEYSTORE_PASS with the password to your keystore Replace ALIAS_NAME with the name of your android alias Replace ALIAS_PASSWORD with the password…
-
Learn to program for the Blackberry Playbook with code samples. Intro.
I’m trying to teach myself ActionScript to be able to develop applications for the Blackberry Playbook. After a bit of a false start when I was tried jumping in at the deep end and trying to pull information out of a SQL Lite database, I decided that I should probably stop, go back to the…