-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
104 lines (102 loc) · 4.01 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My 2018 Worklog</title>
<meta charset="utf-8">
<meta name="description" content="my 2018 worklog. site built using custom site generator">
<meta name="keywords" content="worklog, 2018">
<meta name="author" content="Sambhav Jain">
<link href="https://fonts.googleapis.com/css?family=Zilla+Slab" rel="stylesheet">
<meta name="description" content="my 2018 worklog. site built using custom site generator">
<link rel="stylesheet" href="./css/style.css">
<script src="./js/main.js"></script>
<link rel="icon" type="image/png" href="./images/favicon.png">
</head>
<body>
<h1>2018</h1>
<p>My 2018 worklog.</p>
<h2>New projects being undertaken</h2>
<ul>
<li><a href="https://github.com/sambhav2612/simple-api">simple-api</a>: An API written in JSON and used in JavaScript.</li>
<li><a href="https://github.com/sambhav2612/pdo">pdo</a>: A CRUD Application written in PHP and implemented in MySQL</li>
<li><a href="https://github.com/sambhav2612/staticgen">staticgen</a>: A simple NodeJS application to build/generate static webpages from markdown files.</li>
<li><a href="https://github.com/sambhav2612/se-project">se-project</a>: My s/w engineering project on railway information portal. Repository content mainly contains web data for the website.</li>
</ul>
<h2>Projects being continued from 2017</h2>
<ul>
<li><a href="https://github.com/sambhav2612/librecad">librecad</a>: A static LibreCAD website clone</li>
<li><a href="https://github.com/sambhav2612/sambhav2612.github.io">sambhav2612.github.io</a>: My personal website/blog-site.</li>
</ul>
<h3>Repository Tree</h3>
<pre><code class="language-bash">.
├── anki-flashcard-notes
│ ├── All Decks[Card].txt
│ ├── All Decks.txt
│ ├── collection.apkg
│ └── README.md
├── codezen
│ ├── count-integers.cpp
│ ├── diamond
│ ├── diamond.cpp
│ ├── galaxy-of-stars
│ ├── galaxy-of-stars.cpp
│ ├── heap-sort
│ ├── heap-sort.cpp
│ ├── kth-level
│ ├── kth-level.cpp
│ ├── merge-linked-list.cpp
│ ├── node-level
│ ├── node-level.cpp
│ ├── string-manipulation
│ └── string-manipulation.cpp
├── css
│ └── style.css
├── ebooks
│ ├── Algorithhms 4th Edition by Robert Sedgewick, Kevin Wayne.pdf
│ ├── [Cormen-AL2011]Introduction_To_Algorithms-A3
│ ├── databases-ramaz.pdf
│ ├── Fundamentals of Database Systems - Ramez Elmasri & Navathe.pdf
│ ├── Learning Node.pdf
│ ├── mastering-bitcoin.pdf
│ ├── Mastering Node.js.pdf
│ ├── Node.js in Action.pdf
│ ├── Software-Engineering 7th ED by Roger S. Pressman
│ ├── the_c_programming_language_2.pdf
│ ├── write_great_code_volume_1.pdf
│ └── write_great_code_volume_2.pdf
├── images
│ └── favicon.png
├── index.html
├── js
│ └── main.js
├── LICENSE
├── photos
│ ├── WhatsApp Image 2018-01-03 at 9.13.04 AM.jpeg
│ ├── WhatsApp Image 2018-01-03 at 9.13.10 AM.jpeg
│ ├── WhatsApp Image 2018-01-03 at 9.13.20 AM.jpeg
│ ├── WhatsApp Image 2018-01-03 at 9.13.30 AM.jpeg
│ └── WhatsApp Image 2018-01-03 at 9.13.36 AM.jpeg
├── README.md
└── strings-gfg
├── arrayDecay
├── arrayDecay.cpp
├── creverse
├── creverse.c
├── cstring1
├── cstring1.c
├── cstring2
├── cstring2.cpp
├── pangram
├── pangram.cpp
├── pystrings1.py
├── remove-dups
├── remove-dups.cpp
├── stringDecay
├── stringDecay.cpp
├── string-rev-no-special-chars
├── string-rev-no-special-chars.cpp
├── wordReverse
└── wordReverse.c
</code></pre>
</body>
</html>