Showing posts with label Sublime. Show all posts
Showing posts with label Sublime. Show all posts
Tuesday, November 26, 2019
Friday, October 25, 2019
how to auto reload your changes in html to your browser
Working
BrowserSync
https://www.youtube.com/watch?v=3Pptm3EMaP4
not working
LiveServer
NPM node module
https://www.npmjs.com/package/live-server
28-10-2019
I just discover a new way to refresh the browser with 1 simple line of code in html.
add this:
<meta http-equiv="refresh" content="1">
https://code.tutsplus.com/tutorials/4-ways-to-auto-refresh-your-browser-when-designing-new-sites--net-13299
and voila!
BrowserSync
https://www.youtube.com/watch?v=3Pptm3EMaP4
not working
LiveServer
NPM node module
https://www.npmjs.com/package/live-server
28-10-2019
I just discover a new way to refresh the browser with 1 simple line of code in html.
add this:
<meta http-equiv="refresh" content="1">
https://code.tutsplus.com/tutorials/4-ways-to-auto-refresh-your-browser-when-designing-new-sites--net-13299
and voila!
Friday, October 5, 2018
Sunday, September 16, 2018
How to launch sublime from command prompt
1. run sysdm.cpl in command prompt
2. add the path from sublime to the environment variables
C:\Program Files\Sublime Text 3
reference:
https://stackoverflow.com/questions/9440639/sublime-text-from-command-line-win7
Friday, August 24, 2018
Package control and GITSavvy for sublime
Since I worked in python I always use sublime as my main editor. It's super sleek, fast and lightweight. On the other hand, using GIT is better than using SVN but you need to learn at least the basic git commands and I'll tell you that it super hard at first.
I found this tool to be installed in sublime as a helper when you use GIT.
Install the package control first
https://packagecontrol.io/installation#st3
https://mijingo.com/blog/sublime-text-package-control
after installing, just open up the package control by pressing ctrl+shift p. Install GITSavvy and that's it. Eureka!
Wednesday, February 28, 2018
Sublime shortcut keys
I really like sublime, especially in my development. It is very lightweight and many features.
Today I learned something nice related to shortcut keys.
http://docs.sublimetext.info/en/latest/reference/keyboard_shortcuts_win.html
Keep on subliming... :)
Today I learned something nice related to shortcut keys.
http://docs.sublimetext.info/en/latest/reference/keyboard_shortcuts_win.html
Keep on subliming... :)
Monday, December 18, 2017
How to install Sublime in ubuntu
apt
Install the GPG key:wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
Ensure apt is set up to work with https sources:
sudo apt-get install apt-transport-https
Select the channel to use:
- Stable
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
- Dev
echo "deb https://download.sublimetext.com/ apt/dev/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
sudo apt-get update
sudo apt-get install sublime-text
Subscribe to:
Posts (Atom)
free online comma separating tool
https://delim.co/#
-
In my current company, I'm using Visual Paradigm for my documentation task. If you go there site, you can either download community and ...
-
One of the functionality in our system is can able to generate a report using Jasper report. We have a Jasper server setup in another ip ad...
-
This issue happens when I installed Postgres in my vagrant (vm) and then I after a while I removed it. But the service is still running in t...