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
eamanu@eamanuPC:~/dev/asoc_members$ make build-dev | |
docker-compose build | |
postgres uses an image, skipping | |
mail uses an image, skipping | |
Building web | |
Step 1/14 : FROM python:3.6 | |
3.6: Pulling from library/python | |
8f0fdd3eaac0: Pull complete | |
d918eaefd9de: Pull complete | |
43bf3e3107f5: Pull complete |
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
sudo apt install -y python-dev python3-dev autoconf automake autotools-dev dh-make debhelper devscripts fakeroot file gfortran git gnupg lintian patch patchutils pbuilder cowbuilder perl quilt xutils-dev git-buildpackage gnupg |
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
sudo apt install -y python-dev python3-dev autoconf automake autotools-dev dh-make debhelper devscripts fakeroot file gfortran git gnupg lintian patch patchutils pbuilder perl quilt xutils-dev |
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 dt_to_jdn(dt): | |
"""Convert datetime to Julian Day Number | |
.. warning: Please verify this calculating method | |
This convertion is based on: | |
'Practical Astronomy with your Calculator or Spreadsheet', | |
4th ed., Duffet-Smith and Zwart, 2011. |
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
git log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all |
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
/* | |
* main.c | |
* | |
* Created on: Jan 4, 2017 | |
* Author: eamanu | |
*/ | |
#include <avr/io.h> | |
#include <avr/interrupt.h> |
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
/* | |
* main.c | |
* | |
* Created on: Jan 22, 2017 | |
* Author: eamanu | |
*/ | |
#include <avr/io.h> | |
#include <util/delay.h> |