Cara Delevingne at the VS Pink Carpet, 2012

seen from Poland
seen from South Korea
seen from Türkiye

seen from Türkiye
seen from China
seen from United States
seen from Slovakia
seen from United States
seen from Thailand
seen from China
seen from China
seen from China
seen from T1
seen from China

seen from Germany

seen from Australia
seen from Türkiye

seen from Switzerland
seen from Japan
seen from United States
Cara Delevingne at the VS Pink Carpet, 2012

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Invoke or Run IIS Express x64 with VS2012.
Invoke or Run IIS Express x64 with VS2012.
For some reasons, you may have to run IIS Express x64 from VS2012. For later versions, it is automatically instantiated, however in case of VS2012, it isn’t. And there is no way Microsoft provides any patch or upgrade.
Although there is untestable hack or trick which did work for me.
You have to modify registry to invoke or run IIS Express x64.
Create batch file (*.bat) and put below code.
reg…
View On WordPress
Visual Studio 2012 Language Pack offline
Got ever stuck on a environment without internet access? Like in a strict company network. And you desperately need to change the language of your VS2012 (just because translating everything in real time makes your head hurt).
Microsoft Visual Studio 2012 Language Pack requires internet connection, because languages are downloaded in the install process. However there is a switch that allows you to predownload the data.
vs_langpack.exe /Layout
VS2012를 간만에 실행시켰더니 나타난 오류
Windows\SysWOW64 폴더의 dll 들이 버전이 꼬인 문제라는 구글신의 도움으로 어찌 복구하나 멍해있던 차에..
VS2012 재배포용 패키지가 떠올라 설치하니 복구.
vcredist_x86 VS2012 update4
64비트용이 아니다! x86 이다
build Tesseract 3.03 with Visual Studio 2013
build Tesseract 3.03 with Visual Studio 2013
Compiling Tesseract 3.02.02 with Visual C++ 2008 (Express) is covered by the documentation whereas compiling Tesseract 3.03 isn’t covered at all, though.
Unfortunately newer versions of Tesseract also require a new version of Leptonica, a C library for image processing and image analysis applications, which in turn requires new versions of zlib, libpng, libtiff, libjpeg and giflib. Tesseract…
View On WordPress

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Want to be productive? VS says “Not so fast!”
While trying my best to be productive in VS 2012 I get this message:
Thanks allot for hogging the UI thread piece of shit. I was just being productive with it!
Better not KEEP THE DEVELOPER WORKING! And spawn a background thread. That might lead to innovative ideas produced in MS software!!!
Old, meet new!
template<typename base, size_t size> int GetPrivateProfileString(const char* section, const char* key, const char* defaultVal, base (&result)[size], const char* iniFile) { return GetPrivateProfileString(section, key, defaultVal, result, size, iniFile); }
Combining the Win16 API with modern C++ is fun! With this template function, you no longer have to pass sizeof result; the compiler can figure this out itself.
The STL uses the same pattern to provide range access to native arrays (in bits/range_access.h).
VS2012 compatibility shortcuts in vim
I'm working on a C++ project that I'm trying to build with both Visual Studio 2012 and MinGW.
These are the Vim settings I use to duplicate a few VS keyboard shortcuts:
nmap <F7> :make<CR> " build imap <F7> <ESC><F7> " build from insert mode nmap <S-F7> :make clean all<cr> " rebuild " search project for word under cursor map <C-S-F> :vimgrep /\<<C-R><C-W>\>/ *<CR> set wildignore+=.o,tags " exclude generated files