Keep pebble time watchface backlight on for longer than 3 seconds

The pebble time watchface dims pretty fast and it only lasts 3 seconds, unfortunately there is no option right to increase that. in watchface it is possible to change this behavior programatically here is how i did it.


static int seconds; static void set_backlight(){ light_enable_interaction(); if (seconds<=4)return; app_timer_register(3000,set_backlight, NULL); } static void accel_tap_handler(AccelAxisType axis,int32_t direction) { light_enable_interaction(); seconds = 10; app_timer_register(3000,set_backlight, NULL); } static void main_window_load(Window *window) { ... accel_tap_service_subscribe(&accel_tap_handler); ... } static void tick_handler(struct tm *tick_time, TimeUnits units_changed) { if (seconds>0)seconds--; ... } static void init() { ... tick_timer_service_subscribe(SECOND_UNIT, tick_handler); ... }

Infected with Win32:Delf-MZG [Trj], Avast claims

The day Avast went wrong, yes perhaps false positive. As I just turned on the PC, it reported the following files to be infected:

Vistastartmenu.exe of Vista Start Menu
Spywareterminator.exe of Spyware Terminator
Skype (even Skype!)

At first, I didn’t think it was false positive, I got the warning against Vista Start Menu, I don’t know much about the publishers of the software, but then next was Spyware Terminator? Harder to believe, by checking online, I saw many others were complaining about this issue. The only thing you can do, is click no action or the x button, until Avast get fixed.

In my case, it didn’t work with Vista start menu, it kept showing the warning. So, I ctrl+alt+del , went to processes and chose to end the task for vistastartmenu.exe. Only then I was able to close avast warning.

Dreamweaver 8 : No Error Occurred

No Error Occured - Dreamweaver 8

Click to see the screenshot

Funny Error from Dreamweaver 8, it occurs when I click a file that no longer exist from the recent files list. I often work on portable hard disk, so when I forget to plug the hard disk and click on a recent file, an alert message appears saying “No Error Occurred” .