Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View ralphtheninja's full-sized avatar
🏠
Working from home

ralphtheninja

🏠
Working from home
View GitHub Profile
function onGotAllSlices(docdataSlices, access_token) {
updateStatus('handle all slices');
var docdata = [];
for (var i = 0; i < docdataSlices.length; i++) {
docdata = docdata.concat(docdataSlices[i]);
}
var fileContent = new String();
for (var j = 0; j < docdata.length; j++) {
fileContent += String.fromCharCode(docdata[j]);
}
test
> utp-native@2.1.3 install /tmp/duuuuude/node_modules/utp-native
> node-gyp-build
node-gyp-build env { GJS_DEBUG_TOPICS: 'JS ERROR;JS LOG',
npm_config_cache_lock_stale: '60000',
npm_config_ham_it_up: '',
TMUX: '/tmp/tmux-1000/default,4254,0',
npm_package_dependencies_timeout_refresh: '^1.0.0',
npm_config_legacy_bundling: '',
# start and stop
ok 1 context database is not open
EVENT info First time init: creating tables in "/tmp/94cd66f6a67b6918946abc23d630f05e/db.sqlite"
.
EVENT info Opened "/tmp/94cd66f6a67b6918946abc23d630f05e/db.sqlite".
---> mvbox_thread_func
---- before dc_perform_mvbox_fetch
EVENT info INBOX-jobs started...
EVENT info SMTP-jobs started...
EVENT info SMTP-jobs ended.
#!/bin/sh
gnuplot <<EOF
reset
set terminal pngcairo truecolor enhanced font "Ubuntu Mono,13" size 1920, 1080
set output "/tmp/5mbench.png"
set datafile separator ','
set logscale y
set nologscale y2
#!/bin/bash
#
# /etc/rc.d/init.d/xvfbd
#
# chkconfig: 345 95 28
# description: Starts/Stops X Virtual Framebuffer server
# processname: Xvfb
#

src/dc_smtp.c:180

mailsmtp_auth() returns MAILSMTP_ERROR_AUTH_LOGIN


libs/libetpan/src/low-level/smtp/mailsmtp.c:1060

returns result from mailsmtp_auth_type()

comparing displayname to addr
comparing displayname to mail_server
comparing displayname to mail_user
comparing displayname to mail_pw
comparing displayname to mail_portsend_server
comparing displayname to send_user
comparing displayname to send_pw
comparing displayname to send_portserver_flags
comparing displayname to imap_folder
comparing displayname to displaynameselfstatus
@ralphtheninja
ralphtheninja / travis-debug.sh
Created November 9, 2018 00:50
Extracted travis curl command into script
#!/bin/bash
curl -s -X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Travis-API-Version: 3" \
-H "Authorization: token $TRAVIS_TOKEN" \
-d "{\"quiet\": true}" \
https://api.travis-ci.org/job/$TRAVIS_JOB/debug

:heavy_heart_exclamation_mark_ornament: