Location: Tyson's Corner, VA
TL;DR
ID.me is seeking a talented Ruby on Rails developer to add to our team. Applicants should have 5+ years of experience developing for the web with a solid command of Ruby, Rails and related technologies.
About ID.me
| def changeUrl = "https://commondatastorage.googleapis.com/chromium-browser-snapshots/Linux_x64/LAST_CHANGE" | |
| def latest = changeUrl.toURL().text | |
| println "Latest Revision: ${latest}" |
| def changeUrl = "https://commondatastorage.googleapis.com/chromium-browser-snapshots/Linux_x64/LAST_CHANGE" | |
| def latest = changeUrl.toURL().text | |
| println "Latest Revision: ${latest}" |
| <script> | |
| if(!window.location.query) { | |
| window.location.query = function(){ | |
| var map = {}; | |
| if ("" != this.search) { | |
| var groups = this.search.substr(1).split("&"), i; | |
| for (i in groups) { | |
| i = groups[i].split("="); |
| /** | |
| * $(document).ready() | |
| **/ | |
| $(document).ready(function() { | |
| // Handler for .ready() called. | |
| }); | |
| $(function() { | |
| // Handler for .ready() called. | |
| }); |
| NSUInteger lengthA = [a length]; | |
| NSUInteger lengthB = [b length]; | |
| NSUInteger keyLength = lengthA + lengthB + 1; | |
| assert(keyLength * sizeof(unichar) < SOME_REASONABLE_MAXIMUM_FOR_STACK_ALLOCATION); | |
| unichar cat[keyLength]; | |
| [a getCharacters:cat range:NSMakeRange(0, lengthA)]; | |
| cat[lengthA] = '.'; | |
| [b getCharacters:cat + lengthA + 1 range:NSMakeRange(0, lengthB)]; | |
| NSString *key = [[NSString alloc] initWithCharactersNoCopy:cat length:keyLength freeWhenDone:NO]; | |
| ... [dict objectForKey:key]; |
| test("Using a real child actor") { | |
| val underTest = TestActorRef(new ParentActor(actorFactory => actorFactory.actorOf(Props[ChildActor]))) | |
| underTest ! "Go do some work" | |
| // Can't test this but shows how to crate a ParentActor in production code | |
| } |
| <?php | |
| /* | |
| * Plugin Name: EDD Double Pagination | |
| */ | |
| function pw_edd_duplicate_pagination() { | |
| ?> | |
| <script type="text/javascript"> | |
| jQuery(document).ready(function($) { |
| package ; | |
| import cpp.Lib; | |
| import haxe.Int64; | |
| /** | |
| * A square root approximator. | |
| * | |
| * @author lemon42 | |
| */ |
| cordova plugin add https://github.com/phonegap/phonegap-facebook-plugin.git --variable APP_ID="YOUR_FB_APP_ID" --variable APP_NAME="YOUR_APP_NAME" |