Skip to main content

Posts

Showing posts with the label learned

Today I learned

Today I learned Excel tips: Delete empty rows: 1. Highlight column A 2. Press F5, Select special 3. Select Blanks 4. Hit Ok and 1st cell of each blank row will be selected 5. Delete -> Delete Sheet Rows (note: column A is used as other cells may have merged contents) Find duplicate cells: 1. highlight column 2. Conditional formatting 3. Highlight Cell Rules -> Duplicate Values... 4. Select a color and Ok download  file  now

Today I learned Mixes Content Blocking

Today I learned Mixes Content Blocking Today I tried working on an almost live site that I built on our development server. On the live server, the embedded google fonts just didnt work. The problem was that on the live server the site is only available through https://, while on the development server it was through http://. The google font api was called upon like this: <link href="https://fonts.googleapis.com/css?family=Armata:regular&subset=latin,latin-ext" rel="stylesheet" type="text/css"> I had to change the http to https in the href, because modern browsers block mixed active content by deafult. You can read about it here: https://blog.mozilla.org/tanvi/2013/04/10/mixed-content-blocking-enabled-in-firefox-23/ download  file  now