Skip to content

CollegeStash

  • Software Engineer Interview Prep
  • System Design
  • Frontend
  • Contact
  • Search
  • Hide Tags from WordPress Twenty Seventeen Theme

    You can hide your tags, tag-cloud, categories links from WordPress posts page by adding just a single line of code.
    Open up your WordPress (Jetpack) CSS editor and add the following line in the end.

    .entry-footer {
      display: none !important;
    }

    Now save the changes and clear your cache and you should no longer see the tags on your WordPress posts.

    December 10, 2017
  • How to invest in Cloud Mining in 5 minutes

    For those of you who want to start mining cryptocurrencies like bitcoin, ethereum, etc and don’t want to invest in hardware upfront, then there are a lot of cloud mining options out there. But beware of fake companies that might swindle your money.
    I personally prefer genesis-mining as it is an industry leader in cloud mining since the early days of bitcoin.
    (more…)

    December 8, 2017
  • Best ways to earn side income online

    There are many ways in which you can earn some extra money by spending some of your free time. Who doesn’t like extra money? So here are a few ways to get started. (more…)

    December 7, 2017
  • Adding an SSL certificate to EC2

    Buy Certificates

    Buy your SSL certificate from a provider. I got mine from namecheap.
    Transfer your SSL certificate bundle files onto your server, for example into /ssl/ folder. (more…)

    December 1, 2017
  • Optimize your website in 5 minutes

    Getting a good score in Google Pagespeed Insights is very important, as it is a main factor for good User Experience (UX).

    Minify Js, HTML & CSS

    Minifying the Javascript, HTML and CSS helps reduce the page load times drastically.

    Optimize Images

    Optimize your images before hosting them online and using them on your site. You can optimize images online for free here. (more…)

    December 1, 2017
  • Monitor EC2 using crontab

    If you want to monitor your Amazon Web Services (AWS) Elastic Cloud Compute (EC2) instances using crontab and AWS SDK. Here in this example I have chosen php (7.1).

    Install AWS SDK

    Install composer

    composer require aws/aws-sdk-php

    (more…)

    November 30, 2017
  • Monitor services (Apache, MySQL, HHVM) using crontab

    Want to ensure that your services (Apache, MySQL, HHVM) on your linux instance are running 24*7? Then you can use crontab for that. This job runs every minute to check the status of the service and if it is not running then, it starts the service. (more…)

    November 29, 2017
  • Redirect users based on the HTTP Request Header – Node.js

    For this example it is recommended that you have the latest most stable release of Node.js + npm installed.
    Now you will need express to run a simple server. (more…)

    November 24, 2017
  • Create an Observable the right way – Angular 5

    Using a subject to create an observable is the recommended method of inter-component communication by the official angular documentation.
    The following code was tested with Angular 5.2.2. (more…)

    November 22, 2017
  • Add Google Analytics to WordPress in 2 minutes

    The following is the fastest way to integrate Google Analytics with your self hosted WordPress website without using any external applications or plugins. By injecting plain javascript into your tag, you won’t have to worry about incurring the overhead of adding a new plugin to your site for a small 2 line code addition. (more…)

    November 18, 2017
←Previous Page
1 … 15 16 17 18 19 … 28
Next Page→