Category: Configuration
-
Working SCSS Sourcemaps with Angular 6
If you are an Angular developer, you’ve probably noticed that since Angular 2+ they break with almost every release. After wasting many hours in futile attempts to fix them and going through numerous report on Angular GitHub page I finally got to a setup that works. Fixing dependencies (vendor) sourcemaps Open angular.json and find targets->build->configurations…
-
Better Looking Mac Terminal
Mac Terminal comes with several color schemes but non catches the eye like SMYCK. The pastel colors it comes with are easy on the eye and you’ll appreciate the theme the more you use it. Download the theme ZIP archive. Install it by running Smyck.terminal Open Terminal → Preferences from any Terminal window Select Profiles…
-
Replacing Command Prompt with Git Bash
Windows built in Command Prompt is ugly and dated. It also lacks proper Git integration. Git for Windows comes with a configured Git Bash you can use instead. Combine that with Mintty and you now have a full featured themeable terminal rivaling the built in Mac OS Terminal. In the Git for Windows installer choose…
-
Adding predefined actions to Firefox 57 address bar
One of the first things I’ve noticed in Firefox 57 was the Pocket button in the address bar and the additional actions in the menu on the right. Then, while using Pocket I right clicked and selected Remove from Address Bar. Good, this removed Pocket from there but, ugh, how do I return it back?…
-
Eclipse Keybindings for Sublime Text 2
Ever wanted to use your Eclipse keybindings/shortcuts in Sublime Text 2? Are you too lazy to learn new shortcuts? (as I am) If the answer is yes then the following JSON is just for you: Open Sublime Text, goto Preferences -> Key Bindings-User and paste the JSON there. Enjoy the good old Eclipse shortcuts. The…
-
Flash Player Debug crash under Firefox (solved)
Open Firefox config with writing about:config in address bar.Change these values: dom.ipc.plugins.enabled to false dom.ipc.plugins.timeoutSecs to -1 This will allow you to dismiss errors and debug under Firefox. Enjoy.
-
How to fix sound/video problems in Ubuntu
For all of you out there struggling to fix their Ubuntu sound issues 🙂 Fixing sound (microphone): sudo gedit /etc/modprobe.d/blacklist Fixing video driver (tpm error at startup) sudo gedit /etc/modprobe.d/blacklist Add the following lines: #trusted platform moduleblacklist tpmblacklist tpm_biosblacklist tpm_infineonblacklist tpm_tis Fixing output sound from headphones sudo gedit /etc/modprobe.d/alsa-base.conf Add these lines at end of…