Skip to content

Instantly share code, notes, and snippets.

View Agnostic's full-sized avatar

Gilberto Avalos Agnostic

View GitHub Profile
@Agnostic
Agnostic / is-balanced.js
Created June 29, 2015 23:33
Is a string balanced? [Javascript]
function isBalanced(string) {
var balanced = true;
var parts = string.split('');
var openBraces = /{|\[|\(/;
var closeBraces = /}|\]|\)/;
var stack = [];
for (var i = 0; i < parts.length; i++) {
if (parts[i].match(openBraces)) {
stack.push(parts[i]);
@Agnostic
Agnostic / gist:826bf7985ebaebeebf5d5f51d7c94110
Created June 17, 2016 21:12
Interview ID - 57645f3029e1bcc02c000254
f80681c41c43b41fea575b8ae8d8dc8e: {locked_at : 2016-06-17 21:08:15 UTC}
f80681c41c43b41fea575b8ae8d8dc8e: {keep_alive_at : 2016-06-17 21:08:15 UTC}
f80681c41c43b41fea575b8ae8d8dc8e: {last_error : }
f80681c41c43b41fea575b8ae8d8dc8e: {active_at : }
f80681c41c43b41fea575b8ae8d8dc8e: {created_at : 2016-06-17 21:08:15 UTC}
f80681c41c43b41fea575b8ae8d8dc8e: {job : {"params"=>{"user_id"=>"56c37cf4f7bb36d06a000071", "organization_id"=>"56c37b61f7bb36d06a00003a", "event"=>"schedule_live_interview", "timestamp"=>1466197695}, "class"=>"Jobs::Intercom::CreateEventJob"}}
f80681c41c43b41fea575b8ae8d8dc8e: {queue_options : {}}
f80681c41c43b41fea575b8ae8d8dc8e: SUCCESS: Created event schedule_live_interview for organization 56c37b61f7bb36d06a00003a successfuly
f80681c41c43b41fea575b8ae8d8dc8e: Completed job 576466bf29e1bc39da00000c
f80681c41c43b41fea575b8ae8d8dc8e: Harakiri