- In the laptop
BIOS
enableLegacy Boot
(if the laptop supportsUEFI/Legacy Boot
) as dual-booting is problematic onUEFI
enabled hardware. - When booting enter the BIOS boot menu (e.g. by pressing
F12
) and selectLegacy Boot
. - Create the required logical partions on the drive for
Windows 10
and leave unalocated space forUbuntu 19.10+
.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Version format | |
version: 1.0.0.{build} | |
image: | |
#- Ubuntu1804 | |
- Visual Studio 2017 | |
platform: x64 | |
configuration: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Version format | |
version: 1.0.0.{build} | |
image: | |
- Ubuntu2004 | |
- Visual Studio 2022 | |
platform: x64 | |
configuration: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// See https://go.microsoft.com//fwlink//?linkid=834763 for more information about this file. | |
"environments": [ | |
{ | |
"CacheScript": "${workspaceRoot}\\build_files\\cmake\\config\\blender_lite.cmake", | |
} | |
], | |
"configurations": [ | |
//////////////////////////////////////////////////////////////////////////// | |
// MSVC-Ninja-x64-Debug |
- In Android Studio 3.1 open Run/Debug Configurations
- For the respective Configuration, e.g
app
under General->Launch Options->Launch Flags: add a key-value pair, e.g.--ei DAY_TIME 5
. For more options see: Specification for intent arguments - Read the key-value pair in Kotlin:
// Get the value with intent.extras[KEY_VALUE] which returns a value of type
// Any!. Check for "null" and convert it to a string otherwise return a string
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REGEDIT4 | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run] | |
"X Drive"="subst X: \"C:\\Users\\HGH\\Documents\\Programming\"" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
:: This command will create a persistant drive subst of a folder accross | |
:: reboots and will also be available to command prompts with raised | |
:: privileges. | |
:: | |
:: Example: | |
:: "C:\Users\HGH\Documents\Programming" will be mapped to drive "X:\" | |
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
:: For details see: | |
:: http://superuser.com/questions/29072/how-to-make-subst-mapping-persistent-across-reboots |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REM Unsets "sparse" flag of a file. | |
REM Usage: Drag and drop the file onto the batch file. | |
fsutil sparse queryflag %1 pause | |
fsutil sparse setflag %1 0 | |
fsutil sparse queryflag %1 pause |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
How to build OpenSSL on Visual Studio 2013 (64bit target) | |
Note: | |
For some reason running the following commants from a .bat file won't work. | |
Use the Command Prompt. | |
Command Prompt: | |
VS2013 x64 Native Tools Command Prompt - for native builds for example if you | |
build for Windows 7 64 build you should use this Command Prompt. | |
VS2013 x86 Native Tools Command Prompt - use this if you are compiling on 32 bit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
As it is currently, you can only hack that by symlinking /share/qtcreator/QtProject/ | |
(or Qt Creator.app/Contents/Resources/QtProject/ on OS X) to the same path within your standalone Qt Creator | |
installation. | |
Example (Windows): | |
C:\Qt\qtcreator-3.2.82\share\qtcreator>mklink /d QtProject c:\qt\Tools\QtCreator\share\qtcreator\QtProject |
NewerOlder