summary refs log tree commit diff stats
path: root/doc
ModeNameSize
-rw-r--r--cheatsheet.svg249561log stats plain blame
-rw-r--r--colorschemes.txt3253log stats plain blame
d---------config187log stats plain
-rw-r--r--howto-publish-a-release.txt973log stats plain blame
-rw-r--r--ranger.158092log stats plain blame
-rw-r--r--ranger.desktop214log stats plain blame
-rw-r--r--ranger.pod44423log stats plain blame
-rw-r--r--rifle.17643log stats plain blame
-rw-r--r--rifle.pod3022log stats plain blame
-rw-r--r--screenshot.png55571log stats plain blame
d---------tools144log stats plain
/blame/dev/index.html?id=3d29ecb8767d923f79b82566fd57b08db76b8fc5'>^
2cda042 ^

d1ffc3f ^
a2e804a ^
d1ffc3f ^





a2e804a ^

2cda042 ^



d1ffc3f ^





2cda042 ^



d1ffc3f ^





2cda042 ^

d1ffc3f ^
2cda042 ^

d1ffc3f ^





2cda042 ^


2cda042 ^
d1ffc3f ^





2cda042 ^


d1ffc3f ^
2cda042 ^





193f4b8 ^
2cda042 ^







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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164












                                                       


                                                                                                               

            
                                                                      
                    










                                                                                          



                     





                                                                                                                      

































                                                                                  



                                                               
                                                             
                                                                   
             


                                                                                                               


                             
 


                                                                            

            
                                                              
                    





                                                                                    

                     



                       





                                                                



                     





                                                               

             
 

                           





                                                               


                    
            





                                                               


             
                                                                     





                                                       
                          







                                                                                            
<!DOCTYPE html>
<html dir="ltr" lang="en">
    <head>
        <meta charset='utf-8'>
        <title>Development</title>
    </head>
    <body>

        <a href="../index.html">Documentation Index</a>
        <h1>Development</h1>

        <p>Tools for development and debugging</p>

        <h2>Git</h2>

        <p>Git is a distributed version control system, this document is meant to be distributed using git.</p>

        <ul>
            <li><a href="git/index.html#teamwork">1. Team workflow</a>
                <ul>
                    <li><a href="git/index.html#feature">1.1. Feature</a></li>
                    <li><a href="git/index.html#release">1.2. Release</a></li>
                    <li><a href="git/index.html#tags">1.3. Tags</a></li>
                    <li><a href="git/index.html#hotfix">1.4. Hotfix</a></li>
                </ul>
            </li>
            <li><a href="git/index.html#local">2. Local Workflow</a> 
                <ul>
                    <li><a href="git/index.html#working">2.1. Working area</a></li>
                    <li><a href="git/index.html#logdiff">2.2. Logs and commits</a></li>
                    <li><a href="git/index.html#remote">2.3. Working with remotes</a></li>
                </ul>
            </li>
        </ul>

        <h2 id="c">C &amp; GDB</h2>

        <p>C is functional compiled language created by Dennis Ritchie. BSD, Linux and Minix kernels use this language
        as primary language.</p>

        <ul>
            <li><a href="c/index.html">Hello World</a>
                <ul>
                    <li><a href="c/index.html#sources">Multiple sources</a></li>
                    <li><a href="c/index.html#makefile">Makefile</a></li>
                    <li><a href="c/index.html#debug">Debug</a></li>
                </ul>
            </li>
            <li><a href="c/elements.html">Types &amp; Elements</a>
                 <ul>
                    <li><a href="c/elements.html#types">Types</a></li>
                    <li><a href="c/elements.html#ident">Identifiers</a></li>
                    <li><a href="c/elements.html#keywords">Keywords</a></li>
                    <li><a href="c/elements.html#const">Constants</a></li>
                    <li><a href="c/elements.html#op">Operators</a></li>
                    <li><a href="c/elements.html#sep">Separators</a></li>
                    <li><a href="c/elements.html#white">White space</a></li>
                </ul>
            </li>
            <li><a href="c/datatypes.html">Datatypes</a>
                 <ul>
                    <li><a href="c/datatypes.html#int">Integer</a></li>
                    <li><a href="c/datatypes.html#double">Real number</a></li>
                    <li><a href="c/datatypes.html#complex">Complex number</a></li>
                    <li><a href="c/datatypes.html#const">Enumeration</a></li>
                    <li><a href="c/datatypes.html#union">Unions</a></li>
                    <li><a href="c/datatypes.html#struct">Structures</a></li>
                    <li><a href="c/datatypes.html#array">Arrays</a></li>
                    <li><a href="c/datatypes.html#pointer">Pointers</a></li>
                    <li><a href="c/datatypes.html#it">Incomplete types</a></li>
                    <li><a href="c/datatypes.html#tq">Type qualifiers</a></li>
                    <li><a href="c/datatypes.html#st">Storage class</a></li>
                </ul>
            </li>

            <li><a href="">Operators &amp; Expressions</a></li>
            <li><a href="">Control Flow</a></li>
            <li><a href="">Functions</a></li>
            <li><a href="">Input &amp; Output</a></li>
            <li><a href="c/debugging.html">Debugging</a></li>
            <li><a href="c/system.html">System Development</a></li>
        </ul>

        <ul>
            <li><a href="http://inti.sourceforge.net/tutorial/libinti/autotoolsproject.html">Autotools</a></li>
        </ul>

        <h2>Shell Script</h2>

        <p>Script files that start with "#!/bin/sh" use dash (in crux),
        /bin/sh is a link to dash, while files that start with "#!/bin/bash"
        use bash;</p>

        <ul>
            <li><a href="shell/dash.html">Dash - Scripting</a>
                <ul>
                    <li><a href="shell/dash.html#hello">Hello World</a></li>
                    <li><a href="shell/dash.html#var">Types &amp; Variables</a></li>
                    <li><a href="">Operators &amp; Expressions</a></li>
                    <li><a href="shell/dash.html#if">Control Flow</a></li>
                    <li><a href="">Functions</a></li>
                    <li><a href="shell/dash.html#io">Input &amp; Output</a></li>
                </ul>
            </li>
        </ul>

        <h2>Python</h2>
        <ul>
            <li><a href="python/index.html">Hello World</a></li>
            <li><a href="">Types &amp; Variables</a></li>
            <li><a href="">Operators &amp; Expressions</a></li>
            <li><a href="">Control Flow</a></li>
            <li><a href="">Functions</a></li>
            <li><a href="">Input &amp; Output</a></li>
        </ul>

        <h2>Perl</h2>
        <ul>
            <li><a href="perl/index.html">Hello World</a></li>
            <li><a href="">Types &amp; Variables</a></li>
            <li><a href="">Operators &amp; Expressions</a></li>
            <li><a href="">Control Flow</a></li>
            <li><a href="">Functions</a></li>
            <li><a href="">Input &amp; Output</a></li>
        </ul>


        <h2>JavaScript</h2>
        <ul>
            <li><a href="js/index.html">Hello World</a></li>
            <li><a href="">Types &amp; Variables</a></li>
            <li><a href="">Operators &amp; Expressions</a></li>
            <li><a href="">Control Flow</a></li>
            <li><a href="">Functions</a></li>
            <li><a href="">Input &amp; Output</a></li>
        </ul>

        <h2>PHP</h2>
        <ul>
            <li><a href="php/index.html">Hello World</a></li>
            <li><a href="">Types &amp; Variables</a></li>
            <li><a href="">Operators &amp; Expressions</a></li>
            <li><a href="">Control Flow</a></li>
            <li><a href="">Functions</a></li>
            <li><a href="">Input &amp; Output</a></li>
        </ul>

        <ul>
            <li><a href="php/laravel.html">Laravel Framework</a></li>
            <li>PHP Unit</li>
        </ul>

        <a href="../index.html">Documentation Index</a>
        <p>
        This is part of the c9-doc Manual.
        Copyright (C) 2017
        c9 team.
        See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a>
        for copying conditions.</p>


    </body>

</html>