-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompositor.json
More file actions
88 lines (88 loc) · 5.11 KB
/
compositor.json
File metadata and controls
88 lines (88 loc) · 5.11 KB
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
{
"name": "angsuman/cnote",
"version": "0.1.4",
"libraries": {
"xv": "^1.1.25"
},
"title": "",
"branch": "",
"style": {
"name": "Humanist",
"componentSet": {
"nav": "nav/BasicNav",
"header": "header/LightBannerHeader",
"article": "article/ReaderArticle",
"footer": "footer/BasicFooter"
},
"fontFamily": "Athelas, Georgia, serif",
"heading": {
"fontWeight": 400,
"textTransform": "uppercase",
"letterSpacing": "0.1em"
},
"colors": {
"text": "#121212",
"background": "#fff",
"primary": "#ee5544",
"secondary": "#005499",
"highlight": "#00bd78",
"border": "#ddd",
"muted": "#f3f3f3"
},
"layout": {
"maxWidth": 768
}
},
"content": [
{
"component": "nav",
"links": [
{
"href": "http://taragana.com/",
"text": "Home"
},
{
"href": "https://github.com/angsuman/cnote",
"text": "GitHub"
}
]
},
{
"component": "header",
"heading": "cnote",
"subhead": "Command Line Note Taker (Mac, Linux, BSD, Unix variants)",
"children": [
{
"component": "ui/TweetButton",
"text": "cnote: Command Line Note Taker (Mac, Linux, BSD, Unix variants)",
"url": "http://taragana.com/"
},
{
"component": "ui/GithubButton",
"user": "angsuman",
"repo": "cnote"
}
]
},
{
"component": "article",
"metadata": {
"source": "github.readme"
},
"html": "<h1>CNote - Command Line Note Taker</h1>\n<p>CNote is a super simple tool which allows you to instantly take notes from command line, while coding / researching. Saves all notes in ~/.notes; searchable & time-stamped.</p>\n<p>Here's how you can add a note:</p>\n<p><code>n Added cnote to github at https://github.com/angsuman/cnote</code></p>\n<p>Tested Platforms: Cent OS, Ubuntu, Mac OS X, Raspberry Pi</p>\n<p>Version: 1.0</p>\n<h2>CNote Commands(Manual)</h2>\n<ul>\n<li><strong>n</strong> Add note. Enclose in quotes to use any character in note. Note is always single-line but there is no limitation on the length of the line. Newlines must not be used<ul>\n<li><code>n cnote supports adding complex notes. Notes with escape characters should be quoted.</code></li>\n</ul>\n</li>\n<li><strong>nls</strong> List all notes matching your phrase/word with date and time<ul>\n<li><code>nls cnote</code> - List all notes containing <code>cnote</code></li>\n</ul>\n</li>\n<li><strong>ne</strong> Open all notes in (default) editor. You can set your default editor by defining the environment variable EDITOR in script<ul>\n<li><code>ne</code> - Open all notes in default editor</li>\n</ul>\n</li>\n<li><strong>nrm</strong> Delete matching note(s). YOu should list the desired note with nls first before nrm to ensure other notes are not deleted<ul>\n<li><code>nrm dotnet</code> - Delete all note(s) containing <code>dotnet</code></li>\n</ul>\n</li>\n<li><strong>nh</strong> Help</li>\n</ul>\n<h3>Notes</h3>\n<ul>\n<li>All your notes are saved in ~/.notes file</li>\n<li>Each note is saved as a single line</li>\n<li>Each note is prefixed with a timestamp in 2016-03-19 08:39:21 format</li>\n<li>To backup ~/.notes create a symbolic link to this file in your Dropbox directory. Dropbox crawls symbolic links and will automatically update as and when you add a note.</li>\n</ul>\n<h2>Installation</h2>\n<h3>Automatic with installation script</h3>\n<p>Run on Terminal:</p>\n<p><code>wget --no-check-certificate -q -O- https://raw.githubusercontent.com/angsuman/cnote/master/install.sh|bash -</code></p>\n<h3>Manual installation</h3>\n<p>Append the shell script content ( <a href=\"https://raw.githubusercontent.com/angsuman/cnote/master/n.sh\">https://raw.githubusercontent.com/angsuman/cnote/master/n.sh</a> ) to ~/.bashrc (for access by your login account only) or to /etc/bashrc for access across all logins in the machine.</p>\n<h1>Articles</h1>\n<ul>\n<li><a href=\"https://medium.com/@angsuman/how-to-easily-manage-your-knowledge-base-with-cnote-cli-note-taking-tool-c17c35e8cc05#.hn0tv6yd3\">How to easily manage your Knowledge base with CNote: CLI Note Taking Tool</a> or why I developed it</li>\n<li><a href=\"http://blog.taragana.com/how-to-auto-update-cnote-simple-cli-note-taking-application-to-google-drive-cloud-10\">How to auto-update CNote, Simple CLI Note Taking Application, to Google Drive Cloud</a></li>\n</ul>\n<h1>Developer</h1>\n<p>Angsuman Chakraborty</p>\n<p><a href=\"angsuman@taragana.com\">Email</a> | <a href=\"http://taragana.com/\">Web</a> | <a href=\"https://www.facebook.com/angsuman.chakraborty\">Facebook</a> | <a href=\"https://twitter.com/angsuman\">Twitter</a> | <a href=\"https://in.linkedin.com/in/angsuman\">LinkedIn</a> | <a href=\"http://blog.taragana.com\">Blog</a></p>\n"
},
{
"component": "footer",
"links": [
{
"href": "https://github.com/angsuman/cnote",
"text": "GitHub"
},
{
"href": "https://github.com/angsuman",
"text": "angsuman"
}
]
}
]
}