-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml5-bookmarks-programming.html
More file actions
99 lines (99 loc) · 3.73 KB
/
html5-bookmarks-programming.html
File metadata and controls
99 lines (99 loc) · 3.73 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
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" >
<title>HTML5 Bookmarks</title>
<style>
body {
background-color: #000000;
color: #FFFFFF;
font-family: monospace;
}
h1 {
background-color: #585858;
color: #FFFFFF;
}
h2 {
background-color: #585858;
color: #FFFFFF;
}
a:link {
color: #FF0000;
}
a:visited {
color: #00FF00;
}
</style>
</head>
<body>
<h1>Computer Programming Languages</h1>
<h2>C and C++</h2>
<p>
<a href="https://www.open-std.org/jtc1/sc22/wg14">C Official Website</a><br>
<a href="https://www.open-std.org/jtc1/sc22/wg21">C++ Official Website</a><br>
<a href="https://isocpp.org/">ISO C++</a><br>
<a href="https://en.cppreference.com/">Cppreference.com</a><br>
<a href="https://www.cplusplus.com/">Cplusplus.com</a><br>
<a href="https://www.cprogramming.com/">Cprogramming.com</a><br>
<a href="https://www.learncpp.com/">LearnCpp.com</a><br>
<a href="https://www.hal9k.com/cug/">C/C++ Users Group</a><br>
<a href="https://en.wikipedia.org/wiki/C_(programming_language)">Wikipedia: C</a><br>
<a href="https://en.wikipedia.org/wiki/C%2B%2B">Wikipedia: C++</a><br>
<a href="https://www.curlie.org/en/Computers/Programming/Languages/C">Curlie: C</a><br>
<a href="https://www.curlie.org/en/Computers/Programming/Languages/C%2B%2B">Curlie: C++</a><br>
<a href="https://rosettacode.org/wiki/C">Rosetta Code: C</a><br>
<a href="https://rosettacode.org/wiki/C%2B%2B">Rosetta Code: C++</a><br>
</p>
<h2>D (Dlang)</h2>
<p>
<a href="https://dlang.org/">D Official Website</a><br>
<a href="https://ddili.org/ders/d.en/index.html">Programming in D</a><br>
<a href="https://en.wikipedia.org/wiki/D_(programming_language)">Wikipedia: D</a><br>
<a href="https://www.curlie.org/en/Computers/Programming/Languages/D">Curlie: D</a><br>
</p>
<h2>Go (Golang)</h2>
<p>
<a href="https://go.dev/">Go Official Website</a><br>
<a href="https://github.com/golang">Github: Golang</a><br>
<a href="https://pkg.go.dev/">Go Packages</a><br>
<a href="https://en.wikipedia.org/wiki/Go_%28programming_language%29">Wikipedia: Go</a><br>
</p>
<h2>Python</h2>
<p>
<a href="https://www.python.org/">Python Official Website</a><br>
<a href="https://learning-python.com/">Learning Python</a><br>
<a href="https://en.wikipedia.org/wiki/Python_%28programming_language%29">Wikipedia: Python</a><br>
<a href="https://www.curlie.org/en/Computers/Programming/Languages/Python">Curlie: Python</a><br>
</p>
<h2>Nim</h2>
<p>
<a href="https://nim-lang.org/">Nim Official Website</a><br>
<a href="https://github.com/nim-lang/">Github: Nim</a><br>
<a href="https://forum.nim-lang.org/">Forum</a><br>
<a href="https://en.wikipedia.org/wiki/Nim_%28programming_language%29">Wikipedia: Nim</a><br>
<a href="https://rosettacode.org/wiki/Nim">Rosetta Code: Nim</a><br>
</p>
<h2>V (Vlang)</h2>
<p>
<a href="https://vlang.io/">V Main Website</a><br>
<a href="https://github.com/vlang/">Github: Vlang</a><br>
</p>
<h2>Online Compilers</h2>
<p>
<a href="https://www.onlinegdb.com/">GDB Online</a><br>
<a href="https://www.jdoodle.com/">JDoodle</a><br>
<a href="https://www.tutorialspoint.com/compile_cpp_online.php">Tutorials Point</a><br>
<a href="https://ideone.com/l/cpp">Ideone.com</a><br>
<a href="https://onecompiler.com/cpp">One Compiler</a><br>
<a href="https://repl.it/">Repl.it</a><br>
<a href="https://rextester.com/l/cpp_online_compiler_gcc">Rex Tester</a><br>
<a href="https://codepad.org/">Codepad</a><br>
<a href="https://godbolt.org/">Compiler Explorer</a><br>
<a href="https://arnemertz.github.io/online-compilers/">List of Online C++ Compilers</a> (C++)<br>
<a href="https://cpp.sh/">C++.sh</a> (C++)<br>
<a href="https://coliru.stacked-crooked.com/">Coliru</a> (C++)<br>
<a href="https://play.golang.org/">The Go Playground</a> (Go)<br>
<a href="https://v-wasm.vercel.app/">V-Wasm</a> (V)<br>
</p>
</body>
</html>