This file contains 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 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]); |
This file contains 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
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 |
OlderNewer