Skip to content

Instantly share code, notes, and snippets.

View robwalkerco's full-sized avatar

Rob Walker robwalkerco

View GitHub Profile
value: 97001a01f7070d00fafffbff418e9c001a01f6070e00fafffaff418e98002201f3071000fefffaff408e98002001f3071000fefff9ff418e91002201f6070e00fdfffbff3d8e95002401f5070e00fcfffcff3f8e98002401f5070f00fefffaff408e96002401f40711000000faff3f8e9e002601f4071000fffffaff408e9e002601ef070d00fbfffcff3d8e9c002501f7070c00fafffcff438e9d002a01fe070d00fcfffbff3f8e9a002a01fa071100fffffaff448e9c002901f30711000300faff408e96002601f1070f000100fcff428e95002501ee070c00fdfffcff3d8e98002201f4070c00fbfffbff3d8e99002301f607
value: 0c00fdfffbff3e8e94002201fb070e00fffffbff3f8e96002201f10710000100fbff408e9c002101ef0711000200fbff408e96001d01f0070e000000fbff448e96002201f1070b00fcfffcff428e98001e01f3070b00fafffcff428e9b001b01f8070c00fbfffcff418e93001b01f8071000fffffcff3e8e8f002301f10713000200faff3f8e92002001e90712000000faff408e93002101ef070e00fcfffbff448e91002001f2070c00fafffbff418e98002201f8070d00fafffcff448e99002601fc071100fdfffbff3d8e96001f01f60711000100f9ff3e8e99001d01f20713000000fbff418e96002301ee071200fffffbff
value: 428e
value: 98002701f0070
17:22:31.361 F8FFA600F3070C000F0003002C8EFEFFA200F20701000A0005002E8EFEFFA000F20702000A0005002F8EF9FFA700F4070F000E0004002F8EF9FFA200EF070C000E0005002E8EFDFFA200FC0700000A0005002F8E0200A000F80703000A0006002C8EFAFFA100F6070C000E0004002F8EFDFFA000F0070B000E0004002F8EFCFFA300F20701000A000500328EFDFFA100F50705000B0005002F8EFAFF9F00F3070D000E0004002B8EF9FFA200F5070B000D0004002D8EFAFFA100FA0700000A000500308EFEFFA100FC0701000B0005002E8EFBFF9E00F7070D000F0003002F8EFAFF9E00F0070E000E000400318EFBFF9C00EB07
17:22:31.362 02000A0006002F8EF9FFA100F60702000B0005002D8EF8FFA200F5070A000E0004002B8EFBFF9F00F2070E000D0004002C8EFBFF9F00F50704000A0003002E8EFCFF9E00F20703000A0004002C8EFCFFA100F5070A000D0004002D8EFCFFA400F3070B000D0004002F8EFAFFA100F30707000B0005002C8EFDFF9F00F10705000B0004002C8EFFFFA200EF070A000E0004002F8EFDFFA100F50709000D0003002D8E0000A100F80703000A0004002F8EFFFFA200F90702000B0005002E8EFEFFA000EF070B000E0004002C8EFCFF9C00F1070B000F0004002D8EF8FFA200F20704000A0004002F8EFDFF9D00F00702000A000500
17:22:31.363 2F8
2020-01-31 14:18:21.376 2565-2597/com.blemobileapp D/BluetoothGatt: setCharacteristicNotification() - uuid: 18fa1408-c7a6-4f8d-af28-5c57a00775b2 enable: true
2020-01-31 14:18:21.389 2565-2597/com.blemobileapp D/RxBle#ConnectionOperationQueue: QUEUED DescriptorWriteOperation(153169223)
2020-01-31 14:18:21.391 2565-2919/com.blemobileapp D/RxBle#ConnectionOperationQueue: STARTED DescriptorWriteOperation(153169223)
2020-01-31 14:18:21.430 2565-2597/com.blemobileapp D/BluetoothGatt: setCharacteristicNotification() - uuid: 18fa140a-c7a6-4f8d-af28-5c57a00775b2 enable: true
2020-01-31 14:18:21.440 2565-2597/com.blemobileapp D/RxBle#ConnectionOperationQueue: QUEUED DescriptorWriteOperation(81436866)
2020-01-31 14:18:21.444 2565-2597/com.blemobileapp D/RxBle#ConnectionOperationQueue: QUEUED CharacteristicWriteOperation(83933712)
2020-01-31 14:18:21.605 2565-3142/com.blemobileapp D/RxBle#BluetoothGatt$1: onDescriptorWrite descriptor=00002902-0000-1000-8000-00805f9b34fb status=0
2020-01-31 14:18:21.609 2565-2919/c
@robwalkerco
robwalkerco / zenfolio-photo-downloader.js
Last active December 14, 2023 08:14
Zenfolio photo downloader
var paths = []
var count = 1
// Before running this script, you will need to scroll
// to the bottom of the zenfolio page to ensure all the
// images in the dom
function openAllPhotos() {
// Collect the paths for each photo
$('.pv-inner img:first-child').each((index, image) => {
paths.push(image.style.backgroundImage.split('"')[1])
@robwalkerco
robwalkerco / AndroidFileStorage.js
Created April 5, 2017 14:10
An alternative redux-persist storage for React Native Android to get around the database item size limit - https://github.com/rt2zz/redux-persist/issues/284
/**
* @flow
*/
import RNFetchBlob from 'react-native-fetch-blob'
const DocumentDir = RNFetchBlob.fs.dirs.DocumentDir
const storagePath = `${DocumentDir}/persistStore`
const encoding = 'utf8'