If you get a blue screen of death when using Virtual box its because hyperV and virtual box don’t player well together. You can disable hardware acceleration on vbox or do the following in windows:
bcdedit /set hypervisorlaunchtype off
This is going to break hyper v stuff.
I found this info on this guys site:
http://stuartjames.info/Journal/visual-studio-2013-breaks-virtualbox-due-to-hyper-v-conflict.aspx
FAILED: ninja -t msvc -e environment.x86 — “C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\amd64_x86\cl.exe” /nologo /showIncludes /FC @obj\device\ bluetooth\device_bluetooth.bluetooth_init_win.obj.rsp /c ..\..\device\bluetooth\bluetooth_init_win.cc /Foobj\device\bluetooth\device_bluetooth.bluetooth_init_win.obj /Fdobj\device\bluetooth\device_bluetooth.cc.pdb
c:\chrome\src\device\bluetooth\bluetooth_init_win.cc(34) : error C3861: ‘__HrLoadAllImportsForDll’: identifier not found
If you get the following error do this:
bool HasBluetoothStack() {
static enum {
HBS_UNKNOWN,
HBS_YES,
HBS_NO,
} has_bluetooth_stack = HBS_UNKNOWN;
/*
if (has_bluetooth_stack == HBS_UNKNOWN) {
base::ThreadRestrictions::AssertIOAllowed();
HRESULT hr = E_FAIL;
__try {
hr = __HrLoadAllImportsForDll("bthprops.cpl");
} __except(FilterVisualCPPExceptions(::GetExceptionCode())) {
hr = E_FAIL;
}
has_bluetooth_stack = SUCCEEDED(hr) ? HBS_YES : HBS_NO;
}*/
has_bluetooth_stack = HBS_NO;
return has_bluetooth_stack == HBS_YES;
}
} // namespace bluetooth_init_win
} // namespace device
If you are compiling with VS2013 you might run into this error:
FAILED: C:\…\python.exe gyp-win-tool action-wrapper environment.x86 copy_compiler_dll_target_copy_dll_a30e198148542d4bce19a5c818c6884f..rsp ..\..\third_party\angle\src
To fix this copy
Copy: C:\Program Files (x86)\Windows Kits\8.1\Redist\D3D
to
C:\Program Files (x86)\Windows Kits\10\redist
modify
./components/search_engines/prepopulated_engines.json
add the engine you want
This file is used to generate a struct.
modify this to include it as a default for a specific country.
./components/search_engines/template_url_prepopulate_data.cc
If After installing your windows update your Keyboard and mouse stop working do the following:
Read more…
If you are ever trying to convert two modbus 16-bit words to a float in excel here is the code to do it.
Read more…
Based on my algorithm here are the 20 most popular questions that were asked during Amazon interviews:
Why Amazon?
Linked list
System design questions.
Tell me about a time you failed.
Why do you want to work for Amazon?
What questions do you have for me?
Design Question
A lot of questions like “tell me about a time you ….”
The excel exercise was specially tough for me. It is NOT related to finance.
Describe a binary tree ?
What do you do when people say no to you
on data structures
Search Tree
The design problem
Tell me about a time you used data.
Tell me a time when you had to design a system?
find common ancestor in binary tree(Not binary search tree)
“Tell me about yourself”
Write a code to find out if a tree is a binary search tree.
Binary tree traversal
Yes they do seem kind of generic, but I guess that is the case with many things.
Since it seems like this is the most popular page on my blog I figure I would update it. The number of questions on glassdoor exploded. 3000+
questions. I guess Amazon keeps hiring and firing?
Read more…
Recent Comments