For some reason, I am getting blue screens in a Win7 brand new installation. I know it's related to the Intel driver utility, but not really how.
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
Error: req.flash() requires sessions | |
at Error (<anonymous>) | |
at IncomingMessage._flash [as flash] (/var/www/nodebb/node_modules/connect-flash/lib/flash.js:60:41) | |
at handleErrors (/var/www/nodebb/src/routes/index.js:184:6) | |
at Layer.handle_error (/var/www/nodebb/node_modules/express/lib/router/layer.js:58:5) | |
at trim_prefix (/var/www/nodebb/node_modules/express/lib/router/index.js:268:13) | |
at /var/www/nodebb/node_modules/express/lib/router/index.js:237:9 | |
at Function.proto.process_params (/var/www/nodebb/node_modules/express/lib/router/index.js:312:12) | |
at /var/www/nodebb/node_modules/express/lib/router/index.js:228:12 | |
at Function.match_layer (/var/www/nodebb/node_modules/express/lib/router/index.js:295:3) |
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
make[3]: Entering directory '/home/javier/projects/openwrt/target/linux' | |
make[4]: Entering directory '/home/javier/projects/openwrt/target/linux/uml' | |
/home/javier/projects/openwrt/scripts/kconfig.pl + /home/javier/projects/openwrt/target/linux/generic/config-3.18 /home/javier/projects/openwrt/target/linux/uml/config/x86_64 > /home/javier/projects/openwrt/build_dir/target-x86_64_musl-1.1.11/linux-uml/linux-3.18.21/.config.target | |
awk '/^(#[[:space:]]+)?CONFIG_KERNEL/{sub("CONFIG_KERNEL_","CONFIG_");print}' /home/javier/projects/openwrt/.config >> /home/javier/projects/openwrt/build_dir/target-x86_64_musl-1.1.11/linux-uml/linux-3.18.21/.config.target | |
echo "# CONFIG_KALLSYMS_EXTRA_PASS is not set" >> /home/javier/projects/openwrt/build_dir/target-x86_64_musl-1.1.11/linux-uml/linux-3.18.21/.config.target | |
echo "# CONFIG_KALLSYMS_ALL is not set" >> /home/javier/projects/openwrt/build_dir/target-x86_64_musl-1.1.11/linux-uml/linux-3.18.21/.config.target | |
echo "# CONFIG_KALLSYMS_UNCOMPRESSED is not set" >> /home/javier |
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
make[7]: Entering directory '/home/javier/projects/openwrt/build_dir/target-mipsel_24kec+dsp_musl-1.1.11/ntp-4.2.8p2/util' | |
CCLD ntp-keygen | |
OpenWrt-libtool: link: cannot find the library `../sntp/libevent/libevent_core.la' or unhandled argument `../sntp/libevent/libevent_core.la' |
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@3c0f8c6a25c9:/srv/attitude_adjustment# make menuconfig V=s | |
make[1]: Entering directory `/srv/attitude_adjustment/scripts/config' | |
zconf.tab.o: In function `zconflex': | |
zconf.tab.c:(.text+0x21c1): undefined reference to `kconf_id_lookup' | |
zconf.tab.c:(.text+0x2313): undefined reference to `kconf_id_lookup' | |
collect2: ld returned 1 exit status | |
make[1]: *** [conf] Error 1 | |
make[1]: Leaving directory `/srv/attitude_adjustment/scripts/config' | |
make: *** [scripts/config/mconf] Error 2 |
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@thorin ~]# find boot/ | |
boot/ | |
boot/bcm2709-rpi-2-b.dtb | |
boot/bootcode.bin | |
boot/cmdline.txt | |
boot/config.txt | |
boot/fixup_cd.dat | |
boot/fixup.dat | |
boot/fixup_db.dat | |
boot/fixup_x.dat |
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
config defaults | |
option syn_flood '1' | |
option input 'ACCEPT' | |
option output 'ACCEPT' | |
option forward 'REJECT' | |
config zone | |
option name 'lan' | |
option input 'ACCEPT' |
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
unsigned int get_next_pkt(int fd, struct lx_pkt *pkt, struct sockaddr_in *si) | |
{ | |
socklen_t size_si = sizeof(struct sockaddr); | |
ssize_t bytes; | |
bytes = recvfrom(fd, pkt, 1024, 0, (struct sockaddr *) si, &size_si); | |
if (bytes < 1) { | |
return 0; | |
} | |
return (unsigned int) bytes; |
When creating and Android app, and probably any other kind of app that has UI, I find myself with all the business code inside the UI code (Activity, Fragments, etc.). When using RX, this means I have giantic subscribe() unsubscribe() functions that basically setUp and tearDown all the Rx pipelines.
With the objective of dividing UI from Business logic, after watching