| generator | common files
This file contains 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
saveBudgetSettings chunk.30581cc16aca4d2d9669.js:46619 | |
AsyncFunctionThrow self-hosted:856 | |
(Async: async) | |
br vendor.c7ce92a301fc379347153fc2cae338b2.js:36 | |
install vendor.c7ce92a301fc379347153fc2cae338b2.js:36 | |
v vendor.c7ce92a301fc379347153fc2cae338b2.js:36 | |
track vendor.c7ce92a301fc379347153fc2cae338b2.js:36 | |
commit vendor.c7ce92a301fc379347153fc2cae338b2.js:36 | |
commit vendor.c7ce92a301fc379347153fc2cae338b2.js:36 | |
Mt vendor.c7ce92a301fc379347153fc2cae338b2.js:36 |
This file contains 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
{ | |
"basics": { | |
"name": "Matthieu Berthomé", | |
"picture": "https://avatars2.githubusercontent.com/u/758517?v=4", | |
"label": "", | |
"headline": "Full-Stack Developer", | |
"summary": "Multi-faceted Engineer, from the electrons to the Cloud <br><i class=\"fa fa-heart\"></i> building projects, and helping others build their projects", | |
"website": null, | |
"blog": null, | |
"yearsOfExperience": null, |
This file contains 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
$ terraform plan | |
Refreshing Terraform state in-memory prior to plan... | |
The refreshed state will be used to calculate this plan, but will not be | |
persisted to local or remote state storage. | |
digitalocean_loadbalancer.public: Refreshing state... [id=41e25e59-2591-4d7e-b09f-9c8baaf0b37a] | |
------------------------------------------------------------------------ | |
An execution plan has been generated and is shown below. |
This file contains 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
[[source]] | |
name = "pypi" | |
url = "https://pypi.org/simple" | |
verify_ssl = true | |
[dev-packages] | |
[packages] | |
gevent = "*" | |
Flask-SocketIO = "*" |
This file contains 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
09-11 14:45:59.286 2621 7635 D AudioTrack: AudioTrackThread::wake | |
09-11 14:45:59.290 2621 16149 D AudioTrack: AudioTrackThread::pauseInternal: ns = 1005893460 | |
09-11 14:45:59.635 406 1040 D SocketClient: SocketClient sendData done: 613 IfaceClass active 1 19996570678575 10179 | |
09-11 14:45:59.636 1026 1292 D NetdConnector: RCV <- {613 IfaceClass active 1 19996570678575 10179} | |
09-11 14:45:59.638 1026 1061 D NetworkManagement: onEvent:613 IfaceClass active 1 19996570678575 10179:6 | |
09-11 14:45:59.641 1026 1061 V ActivityManager: Broadcast: Intent { act=android.net.conn.DATA_ACTIVITY_CHANGE flg=0x10 (has extras) } ordered=true userid=-1 callerApp=ProcessRecord{b1d5025 1026:system/1000} | |
09-11 14:45:59.646 1851 1851 D ActivityThread: BDC-Calling finishReceiver: IIntentReceiver=bf5e9bc | |
09-11 14:45:59.652 1026 1061 V ActivityManager: Broadcast sticky: Intent { act=android.net.conn.DATA_ACTIVITY_CHANGE_CT flg=0x10 (has extras) } ordered=false userid=-1 callerApp=ProcessRecord{b1d5025 1026:system/1000} | |
09- |
This file contains 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 date | |
import time | |
import requests | |
oar_url = 'http://srvoar.master.iot-lab.info' | |
date_from = date(2018, 6, 1) | |
site = 'euratech' | |
timestamp_from = time.mktime(date_from.timetuple()) |
This file contains 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
We have a weird regression, and I think what I will show is an unexpected behavior of tox. The project is way more complicated, but this simple example exhibits the problem: | |
the project folder is empty except | |
tox.ini: | |
[tox] | |
skipsdist = true | |
[testenv] | |
whitelist_externals = |
This file contains 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
#!/usr/bin/env bash | |
if [[ -e ".git/rewrite_author" ]] | |
then | |
echo "reseting author to the .git/config value" | |
rm .git/rewrite_author | |
git commit --no-edit --reset-author --amend --no-verify | |
fi |