summary refs log tree commit diff stats
path: root/test/all_benchmarks.py
diff options
context:
space:
mode:
authorshpelda <shpelda@seznam.cz>2010-06-20 01:57:43 +0200
committerhut <hut@lavabit.com>2010-06-21 00:12:19 +0200
commitad75190ca665da01940b0c01e12b767f29dc8bc0 (patch)
tree67504e9a1ffb5640f0d7b2b52d2e9b284120d3ec /test/all_benchmarks.py
parent1dbb5ce9e0dfe2b857020290b29e2e22321985ef (diff)
downloadranger-ad75190ca665da01940b0c01e12b767f29dc8bc0.tar.gz
commited pydocs are author agnostic
Diffstat (limited to 'test/all_benchmarks.py')
0 files changed, 0 insertions, 0 deletions
3-14 00:28:03 +0530 committer Andinus <andinus@inventati.org> 2020-03-14 00:28:03 +0530 Narrow scope of the project' href='/andinus/cetus/commit/README.org?h=v0.4.6&id=7be294fa299da7c9aa3ba17d7ffba03e1a68e8aa'>7be294f ^
a0d9363 ^
a7e66bc ^

50871fc ^






























f0a905d ^
b34b873 ^


a7e66bc ^


b34b873 ^

6849d7f ^
b34b873 ^
f755d1d ^


















1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
                                                                  

                                                                                              

              

                                                                               
 

                                                                               
 
                                                                              
 

                                                   






























                                                                   
      


                                                                              


                                                                               

                                                                                  
                                                                                  
                                                                                  


















                                                                                                                                            
#+HTML_HEAD: <link rel="stylesheet" href="../../static/style.css">
#+HTML_HEAD: <link rel="icon" href="../../static/projects/cetus/favicon.png" type="image/png">
#+EXPORT_FILE_NAME: index
#+TITLE: Cetus

Cetus is a simple wallpaper management tool written in Go. It supports multiple
sources for fetching the background.

| Project Home | [[https://andinus.nand.sh/projects/cetus/][Cetus]]           |
| Source Code  | [[https://framagit.org/andinus/cetus][Andinus / Cetus]] |

*Note*: Cetus is a work in-progress & many features are yet to be implemented.

*Dependency*: [[https://feh.finalrewind.org/][feh]]

* NASA Astronomy Picture of the Day
cetus-nasa uses NASA's API to get the Astronomy Picture of the Day.
** Features
- set APOD as background
- fetch information on APOD
- choose custom date
- choose date randomly
** Examples
#+BEGIN_SRC sh
# set currently APOD as background
cetus-nasa

# set date randomly
cetus-nasa -random

# set 2020-01-05 APOD as background
cetus-nasa -date 2020-01-05

# change api endpoint & api key
cetus-nasa -api https://api.nasa.gov/planetary/apod \
           -api-key DEMO_KEY

# don't set background, just fetch information
cetus-nasa -fetch-only

# don't output anything
cetus-nasa -quiet

# don't set background, just fetch & don't output anything
cetus-nasa -quiet -fetch-only # why would anyone do this?
#+END_SRC
* Demo
I just run some cetus commands on my computer, nothing fancy. I'll make better
demo videos someday.

*Note*: Cetus was restructured multiple times & these demos may not work on the
latest release.

| Version | Video                                                                |
|---------+----------------------------------------------------------------------|
| v0.3.1  | https://diode.zone/videos/watch/0808c512-315a-4dab-9526-4a537e8c3257 |
| v0.2.0  | https://diode.zone/videos/watch/12db31e1-3517-4888-ad06-55f3859447a1 |
* Installation
** Binary
|                 | [[https://framagit.org/andinus/cetus/-/jobs/700844/artifacts/browse][Cetus Artifacts]]          |
|-----------------+--------------------------|
| OpenBSD amd64   | [[https://framagit.org/andinus/cetus/-/jobs/700844/artifacts/file/cetus-nasa-openbsd-amd64][cetus-nasa-openbsd-amd64]] |
| GNU/Linux amd64 | [[https://framagit.org/andinus/cetus/-/jobs/700844/artifacts/file/cetus-nasa-linux-amd64][cetus-nasa-linux-amd64]]   |
** From Source
#+BEGIN_SRC sh
# get master branch archive
curl -o cetus-master.tar.gz \
     https://framagit.org/andinus/cetus/-/archive/master/cetus-master.tar.gz

# extract the archive
tar -xzf cetus-master.tar.gz

# install cetus
cd cetus-master && \
    go install ./cmd/cetus-nasa
#+END_SRC