
epogue
Member-
Content Count
6 -
Joined
-
Last visited
-
Days Won
1
epogue last won the day on January 30 2013
epogue had the most liked content!
About epogue
-
Rank
Newbie
-
It looks like the latest 1Password 4 beta introduced a new preference that exports a bookmarks JSON file that Alfred can read.
-
Tyler Eich reacted to a post in a topic: Colors—convert color formats & access the OS X color panel
-
Colors—convert color formats & access the OS X color panel
epogue replied to Tyler Eich's topic in Share your Workflows
This is so awesome! Thank you! -
Yep, I'm having the same problem.
- 57 replies
-
- Wolfram|Alpha
- wolfram
-
(and 1 more)
Tagged with:
-
epogue reacted to a post in a topic: Drill-Down Menus: Movie search (OMDb-API) & Alfred Repo
-
Jono reacted to a post in a topic: Pinboard Search (beta?)
-
drking reacted to a post in a topic: Pinboard Search (beta?)
-
It's no problem. On line 30 in extension_utils.php, replace $c->addChild( $key, $b[$key] ); with $c->$key = $b[$key]; Then, in search.php, on lines 38 - 41, remove the methods (utf8_encode and htmlentities) wrapping the attribute calls. For instance, instead of 'uid' => utf8_encode ( htmlentities ( $bookmark->url ) ), it should read: 'uid' => $bookmark->url,
-
anas reacted to a post in a topic: Pinboard Search (beta?)
-
I found a possible fix that seems to be holding up to whatever weird entities I throw at it. I looked it up, and apparently SimpleXML will automatically do all the escaping it needs when using the assignment operator instead of addChild. Therefore, I tweaked the arrayToXml() function in extension_utils, replacing: $c->addChild( $key, $b[$key] ); with: $c->$key = $b[$key]; and deleted the wrapping utf8_encode(htmlentities()) calls in search.php. Hope this works for you guys!
-
Search Safari and Chrome Tabs [Updated Feb 8, 2014]
epogue replied to ClintonStrong's topic in Share your Workflows
This is awesome! Thank you.