Solve NTFS Partition Mount Problem In Ubuntu Dual Boot

Solve NTFS Partition Mount Problem In Ubuntu Dual Boot

Problem: The NTFS partition is in an unsafe state error in Ubuntu Sometimes is possible to mount partition in read only mode, if you have something important on that partition it is wise to make backup or safe copy. This problem is usually in a dual-boot configuration or sometimes for removable disks. Quick Fix:  mount NTFS partition after this command […]

Reliving from CORS nightmare in SPA applications

CORS When you work whit services on a different domain, the horror and pain from fighting with CORS are unavoidable. Exactly, was unavoidable, before I discover how to prevent browsers to send “silly” preflight OPTIONS request. I was desperately trying everything, middleware, proxying requests, and accepting and dropping  OPTIONS requests on the server side. But when you don’t have control on the server side, […]

Resume and CV page build with VueJs

VueJS is best javascript framework I’ve ever been learned. For that reason, I decided to make my CV framed in Vue. Vue-cv source code is on GitHub here. An online live demo is here. Software is licenced under MIT   Readme.md from Git vue-cv CV & Resume created with Vue and JSON Vue is best javascript framework I’ve ever been learned. For that […]

My list of commands for monitoring network traffic on Linux server

Network monitoring on Linux This post mentions some Linux command line tools that can be used to monitor the network usage. These tools monitor the traffic flowing through network interfaces and measure the speed at which data is currently being transferred. Incoming and outgoing traffic is shown separately. Some of the commands, show the bandwidth used by individual processes. This […]

Vue.js, make ajax requests with Axios

Quite a few frameworks have built-in HTTP APIs. Angular 2 has the http module, JQuery has $.ajax, and, up until Vue 2.0, Vue.js had vue-resource. In Vue 2.0, the developers decided that having a built-in http client module was rather redundant, and could be better serviced by third-party libraries. The alternative most frequently recommended is Axios. Axios is a great http client library. It uses promises by default and runs on both the client […]