This file contains hidden or 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 ab2str(buf) { | |
return String.fromCharCode.apply(null, new Uint8Array(buf)); | |
} | |
function str2ab(str) { | |
var buf = new ArrayBuffer(str.length*2); // 2 bytes for each char | |
var bufView = new Uint8Array(buf); | |
for (var i=0, strLen=str.length; i<strLen; i++) { | |
bufView[i] = str.charCodeAt(i); | |
} |
This file contains hidden or 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
diff --git a/.gitignore b/.gitignore | |
index 1055458..7358050 100644 | |
--- a/.gitignore | |
+++ b/.gitignore | |
@@ -8,3 +8,4 @@ Coverage | |
*.gcda | |
library/polarssl.info | |
/build-nacl-* | |
+/build-nacl-* | |
diff --git a/configs/config-ccm-psk-tls1_2.h b/configs/config-ccm-psk-tls1_2.h |
This file contains hidden or 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
<link rel="import" href="../components/polymer/polymer.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
</style> | |
</template> | |
<script> |
This file contains hidden or 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
Making all in vector | |
make[3]: Entering directory `/home/matbee2/dev/audioconverter.js/ffmpeg.js/lame/libmp3lame/vector' | |
/bin/bash ../../libtool --tag=CC --mode=compile /home/matbee2/emscripten/emcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I. -I../../libmp3lame -I../../mpglib -I../.. -O3 -ffast-math -funroll-loops -Wall -MT xmm_quantize_sub.lo -MD -MP -MF .deps/xmm_quantize_sub.Tpo -c -o xmm_quantize_sub.lo xmm_quantize_sub.c | |
libtool: compile: /home/matbee2/emscripten/emcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I. -I../../libmp3lame -I../../mpglib -I../.. -O3 -ffast-math -funroll-loops -Wall -MT xmm_quantize_sub.lo -MD -MP -MF .deps/xmm_quantize_sub.Tpo -c xmm_quantize_sub.c -o xmm_quantize_sub.o | |
xmm_quantize_sub.c:65:34: warning: implicit declaration of function '_mm_loadu_ps' is invalid in C99 [-Wimplicit-function-declaration] | |
const __m128 vec_fabs_mask = _mm_loadu_ps(&fabs_mask._float[0]); | |
^ | |
xmm_quantize_sub.c:65:18: error: initializing 'const __m12 |
This file contains hidden or 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
Sep 23 12:08:04 hp rsyslogd: [origin software="rsyslogd" swVersion="5.8.6" x-pid="650" x-info="http://www.rsyslog.com"] rsyslogd was HUPed | |
Sep 23 12:08:04 hp anacron[677]: Job `cron.daily' terminated (mailing output) | |
Sep 23 12:08:04 hp anacron[677]: Can't find sendmail at /usr/sbin/sendmail, not mailing output | |
Sep 23 12:08:04 hp anacron[677]: Normal exit (1 job run) | |
Sep 23 12:08:15 hp avahi-daemon[733]: Invalid response packet from host fe80::b55a:e7ab:6339:cf81. | |
Sep 23 12:09:55 hp avahi-daemon[733]: Invalid response packet from host fe80::b55a:e7ab:6339:cf81. | |
Sep 23 12:11:34 hp avahi-daemon[733]: Invalid response packet from host fe80::b55a:e7ab:6339:cf81. | |
Sep 23 12:12:56 hp kernel: [ 8330.612171] CPU0: Package power limit notification (total events = 2631) | |
Sep 23 12:12:56 hp kernel: [ 8330.612176] CPU2: Package power limit notification (total events = 2634) | |
Sep 23 12:12:56 hp kernel: [ 8330.612180] CPU3: Package power limit notification (total events = 2630) |
This file contains hidden or 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
[ 0.000000] Initializing cgroup subsys cpuset | |
[ 0.000000] Initializing cgroup subsys cpu | |
[ 0.000000] Linux version 3.2.0-53-generic (buildd@allspice) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #81-Ubuntu SMP Thu Aug 22 21:01:03 UTC 2013 (Ubuntu 3.2.0-53.81-generic 3.2.50) | |
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-53-generic root=UUID=3edc6101-c9cf-4801-9059-389e3464cc1c ro quiet splash | |
[ 0.000000] KERNEL supported cpus: | |
[ 0.000000] Intel GenuineIntel | |
[ 0.000000] AMD AuthenticAMD | |
[ 0.000000] Centaur CentaurHauls | |
[ 0.000000] BIOS-provided physical RAM map: | |
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009d400 (usable) |
This file contains hidden or 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
---- | |
main.js | |
---- | |
pageWorker = require("sdk/page-worker").Page({ | |
contentURL: data.url("main-worker.html"), | |
contentScriptFile: [ | |
data.url("js/jquery.min.js"), | |
data.url("main-worker.js") | |
] | |
}); |
This file contains hidden or 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 wm = Components.classes["@mozilla.org/appshell/window-mediator;1"] | |
.getService(Components.interfaces.nsIWindowMediator); | |
var enumy = wm.getEnumerator('navigator:browser'); | |
var tabbrowser = enumy.getNext().gBrowser; | |
var browserTimeouts = {}; | |
for (var index = 0; index <= tabbrowser.tabContainer.childNodes.length; index++) { | |
// Get the next tab | |
var currentTab = tabbrowser.tabContainer.childNodes[index]; | |
if (!tabbrowser.browserid) { |
This file contains hidden or 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
etseat |
This file contains hidden or 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
root@DrSkippedFirstuseHPPre:/media/internal/developer# ipkg-opt install org.webosinternals.ubuntu-natty-chroot_11.04-9_arm.ipk | |
Installing org.webosinternals.ubuntu-natty-chroot (11.04-9) to root... | |
ipkg: write: No space left on device | |
Configuring org.webosinternals.ubuntu-natty-chroot | |
stop: (01746/712381591) Unknown job: org.webosinternals.ubuntu-natty-chroot |