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
window.App = Backbone.Router.extend({ | |
initialize: function(){ | |
this.route(/^$/, 'mainPage'); | |
} | |
mainPage: function(){ | |
console.log("Showing main page..."); | |
var content = $('#content'); |
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
window.APP = Backbone.Router.extend({ | |
initialize: function(){ | |
this.route(/.*?/, "e404"); | |
this.route(/^$/, 'mainPage'); | |
//Some other routes | |
}, | |
e404: function(){ | |
console.log("Error 404!"); |
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 myView = Backbone.View.extend({ | |
events: { | |
'click .start_upload': 'start_upload' | |
} | |
initialize: function(){ | |
EventBus.addEventListener("upload_done", this.upload_callback); | |
} |
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
<?php | |
// handle file ... | |
// more stuff ... | |
?> | |
<script language='javascript' type='text/javascript'> | |
window.top.window.EventBus.dispatch("upload_done", this, 42); | |
</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
$ pwd | |
/home/alexandernst/tmp_arm_build | |
$ cat hello_world.c | |
#include <stdio.h> | |
int main(int argc, char **argv){ | |
printf("Hello world!\n"); | |
return 0; | |
} | |
$ gcc -o hello_world hello_world.c |
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
$ pwd | |
/home/alexandernst/tmp_arm_build | |
$ cat gst_hello_world.c | |
#include <gst/gst.h> | |
int main(int argc, char **argv){ | |
gst_init(&argc, &argv); | |
GMainLoop *loop = g_main_loop_new(NULL, FALSE); | |
GstElement *pipeline = gst_parse_launch("videotestsrc ! autovideosink", NULL); | |
GstElement *test = gst_bin_get_by_name(GST_BIN(pipeline), "test"); |
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
$ pwd | |
/home/alexandernst/tmp_arm_build | |
$ tree -L 2 | |
. | |
├── deps | |
│ ├── glib-2.35.9 | |
│ ├── gst-plugins-base-0.10.36 | |
│ ├── gstreamer-0.10.36 | |
│ ├── libffi-3.0.13 | |
│ ├── orc-0.4.17 |
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
$ pwd | |
/home/alexandernst/tmp_arm_build | |
$ cd deps/zlib-1.2.7/ | |
$ export PKG_CONFIG_PATH=/home/alexandernst/tmp_arm_build/libs/lib/pkgconfig/ | |
$ sb2 ./configure --prefix=/home/alexandernst/tmp_arm_build/libs/ &> /dev/null | |
$ sb2 make &> /dev/null | |
$ sb2 make install &> /dev/null | |
$ cd ../.. | |
$ pwd | |
/home/alexandernst/tmp_arm_build |
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
$ tree -L 2 | |
. | |
├── deps | |
│ ├── glib-2.35.9 | |
│ ├── gst-plugins-base-0.10.36 | |
│ ├── gstreamer-0.10.36 | |
│ ├── libffi-3.0.13 | |
│ ├── orc-0.4.17 | |
│ └── zlib-1.2.7 | |
├── gst_hello_world |
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
$ sb2 gcc `sb2 pkg-config --cflags gstreamer-app-0.10` -o gst_hello_world gst_hello_world.c `sb2 pkg-config --libs gstreamer-app-0.10` -L/home/alexandernst/tmp_arm_build/libs/ -lffi | |
$ file gst_hello_world | |
gst_hello_world: ELF 32-bit LSB executable, ARM, EABI5 version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.16, not stripped |
OlderNewer