Skip to content

Instantly share code, notes, and snippets.

View visualkom's full-sized avatar

Antonio La Scala visualkom

View GitHub Profile
@visualkom
visualkom / ie67891011-css-hacks.txt
Created July 1, 2021 09:26 — forked from ricardozea/ie67891011-css-hacks.txt
IE CSS hacks - IE6, 7, 8, 9, 10, 11
IE6 Only
==================
_selector {...}
IE6 & IE7
==================
*html or { _property: }
IE7 Only
==================
@visualkom
visualkom / functions.php
Created December 19, 2020 17:01 — forked from paulcollett/functions.php
Remove Yoast HTML Comments “This site is optimized with the Yoast WordPress SEO plugin”
// For Yoast SEO Plugin Version: 14.1+ add to your Wordpress Theme's functions.php...
// Remove All Yoast HTML Comments
// https://gist.github.com/paulcollett/4c81c4f6eb85334ba076
// Credit @devendrabhandari (https://gist.github.com/paulcollett/4c81c4f6eb85334ba076#gistcomment-3303423)
add_filter( 'wpseo_debug_markers', '__return_false' );
// For Yoast SEO Plugin Version: < 14.1 add to your Wordpress Theme's functions.php...
@visualkom
visualkom / wget
Last active May 2, 2020 15:40
[WGET Site Grab] Downloading an Entire Web Site with wget #wget
# Compact
wget -mkEpnp -nc http://example.org
# m = mirror
# k = convert-links
# E = adjust-extension
# p = page-requisites
# np = no-parent
# nc = no-clobber
@visualkom
visualkom / CodeHubAuthorize
Last active December 5, 2019 15:56
[CodeHub login to GitHub account on iOS 9] (https://github.com/CodeHubApp/CodeHub/issues/471) #github
Authenticate the application with your GitHub user account just by visiting the following link in your desktop browser:
https://github.com/login/oauth/authorize?client_id=72f4fb74bdba774b759d&redirect_uri=http%3A%2F%2Fdillonbuchanan.com%2F&scope=user%3Afollow%2Crepo%2Cnotifications%2Cgist%2Cread%3Aorg
Authenticating with it will redirect you to the developer personal site with a code, but you can ignore that since the code for the browser is worthless.
Then go into the CodeHub app and authenticate with your username.
Shortcuts
---------------------------------------------------
Command-Shift-3: Take a screenshot of the screen, and save it as a file on the desktop
Command-Shift-4, then select an area: Take a screenshot of an area and save it as a file on the desktop
Command-Shift-4, then space, then click a window: Take a screenshot of a window and save it as a file on the desktop
Command-Control-Shift-3: Take a screenshot of the screen, and save it to the clipboard
Command-Control-Shift-4, then select an area: Take a screenshot of an area and save it to the clipboard
Command-Control-Shift-4, then space, then click a window: Take a screenshot of a window and save it to the clipboard
The following keys can be held down while selecting an area (via Command-Shift-4 or Command-Control-Shift-4):
@visualkom
visualkom / db-convert.php
Last active December 5, 2019 16:05
[Change MySQL db from utf8mb4 to utf 8] Change MySQL db collation from utf8mb4/utf8mb4_unicode_ci to utf8/utf8_general_ci #mysql
<!DOCTYPE html>
<html>
<head>
<title>DB-Convert</title>
<style>
body {
font-family:"Courier New", Courier, monospace;"
}
</style>
</head>
@visualkom
visualkom / ROT13.scpt
Last active December 5, 2019 16:27
[ROT13 service for Mac OS X] #mac #mail #html
# ROT13 service for Mac OS X
#
# Adds a ROT13 option to the text selection context menu in all apps
#
# Use Automator.app to create a new service, and then select the Run AppleScript
# action. Select the "Output replaces selected text" option. Paste this code in
# to the text box, and save as ROT13. Now switch to a new app, select some text,
# and open the context menu to find the new option.
#
# Based on code found at:
@visualkom
visualkom / CSS code to make the WordPress VideoJS plugin responsive
Last active December 5, 2019 15:59 — forked from jameshibbard/gist:3312803
[CSS code to make the WordPress VideoJS plugin responsive] #css #wp
.videoWrapper {
position: relative;
padding-bottom: 56.25%; /* video dimensions - height/width */
padding-top: 30px;
height: 0;
z-index: 1000;
}
video {
position: absolute !important;
@visualkom
visualkom / YouTube Thumbnails size
Last active June 9, 2022 08:09
[Get a thumbnail for a Youtube video using the video ID] #video
Default Thumbnail Image, Full-Size (480x360):
http://img.youtube.com/vi/<video-id>/0.jpg
1st Thumbnail Image, Small (120x90):
http://img.youtube.com/vi/<video-id>/1.jpg
2nd | Default Thumbnail Image, Small (120x90):
http://img.youtube.com/vi/<video-id>/2.jpg
3rd Thumbnail Image, Small (120x90):
@visualkom
visualkom / foundation_and_overrides.scss
Last active December 5, 2019 16:13
[Foundation 5 SCSS Defaults] (foundation-rails 5.3.0.1) #css
// Foundation by ZURB
// foundation.zurb.com
// Licensed under MIT Open Source
//
// FOUNDATION SETTINGS
//
// This is the default html and body font-size for the base rem value.
// $rem-base: 16px;