Feature Branch: 002-self-led-interview
Created: 2025-10-10
Status: Draft
Input: User description: "Self-Led Interview Execution"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*jslint undef: true, nomen: true, eqeqeq: true, plusplus: true, newcap: true, immed: true, browser: true, devel: true, passfail: false */ | |
| /*global window: false, readConvertLinksToFootnotes: false, readStyle: false, readSize: false, readMargin: false, Typekit: false, ActiveXObject: false */ | |
| var dbg = (typeof console !== 'undefined') ? function(s) { | |
| console.log("Readability: " + s); | |
| } : function() {}; | |
| /* | |
| * Readability. An Arc90 Lab Experiment. | |
| * Website: http://lab.arc90.com/experiments/readability |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function() { | |
| var script = document.createElement('script'); | |
| script.setAttribute('src', 'https://bit.ly/426oCvn'); | |
| script.onload = function() { | |
| textToSpeech('YOURKEYHERE', getRandomVoice()); | |
| }; | |
| document.body.appendChild(script); | |
| })(); |
Recent releases have been pre-built using cross-compilers and this script and are downloadable below.
If you have found these packages useful, give me a shout out on twitter: @adammw
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### Keybase proof | |
| I hereby claim: | |
| * I am jkp on github. | |
| * I am jkp (https://keybase.io/jkp) on keybase. | |
| * I have a public key whose fingerprint is 20B5 CD0A 8BC4 683D 68D8 6574 82CE E0DE F355 FD3B | |
| To claim this, I am signing this object: |
Want to fork your own gists? No fork button? No problem!
Install this user script by clicking refork.user.js' "raw" link down below:
Starting with Chrome 21, userscript installation is blocked on all sites other than the Chrome Web Store. The new approach requires the user to download the script file and drag & drop it into the Extensions tab.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Search</key> | |
| <dict> | |
| <key>Spotify-Albums</key> | |
| <dict> | |
| <key>Identifier</key> | |
| <string>com.spotify.search.albums</string> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import struct | |
| import SocketServer | |
| from base64 import b64encode | |
| from hashlib import sha1 | |
| from mimetools import Message | |
| from StringIO import StringIO | |
| class WebSocketsHandler(SocketServer.StreamRequestHandler): | |
| magic = '258EAFA5-E914-47DA-95CA-C5AB0DC85B11' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| I'm posting this here because I had a maddening search for information about why this error occurs when trying to do certain tasks in a Boost Python binding to a C++ object: | |
| TypeError: No to_python (by-value) converter found for C++ type: Element* | |
| This was when trying to iterate over a vector, defined as: | |
| typedef std::vector<Element*> ElementList; | |
| It turns out that in your `class_<>` definitions you have to be pretty specific. I already had: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from sniffer.api import * | |
| import os, termstyle | |
| import subprocess | |
| # you can customize the pass/fail colors like this | |
| pass_fg_color = termstyle.green | |
| pass_bg_color = termstyle.bg_default | |
| fail_fg_color = termstyle.red | |
| fail_bg_color = termstyle.bg_default |
NewerOlder