Links:
- goto WDK and WinDbg downloads
- scroll down to
Standalone Debugging Tools for Windows (WinDbg)
Get the standalone debugging tools (WinDbg) as part of Windows 8.1 SDK
- execute
sdksetup.exe
- just select
Debugging Tools for Windows
Links:
Standalone Debugging Tools for Windows (WinDbg)
Get the standalone debugging tools (WinDbg) as part of Windows 8.1 SDK
sdksetup.exe
Debugging Tools for Windows
@echo off | |
::http://ssrebelious.blogspot.co.at/2012/03/qgis-and-gdal19-encoding-issue.html | |
::http://plugins.qgis.org/plugins/shapefile_encoding_fixer/ | |
::https://github.com/borysiasty/shapefile_encoding_fixer | |
::http://en.wikipedia.org/wiki/Character_encoding#Common_character_encodings | |
::http://en.wikipedia.org/wiki/Code_page#Noteworthy_code_pages | |
::1250 - Central European | |
::1251 - Cyrillic |
@echo off | |
CALL "C:\Program Files\QGIS Brighton\OSGeo4W.bat" | |
::http://ss64.com/nt/syntax-args.html | |
::d=drive | |
::p=path | |
::n=name without extension | |
for /R %%f in (*.shp) do ( |
All instructions assume 64bit version of Mapbox Studio.
mapbox-studio-exe
or node.exe
processes. If there are, terminate them.%USERPROFILE%\.mapbox-studio
(paste this into address bar of Explorer).
app.db.compacted
? If yes, delete it.app.log
? If yes, send it to us.raspberry pi connected to internet via ethernet, client with Mapbox Studio connect to raspberry pi via wifi
This is based on WiFi AP (RT5370) on Raspberry Pi
don't forget to adjust to your adapters: eth0
and wlan1
used here
#optional, as I messed things up, by not using "--force" or "+<BRANCH>" | |
git checkout develop | |
git pull | |
git checkout develop-vs2015 | |
git pull | |
#rebase on "develop" | |
git rebase develop | |
git push origin +develop-vs2015 | |
#do the squash: 7 commits |
sudo add-apt-repository ppa:webupd8team/sublime-text-3
sudo apt-get update
sudo apt-get install sublime-text-installer
run /opt/sublime_text/sublime_text
or sudo ln -s /opt/sublime_text/sublime_text /usr/local/bin/subl
with ubuntu bash on Windows 10 and Xming:
Porting MSBuild Projects To XBuild
<NuGetCommand Condition=" '$(NuGetCommand)'=='' AND '$(OS)' == 'Windows_NT'">"$(NuGetExe)"</NuGetCommand>
<NuGetCommand Condition=" '$(NuGetCommand)'=='' AND '$(OS)' != 'Windows_NT' ">mono --runtime=v4.0.30319 "$(NuGetExe)"</NuGetCommand>
Cross Platform Builds on Windows and Mono with MSBuild