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
| report (size 8) (numbered) = 07 e0 01 01 01 00 00 00 | |
| report (size 8) (numbered) = 07 e0 01 01 00 00 00 00 | |
| report (size 8) (numbered) = 07 e0 01 01 02 00 00 00 | |
| report (size 8) (numbered) = 07 e0 01 01 00 00 00 00 | |
| report (size 8) (numbered) = 07 e0 01 01 01 00 00 00 |
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
| 05 0d 09 02 a1 01 85 07 09 20 a0 14 25 01 75 01 09 42 09 44 09 46 95 03 81 02 95 03 81 03 09 32 95 01 81 02 95 01 81 03 75 10 95 01 a4 05 01 65 13 55 fd 34 09 30 27 a0 d7 00 00 47 e8 35 00 00 81 02 09 31 27 c4 86 00 00 47 b1 21 00 00 81 02 b4 09 30 27 ff 07 00 00 81 02 c0 c0 05 01 09 07 a1 01 85 f7 14 25 01 75 01 05 0d 09 39 a0 09 44 95 01 81 02 05 01 09 30 09 31 95 02 81 02 95 15 81 01 05 09 19 01 29 0a 95 0a 81 02 c0 05 01 09 05 a0 05 09 19 01 29 02 95 02 81 02 95 14 81 01 c0 c0 | |
| INPUT(7)[INPUT] | |
| Field(0) | |
| Physical(Digitizers.Stylus) | |
| Application(Digitizers.Pen) | |
| Usage(3) | |
| Digitizers.TipSwitch | |
| Digitizers.BarrelSwitch | |
| Digitizers.TabletPick |
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
| FROM python:2.7 | |
| ADD . /code | |
| WORKDIR /code | |
| RUN pip install -r requirements.txt | |
| CMD python app.py |
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
| ; Aggregations | |
| [aggregations] | |
| ; The aggregations are configured in subsections | |
| ; Each subsection is a single aggregation and it | |
| ; contains the required information to set up the | |
| ; aggreagtion. If something is missconfigured, the | |
| ; aggworker will discard it and profusely complain about | |
| ; Real Time Global, mega table for CitusDB | |
| [aggregations "real_time_global"] |
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
| 2015/04/28 00:03:36 Allocated memory is 11525491288 bytes (10GB), returning resources to the OS | |
| 2015/04/28 00:19:34 Allocated memory is 11038402352 bytes (10GB), returning resources to the OS | |
| 2015/04/28 00:26:02 Allocated memory is 10783616920 bytes (10GB), returning resources to the OS | |
| 2015/04/28 00:29:36 Allocated memory is 10982464344 bytes (10GB), returning resources to the OS | |
| 2015/04/28 00:33:35 Allocated memory is 11457765376 bytes (10GB), returning resources to the OS | |
| 2015/04/28 00:37:34 Allocated memory is 11779587928 bytes (10GB), returning resources to the OS | |
| 2015/04/28 00:53:37 Allocated memory is 10963104776 bytes (10GB), returning resources to the OS | |
| 2015/04/28 01:02:02 Allocated memory is 10847689312 bytes (10GB), returning resources to the OS | |
| 2015/04/28 01:03:35 Allocated memory is 11455761632 bytes (10GB), returning resources to the OS | |
| 2015/04/28 01:09:35 Allocated memory is 11138613400 bytes (10GB), returning resources to the OS |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| GentooStation damnwidget # ab -n 1000 -c 160 http://www.google.ie/ | |
| This is ApacheBench, Version 2.3 <$Revision: 655654 $> | |
| Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ | |
| Licensed to The Apache Software Foundation, http://www.apache.org/ | |
| Benchmarking www.google.ie (be patient) | |
| Completed 100 requests | |
| Completed 200 requests | |
| Completed 300 requests |
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
| from datetime import datetime, timedelta | |
| def get_next_day(d, day=2): | |
| return d + timedelta((day - d.weekday()) % 7) | |
| def get_next_lotto_day(d): | |
| next_wednesday = get_next_day(d) | |
| next_saturday = get_next_day(d, 5) |
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
| # execute keychain in zsh session start | |
| eval $(keychain --eval --agents ssh -Q --quiet ~/.ssh/id_rsa) |
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
| def _exposure_adjust(self): | |
| """ | |
| Calculates de overall effect of this bet to exposures & stakes | |
| """ | |
| adjustments = { | |
| 'exposure_win': Decimal('0.0'), | |
| 'exposure_place': Decimal('0.0'), | |
| 'stake_win': Decimal('0.0'), | |
| 'stake_place': Decimal('0.0'), |
NewerOlder