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
| ... | |
| Feb 03 01:32:49 servy openvpn@server[6455]: bulky/82.130.48.142:48550 Data Channel Encrypt: Using 160 bit message hash 'SHA1' for HMAC authentication | |
| Feb 03 01:32:49 servy openvpn@server[6455]: bulky/82.130.48.142:48550 Data Channel Decrypt: Cipher 'BF-CBC' initialized with 128 bit key | |
| Feb 03 01:32:49 servy openvpn@server[6455]: bulky/82.130.48.142:48550 Data Channel Decrypt: Using 160 bit message hash 'SHA1' for HMAC authentication | |
| Feb 03 01:32:49 servy openvpn@server[6455]: bulky/82.130.48.142:48550 Control Channel: TLSv1, cipher TLSv1/SSLv3 DHE-RSA-AES256-SHA, 2048 bit RSA | |
| Feb 03 02:19:46 servy openvpn@server[6455]: event_wait : Interrupted system call (code=4) | |
| Feb 03 02:19:46 servy openvpn@server[6455]: TCP/UDP: Closing socket | |
| Feb 03 02:19:46 servy openvpn@server[6455]: Closing TUN/TAP interface | |
| Feb 03 02:19:46 servy openvpn@server[6455]: SIGTERM[hard,] received, process exiting |
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
| --- SIGTERM {si_signo=SIGTERM, si_code=SI_USER, si_pid=30930, si_uid=0} --- | |
| rt_sigaction(SIGTERM, {0x4553d0, [TERM], SA_RESTORER|SA_RESTART, 0x7f26c7525b20}, {0x4553d0, [TERM], SA_RESTORER|SA_RESTART, 0x7f26c7525b20}, 8) | |
| = 0 | |
| rt_sigreturn() = -1 EINTR (Interrupted system call) | |
| Sun Feb 15 14:19:47 2015 event_wait : Interrupted system call (code=4) | |
| Sun Feb 15 14:19:47 2015 /usr/bin/ip route del 10.8.0.0/24 | |
| RTNETLINK answers: Operation not permitted | |
| --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=30931, si_uid=99, si_status=2, si_utime=0, si_stime=0} --- | |
| Sun Feb 15 14:19:47 2015 ERROR: Linux route delete command failed: external program exited with error status: 2 | |
| Sun Feb 15 14:19:47 2015 Closing TUN/TAP interface |
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
| try { | |
| // open client certificate file | |
| File dir = Environment.getExternalStorageDirectory(); | |
| FileInputStream fis = new FileInputStream(dir + "nodeplayer-key.pem"); | |
| // create key store | |
| KeyStore keyStore = KeyStore.getInstance(KeyStore.getDefaultType()); | |
| keyStore.load(fis, "".toCharArray()); | |
| fis.close(); |
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
| /home/rasse/src/nodeplayer-file/node_modules/mongodb/lib/mongodb/connection/base.js:246 | |
| throw message; | |
| ^ | |
| TypeError: Object 54ecdb67ddd5fac352f0779a has no method 'replace' | |
| at Object.exports.getSongHmac (/home/rasse/src/nodeplayer/plugins/verifyMac.js:40:21) | |
| at exports.preAddSearchResult (/home/rasse/src/nodeplayer/plugins/verifyMac.js:50:25) | |
| at /home/rasse/src/nodeplayer/index.js:45:32 | |
| at Function._.findKey (/home/rasse/src/nodeplayer/node_modules/underscore/underscore.js:1011:11) | |
| at Function._.find._.detect (/home/rasse/src/nodeplayer/node_modules/underscore/underscore.js:208:15) | |
| at Object.player.callHooks (/home/rasse/src/nodeplayer/index.js:43:7) |
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
| { | |
| "start": { | |
| "connected": [{ | |
| "socket": 4, | |
| "local_host": "10.0.0.2", | |
| "local_port": 42776, | |
| "remote_host": "10.0.0.1", | |
| "remote_port": 5201 | |
| }], | |
| "version": "iperf 3.1", |
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
| # fantastic pepperoni reload script featuring state wipe | |
| adb shell input tap 1060 1790 # tap small debug dot | |
| adb shell input tap 1060 1600 # tap clear state | |
| adb shell input keyevent 82 # bring up debug menu | |
| adb shell input keyevent 66 # return to focus first button | |
| adb shell input keyevent 66 # hit focused button (Reload) |
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
| // Here you configure which modules (e.g. IRC, Telegram) you wish to use, | |
| // as well as options they may need in order to connect | |
| config.modules = [{ | |
| alias: 'freenode', | |
| module: 'irc', | |
| config: { | |
| host: 'irc.freenode.org', | |
| port: 6667, | |
| nick: 'tgBot', |
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
| // Import the react library | |
| import { Component } from 'react'; | |
| class Tutorial extends Component { | |
| // The render method decides what the component looks like | |
| render() { | |
| return( | |
| <div> | |
| Hello world! | |
| </div> |
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
| // Import the react library | |
| import { Component } from 'react'; | |
| import RaisedButton from 'material-ui/RaisedButton'; | |
| class Tutorial extends Component { | |
| constructor() { | |
| super(); | |
| // Component initial state | |
| this.state = { |
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
| # SETUP | |
| ## Clone your repo | |
| git clone [email protected]:Softala3XPRT/xprt-app.git | |
| ## Add the upstream futurice/xprt-app repo so you can keep your repo in sync with Futurice's | |
| git remote add upstream https://github.com/futurice/xprt-app | |
| # BRANCHING |