Nowadays SinglePageApplication is everywhere, providing great performance and user experience. But what about SEO / Will search engine bots be able to see SPAs correctly? Along time ago, when computers are not powerful enough, most search engine bots were just checking HTML static pages.But nowadays, bots got much cleaver and powerful. Google bot surely supports …
TeamCity – JetBrains
TeamCity is a Java-based build management tool and CI(continuous integration) server from JetBrains TeamCity supports the following version control systems: Subversion, CVS, Visual Studio Team Services, Microsoft Visual SourceSafe, Git, Mercurial, etc TeamCity is self-served CI server/agent application provided by JetBrains, so you can install teamcity on your local or other VM and use for …
Introduction about Sentrifugo
http://www.sentrifugo.com/ Sentrifugo is a FREE and powerful Human Resource Management Systemthat can be easily configured to meet your organizational needs. How Sentrifugo Works Sentrifugo offers HR resource modules with exceptional features and an intuitive interface. It’s easy to set up, configure and use.
Best way to use multiple SSH private keys on one client
From my .ssh/config:
How to make self-signed certification work in google chrome
In some cases, we are forced to use https even on local development server. We can use OpenSSL to issue SSL certification, which can be used with Apache, nginx or node server. Steps are as follows:1. generate key for rootCA2. create rootCA3. create key for serverCA4. create certification request for server (domain)5. create serverCA using …
Tinytake for image and video sharing
It is screen recording application, which is more convenient to use than recordit. It provides very smooth screen recording functionality as well as image capturing functionality. There is only window version. Please go to tinytake.com for downloading. And you need to create a account. When you create a account, they provide a subdomain for you. …
Mandrill and Mailchimp
Mailchimp and Mandrill are used together in many cases, although they can perform mailing functionality individually. There is a reason. Mandrill is convenient for 1 to 1 mailing operation and mailchimp is convenient for 1 to n mailing operation. Also mailchimp provides convenient templating functionality so we use mailchimp to build mail template and send …
Free SSL Implementation With Certbot
You are a web developer and want to implement HTTPS on your site. Will you need to purchase SSL Certificate? – Surely, YES. But there is letsencrypt. If you use letsencrypt, you can enable HTTPS on your site freely. As a way to implement letsencrypt to enable HTTPS, you can use Certbot ACME client. https://certbot.eff.org …
Git Reflog
We can do like we did using ctrl + z in code editor. Oh, yes, say when we use git. Git remember its history and we can see them by typing git reflog The documentation is here. http://git-scm.com/docs/git-reflog
Introduction to SSH (Secure Shell)
As a developer, SSH(Secure Shell) is everyday use when you work with remote server. Let’s see how SSH works, what is the public key and private key, what configuration we need on server side and local environment and the like.