How to fix screen resolution problem of certain applications in Windows 8
2/22/2015

How to fix screen resolution problem of certain applications in Windows 8

Problem The problem was, certain apps like my IDE phpStorm, would not use the actual resolution and degrades to lower resolution as if I have set my resolution to something less than optimal resolution of my screen. I have 1920×1080 screen on my laptop and the application would act like I have lower resolution so […]

Configure bluetooth module for arduino
1/19/2015

Configure bluetooth module for arduino

Requirements: a. Arduino b. XBEE Shield c. Bluetooth Module To make the bluetooth module work: Follow these steps a. Upload the bare minimum sketch to the arduino. void setup() { } void loop() { } b. Connect only the XBEE shield (incl. Bluetooth module to arduino) c. Connect arduino to pc and run the serial […]

Apache2 on Ubuntu ignores sites-enabled conf (vhost config)
1/12/2015

Apache2 on Ubuntu ignores sites-enabled conf (vhost config)

I am using Vagrant to host my local dev environment in Ubuntu. I found this issue, Apache2 on Ubuntu ignores sites-enabled *.conf After few tries figured out, you need to edit the default 000-default.conf file and comment out the configurations there or just delete the file.

AngularJS problem : Links cant load page from server but uses ng-route
12/12/2014

AngularJS problem : Links cant load page from server but uses ng-route

If you are using ng-route and want to load the page from your server you need to add target=”_self” to your anchor tag. Example: <a href=”my/page” target=”_self”>LINK</a>

Intel Edison
Getting started with Serverless
9/20/2019

Getting started with Serverless

What is Serverless Application? Resources without provisioning and operations. What is a Microservice? Why? Auto-scaling Fault-Tolerant by design Pay-as-you-go Quick and easy to develop? depends.. When? It is wise to consider when to think serverless. Workloads with irregular access patterns Workloads with short execution times Automation What is AWS Lambda? AWS Lambda is an event-driven, serverless […]

© 2023 Anil Maharjan