I hereby claim:
- I am walesmd on github.
- I am walesmd (https://keybase.io/walesmd) on keybase.
- I have a public key whose fingerprint is B810 4894 0842 8ED7 C155 9765 6F76 BD21 17ED 0D34
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
/* This example results in | |
* undefined is not a function | |
*/ | |
doLog(); | |
var doLog = function() { | |
console.log('Log!'); | |
} |
// JavaScript code is run in two passes, the first pass | |
// does all the function declarations and determines the | |
// variables. The second pass actually executes your code. | |
// Example 1: Function Declaration | |
// Function declarations will always work because | |
// declarations are determined on the first pass and when | |
// you actually call the function is performed on the | |
// second pass. | |
foo(); |
I was chasing down another issue (slow "Save As") and thought these two issues may have been related (with QuickLook being the common broken link). Unfortunately, my "Save As" dialog is still miserably slow on the initial load; but IconServicesAgent hasn't gone above 30MB and he rarely makes an appearance in the Console!
Some of these steps may not be necessary, but here are all of the steps I took that inadverdently put IconServicesAgent back in its place. Note: all commands are a single-line, if they appear to be multiple that's just the forum formatting.
Check for any QuickLooks related .plist files. In a terminal: mdfind com.apple.quicklook. -name .plist
I only had files at the system level (specifically within /System/Library/LaunchAgents/). If you have others, modify the directions below to take that into account (re-introducing plist files from the system level back up to the user).
Make some temporary directories to store these plist files, just in case: mkdir ~/tmp-quicklook
# CanIUse.com Command Line Search Utility | |
# Michael Wales, http://github.com/walesmd | |
# | |
# A very basic bash function that quickly searches http://caniuse.com/ | |
# | |
# Examples: | |
# caniuse | |
# caniuse border-radius | |
# caniuse "alpha transparency" counters "canvas drawings" html svg |
{ | |
"datacenters": [{ | |
"id": "1", | |
"name": "Albany Center", | |
"lat": "42.64957", | |
"lng": "-73.77459", | |
"city": "Albany", | |
"state": "NY", | |
"zip": "12208", | |
"createdAt": "2013-06-24", |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no' /> | |
<style> | |
body { margin:0; padding:0; } | |
#map { position:absolute; top:0; bottom:0; width:100%; } | |
.marker-properties { | |
border-collapse:collapse; |
# MariaDB 10.0 CentOS repository list - created 2013-05-31 19:29 UTC | |
# http://mariadb.org/mariadb/repositories/ | |
[mariadb] | |
name = MariaDB | |
baseurl = http://yum.mariadb.org/10.0/centos6-amd64 | |
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB | |
gpgcheck=1 |