Just 3 lines of CSS!
See the Pen KvwxXR by Abdullah Yahya (@javanigus) on CodePen.
Just 3 lines of CSS!
See the Pen KvwxXR by Abdullah Yahya (@javanigus) on CodePen.
If you have a logo, for example, that is a transparent PNG or SVG, you can change its color using CSS in the following ways:
Grayscale: filter: grayscale(100%);
Solid Gray: filter: contrast(0);
Solid Black: filter: contrast(0) brightness(0);
Solid White: filter: contrast(0) brightness(2);
You can adjust the contrast value between 0 and 1 to achieve different levels of darkness.
Continue reading Notes from JS Conference Workshop: Extreme Web Performance
Continue reading Notes from JS Conference Workshop: Mastering Chrome Developer Tools
Cloud 9 already comes with Git, PHP and Composer.
——————–
EXAMPLE FOLDER STRUCTURE
——————–
/home/ubuntu/website1
/home/ubuntu/website2
/home/ubuntu/website3
/home/ubuntu/PHPloy
——————–
INSTALL PHPLOY
——————–
Go to https://github.com/banago/PHPloy
Download and unzip the repo
Create a folder called “PHPloy” in Cloud9 in the “workspace” folder so that that folder is a sibling of your website folder(s). Continue reading Deploy Cloud9 Changes via S/FTP Using Git and PHPloy
Search engines, particularly Google. consider two primary things when it comes to search engine ranking:
This one is easy. Just write relevant content. The more, the better. As long as it’s content people actually care about.
This is not easy because you depend on getting other reputable websites linking back to you. Below are different ways to get backlinks. This list will be updated as new discoveries are made.
Continue reading SEO: Free, Credible Backlinks to Your Website
—————-
Requirements
—————-
* Git 1.8+
* PHP 5.5+
* Update the Windows paths below to match your system
—————-
Install PHP
—————-
If you don’t have PHP, follow the instructions at http://windows.php.net/
—————-
Install Git
—————-
If you don’t have Git, you can install GitHub Desktop for Windows. Download and install the application from https://desktop.github.com/
This will create a GitHub folder at C:\Users\David\Documents\GitHub in which you can put your website files. Continue reading WINDOWS: PHPloy to incrementally deploy Git-Based file changes over S/FTP
https://code.tutsplus.com/tutorials/how-to-scrape-web-pages-with-nodejs-and-jquery–net-22478
This tutorial shows how to use Node.js with the Express web server framework, the Jade template engine, and the JSDOM parser. You may prefer the Handlebars template engine. This tutorial also includes use of the node “request” and “url” modules.
Continue reading Some Options for Scraping Web Pages