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
import os | |
import json | |
import csv | |
import argparse | |
# Function to recursively find JSON files | |
def find_json_files(base_directory): | |
json_files = [] | |
for root, _, files in os.walk(base_directory): | |
for file in files: |
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
const CURRENT_PAGE='homepage' // whatever current page and/or pod id is | |
const poller=(page) => { | |
console.log(page) | |
return setInterval(() => { | |
let faux_segment_event={ | |
'event': 'pods_heartbeat', | |
'page': page, | |
'timestamp': new Date().toUTCString(), | |
} | |
console.log('❤️🩺',faux_segment_event) |
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
2016-11-13 08:33:12.083222 Hisgeogram[7447:1674757] [Accessibility] ****************** Loading GAX Client Bundle **************** | |
2016-11-13 08:33:12.145147 Hisgeogram[7447:1674757] Apache Cordova native platform version 4.1.1 is starting. | |
2016-11-13 08:33:12.145621 Hisgeogram[7447:1674757] Multi-tasking -> Device: YES, App: YES | |
2016-11-13 08:33:12.182653 Hisgeogram[7447:1674757] Using UIWebView | |
2016-11-13 08:33:12.183502 Hisgeogram[7447:1674757] [CDVTimer][handleopenurl] 0.043988ms | |
2016-11-13 08:33:12.184258 Hisgeogram[7447:1674757] [CDVTimer][intentandnavigationfilter] 0.708044ms | |
2016-11-13 08:33:12.184326 Hisgeogram[7447:1674757] [CDVTimer][gesturehandler] 0.029981ms | |
2016-11-13 08:33:12.223696 Hisgeogram[7447:1674757] [CDVTimer][photolibrary] 39.330006ms | |
2016-11-13 08:33:12.244399 Hisgeogram[7447:1674757] [CDVTimer][splashscreen] 20.635962ms | |
2016-11-13 08:33:12.245151 Hisgeogram[7447:1674757] [CDVTimer][keyboard] 0.671983ms |
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 fixOrientation(url, cb) { | |
// this function takes an s3 image | |
// check if it needs to be rotated | |
// if so, it creates a new version rotated | |
// uploads to S3 | |
// and passes the url back | |
var exif = require('exif').ExifImage; | |
var easyimg = require('easyimage'); | |
var path = require('path'), fs = require('fs-extra'), request = require('request'); |
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<widget id="co.ifwe.heartbeat.app" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | |
<name>Heartbeat</name> | |
<description> | |
A minimal way to stay connected and feel loved. | |
</description> | |
<author email="[email protected]" href="http://ionicframework.com/"> | |
if(we) | |
</author> | |
<content src="index.html"/> |
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
var id = Flash.create('success', '<strong>Well done!</strong> You successfully read this important alert message.', 5000, { | |
class: 'custom-class', | |
id: 'custom-id' | |
}, true); |
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
var d3tree = Convert(tree, 0, []); | |
var lineage = []; | |
function Convert(obj_to_convert, level, lineage) { | |
var new_obj = []; | |
delete obj_to_convert['null']; | |
console.log('level', level); | |
level++; |
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
// Module dependencies. | |
var async = require('async'); | |
var _ = require('underscore'); | |
var application_root = __dirname, | |
path = require('path'); //Utilities for dealing with file paths | |
var request = require('request'); | |
var Q = require('q'); | |
var POP3Client = require("poplib"); | |
var MailParser = require("mailparser").MailParser; |
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 mutualSubscribe(source, friend, callback) { | |
var XMPP = require('stanza.io'); | |
var friend_jid = friend.toLowerCase() + '@xxxx.me'; | |
var source_jid = source.toLowerCase() + '@xxxx.me'; | |
var source_client = XMPP.createClient({ | |
jid: source_jid, | |
password: 'xyz', | |
transport: 'bosh', | |
boshURL: config.get('xmpp.bosh_url') |
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 mutualSubscribe(source, friend, callback) { | |
var XMPP = require('stanza.io'); | |
var friend_jid = friend.toLowerCase() + '@idelog.me'; | |
var source_jid = source.toLowerCase() + '@idelog.me'; | |
var source_client = XMPP.createClient({ | |
jid: source_jid, | |
password: source.split("").reverse().join(""), | |
transport: 'bosh', |
NewerOlder