about summary refs log tree commit diff stats
path: root/sib.pdf
Commit message (Expand)AuthorAgeFilesLines
* 5485 - promote SubX to top-levelKartik Agaram2019-07-271-0/+0
title='author Ben Morrison <ben@gbmor.dev> 2020-05-28 02:58:57 -0400 committer Ben Morrison <ben@gbmor.dev> 2020-05-28 02:58:57 -0400 extensive rewrite to use json for storage:' href='/gbmor/clinte/commit/README.md?h=v2.0.0&id=bb327d381e5626d96942a805e6a5f4d4a5a771d5'>bb327d3 ^
c664e87 ^
df6f3d1 ^

a2ca864 ^

bb327d3 ^
a2ca864 ^



bb327d3 ^

0e199a8
c3b907d ^
df6f3d1 ^


df6f3d1 ^

















bb327d3 ^

























df6f3d1 ^




5b6d798 ^
a2ca864 ^
2a3d402 ^



5b6d798 ^
df6f3d1 ^








5b6d798 ^
a2ca864 ^
f3c7809 ^
5b6d798 ^
f3c7809 ^
a2ca864 ^
5b6d798 ^


f3c7809 ^
5b6d798 ^
a2ca864 ^
2a3d402 ^
5b6d798 ^
2a3d402 ^
a2ca864 ^
5b6d798 ^
2a3d402 ^
5b6d798 ^
df6f3d1 ^
5b6d798 ^




e4af001 ^


bb327d3 ^
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
                                                                                                                                                                                                                                              
 
                                                                                                                
 

           

                                                    
                                       



                                                               

                                                                              
 
                                                                                                                                             


               

















                                                 

























                                                                                                   




                                                            
                        
 



        
                 








                                                                                    
               
 
   
                    
   
 


                                                                                  
 
                 
 
   
                    
   
 
                                                                                          
 
                   
 




                                                                                   


        
                                                                                                   
# clinte &nbsp; [![Build Status](https://travis-ci.com/gbmor/clinte.svg?branch=master)](https://travis-ci.com/gbmor/clinte) [![codecov](https://codecov.io/gh/gbmor/clinte/branch/master/graph/badge.svg)](https://codecov.io/gh/gbmor/clinte)

Command-line community notice board for public-access UNIX systems. Post text-only notes for other users to see.

## Features

- Username is tagged based on the executing user
- Shows the 15 most recent posts in descending order
- Able to edit or delete your own posts
- Title <= 30 chars
- Body <= 500 chars
- Calls `$EDITOR` when creating or modifying the body of a post
- If `$EDITOR` is unset, calls `nano`
- Stores posts in JSON
- Uses advisory locking via `flock(2)` to synchronize access to the posts file

[![Screenshot](https://github.com/gbmor/clinte/blob/master/assets/clinte.png)](https://github.com/gbmor/clinte/blob/master/assets/clinte.png)

## Installation

Clone the repository and jump into the directory:

```
$ git clone git://github.com/gbmor/clinte.git
...
$ cd clinte
```

Run the makefile and install:

```
$ make
...
...Done!

$ sudo make install
```

`make` will automatically checkout the latest tag and build from there.

## Upgrading

**Note:** v1.0.0 used sqlite3, which presented some issues. v2.0.0 uses a json structure for posts,
as this will be safer on a multi-user system. When upgrading from v1.0.0 to v2.0.0, you won't be
able to save your posts without using a third-party tool to dump the `posts` table to json, and
manually adjusting it to fit the expected format (which can be seen in the included `clinte.json`).

*If upgrading from v1.0.0 -> v2.0.0, do a fresh install. The following applies to upgrading when
already running at least v2.0.0*

```
$ make update
$ make
$ make upgrade
```

This will:

* checkout `master`
* pull / rebase changes from upstream
* checkout the latest tag
* rebuild
* replace the `clinte` binary, but leave the posts file untouched.

## Usage

Issuing the program name itself will list
the currently available posts, like in the screenshot above.

**Display recent posts**

```
$ clinte
```

**Create a post**

```
$ clinte post
```

`clinte` will then ask for the title of the post, and the body. The username will be
tagged automatically by your logged-in username, reflecting its intended use on
multi-user UNIX-like systems.

**Edit a post**

```
$ clinte update [id]
```

If the `[id]` argument is absent, `clinte` will ask for the ID number of the post.
If it's been authored by you, then you will be asked for the new title.
Your `$EDITOR` will be called, and will be populated with the previous body.

**Delete a post**

```
$ clinte delete [id]
```

If the `[id]` argument is absent,  `clinte` asks for the numeric ID of the post to delete.

**Verbose logging**

```
$ clinte -v [post|update|delete] [id]
```
Use this flag if something's going wrong. Additional information will be written to
`/tmp/clinte_$USER.log` that will, hopefully, reveal the cause of the error.

## Notes

The file where the posts are stored must be writeable by all users on the system. Keep this in mind.