This problem started occurring around 10.9.0, might have been in earlier version too, but it still exist now in 10.9.2. The sound disappear on the mac after you wake it from sleep mode, but it’s not consistent, there can go days without it happening. There doesn’t seem to be a specific time interval it needs to […]
The setup: MacBook Air mid-2013, 4gb ram. Running Windows 8.1 in Parallels Desktop 9 and Visual Studio Premium 2013 with Windows Phone 8 plugin. Enabled the Hyper-V in Windows Features. When running the Windows Phone 8 emulator the following error message came: Windows Phone Emulator The Windows Phone Emulator wasn’t able to ensure the virtual […]
Had this problem where Synology Diskstation did not allow to upload a file from the File Station. When pressing the upload button nothing happened. Same in all major browsers. It turned out Java needed to be updated and it apparently wasn’t allowed to run the upload procedure before the update was applied. So make sure […]
The UITableView has change in iOS 7, the transparent is turned off, well the cell’s background has a color (white) now. So the background is not visible anymore, resulting in an unwanted tableview look. To fix this set the cell’s background to clearColor in the cellForRowAtIndexPath – (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { cell.backgroundColor = […]
A lot of elements has changed in iOS7, they have introduced new properties that lets you adjust the layout behavior as in previous versions of iOS. The Navigation Bar appears over the views now because a default setting has changed, to address this issue use this line in the viewDidLoad() self.edgesForExtendedLayout = UIRectEdgeNone; This will […]
In Windows 8.1 you can change the default launch screen, so you don’t have to start in the (Metro) Modern UI Start Screen anymore. Start your Windows 8.1, login and go to the desktop, rightclick on the Task Bar (The big blue line) and select Properties. It’ll open the “Taskbar and Navigation properties”, select the […]
Visual Studio didn’t have the option to select the Windows Phone emulator, this happened after doing a repair of the Windows Phone SDK 8.0 – ENU. It only had the “Attach…” a process to it. The issue here was that the hyper-V wasn’t enable/installed. By right clicking your windows phone project try to deploy the […]
Trying to start Diablo 3 gave this error: “graphics error click to retry creating d3d device” Now, there have been several options and solutions depending on what causes the error. Have a look here for the varies solutions: http://us.battle.net/d3/en/forum/topic/5968136916 In this case changing resolution, DisplayModeWindowMode or other options in D3Prefs.txt didn’t work. What worked was: Right click on […]
Updated Android Studio to 0.2.6 you can run into this error: “Error: Default activity not found”, almost every line was red and some other irrelevant error. Nothing was changed in the project, only did the update from 0.2.5 to 0.2.6. Do the following to fix the problem: Build -> Rebuild Project and then restart Android […]
After updating Android Studio 0.1.6 it sometimes can’t find R and you have to rebuild your project. java /*.java : cannot find symbol location : class com.*.R A workaround: Module project settings -> Dependencies -> move one of the item up or down -> OK, it’ll regenerate the R.java Another temporary wordaround: Turning off Preferences […]