-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.json
343 lines (337 loc) · 10.9 KB
/
profile.json
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
{
"test": {
"id": 0,
"name": "C",
"introduction": "C is a general-purpose programming language that was first developed in the 1970s. It is one of the most widely used programming languages of all time and is known for its efficiency and flexibility.",
"syntax": "C syntax is similar to many other programming languages, but it has a few features that make it unique. For example, C uses semicolons to end statements instead of newlines like Python or Ruby."
},
"java": {
"name": "Java",
"introduction": "Java is a popular programming language developed by Sun Microsystems and now owned by Oracle. It was first released in 1995 and is known for its portability and security features.",
"syntax": "Java syntax is similar to C++ syntax, but with fewer low-level facilities. The language is object-oriented and includes features like automatic memory management and a strong type system.",
"dataTypes": [
"byte",
"short",
"int",
"long",
"float",
"double",
"char",
"boolean"
],
"uses": [
"Desktop Applications",
"Web Applications",
"Mobile Applications",
"Game Development",
"Big Data",
"Cloud Computing"
],
"examples": [
{
"title": "Hello World",
"code": "public class HelloWorld {\n public static void main(String[] args) {\n System.out.println(\"Hello, World!\");\n }\n}"
},
{
"title": "Bubble Sort",
"code": "void bubbleSort(int arr[]) {\n int n = arr.length;\n for (int i = 0; i < n-1; i++)\n for (int j = 0; j < n-i-1; j++)\n if (arr[j] > arr[j+1])\n {\n int temp = arr[j];\n arr[j] = arr[j+1];\n arr[j+1] = temp;\n }\n}"
}
],
"frameworks": [
"Spring",
"Hibernate",
"Struts",
"JavaServer Faces (JSF)",
"Apache Wicket"
],
"forums": [
{
"name": "JavaRanch",
"url": "https://coderanch.com/"
},
{
"name": "Stack Overflow",
"url": "https://stackoverflow.com/questions/tagged/java"
},
{
"name": "Reddit Java",
"url": "https://www.reddit.com/r/java/"
}
]
},
"python": {
"name": "Python",
"introduction": "Python is a high-level programming language that was first released in 1991. It is known for its simplicity, readability, and ease of use. Python is used for a wide variety of applications, from web development to scientific computing.",
"syntax": "Python syntax is designed to be easy to read and write. It uses indentation to indicate code blocks instead of curly braces like many other programming languages. Python is dynamically typed, which means that the type of a variable is determined at runtime rather than at compile time.",
"dataTypes": [
"int",
"float",
"complex",
"bool",
"str",
"list",
"tuple",
"set",
"dict"
],
"uses": [
"Web Development",
"Scientific Computing",
"Data Analysis",
"Artificial Intelligence",
"Machine Learning",
"Scripting"
],
"examples": [
{
"title": "Hello World",
"code": "print(\"Hello, World!\")"
},
{
"title": "Factorial",
"code": "def factorial(n):\n if n == 0:\n return 1\n else:\n return n * factorial(n-1)"
}
],
"frameworks": [
"Django",
"Flask",
"Pyramid",
"Bottle",
"CherryPy"
],
"forums": [
{
"name": "Python.org",
"url": "https://www.python.org/community/forums/"
},
{
"name": "Reddit Python",
"url": "https://www.reddit.com/r/Python/"
},
{
"name": "Stack Overflow",
"url": "https://stackoverflow.com/questions/tagged/python"
}
]
}
,
"javascript": {
"name": "JavaScript",
"introduction": "JavaScript is a high-level, interpreted programming language that is widely used on the web. It was first released in 1995 and is known for its versatility and ability to run on both the client and server-side.",
"syntax": "JavaScript syntax is similar to C syntax, but with additional features and more flexible typing. It is an object-oriented language, but also supports functional programming styles.",
"dataTypes": [
"Number",
"String",
"Boolean",
"Null",
"Undefined",
"Symbol",
"Object"
],
"uses": [
"Web Development",
"Mobile App Development",
"Desktop App Development",
"Server-side Development",
"Game Development",
"Internet of Things (IoT)"
],
"examples": [
{
"title": "Hello World",
"code": "console.log('Hello, World!');"
},
{
"title": "FizzBuzz",
"code": "for (var i = 1; i <= 100; i++) {\n var output = '';\n if (i % 3 === 0) output += 'Fizz';\n if (i % 5 === 0) output += 'Buzz';\n console.log(output || i);\n}"
}
],
"frameworks": [
"React",
"Angular",
"Vue.js",
"Node.js",
"Express",
"Meteor"
],
"forums": [
{
"name": "Stack Overflow",
"url": "https://stackoverflow.com/questions/tagged/javascript"
},
{
"name": "Reddit JavaScript",
"url": "https://www.reddit.com/r/javascript/"
},
{
"name": "JavaScript Daily",
"url": "https://javascriptdaily.github.io/"
}
]
},
"c++": {
"name": "C++",
"introduction": "C++ is a general-purpose programming language that was created as an extension of the C programming language. It was first released in 1985 and is known for its high performance and efficiency, making it a popular choice for developing system software, device drivers, and other applications that require low-level memory manipulation.",
"syntax": "C++ syntax is similar to C syntax, but with additional features like object-oriented programming, templates, and exception handling. The language includes support for low-level programming, such as memory management, pointers, and arrays.",
"dataTypes": [
"int",
"float",
"double",
"char",
"bool",
"void"
],
"uses": [
"System software",
"Device drivers",
"Embedded systems",
"High-performance servers",
"Game engines",
"Financial systems"
],
"examples": [
{
"title": "Hello World",
"code": "#include <iostream>\n\nint main() {\n std::cout << \"Hello, World!\" << std::endl;\n return 0;\n}"
},
{
"title": "Bubble Sort",
"code": "void bubbleSort(int arr[], int n) {\n int i, j;\n for (i = 0; i < n-1; i++)\n for (j = 0; j < n-i-1; j++)\n if (arr[j] > arr[j+1])\n std::swap(arr[j], arr[j+1]);\n}"
}
],
"frameworks": [
"Qt",
"Boost",
"STL",
"MFC",
"ACE"
],
"forums": [
{
"name": "C++ Forum",
"url": "http://www.cplusplus.com/forum/"
},
{
"name": "Stack Overflow",
"url": "https://stackoverflow.com/questions/tagged/c%2B%2B"
},
{
"name": "Reddit C++",
"url": "https://www.reddit.com/r/cpp/"
}
]
},
"csharp": {
"name": "C#",
"introduction": "C# is a popular modern programming language developed by Microsoft as part of the .NET initiative. It was first released in 2000 and is known for its ease of use, strong typing, and object-oriented features.",
"syntax": "C# syntax is similar to that of Java and C++. It includes features like garbage collection, type safety, and support for generics and lambdas.",
"dataTypes": [
"bool",
"byte",
"char",
"decimal",
"double",
"float",
"int",
"long",
"object",
"sbyte",
"short",
"string",
"uint",
"ulong",
"ushort"
],
"uses": [
"Desktop Applications",
"Web Applications",
"Game Development",
"Mobile Applications",
"Windows Services",
"Cloud Computing"
],
"examples": [
{
"title": "Hello World",
"code": "using System;\n\nnamespace HelloWorld\n{\n class Program\n {\n static void Main(string[] args)\n {\n Console.WriteLine(\"Hello World!\");\n }\n }\n}"
},
{
"title": "Bubble Sort",
"code": "void bubbleSort(int[] arr)\n{\n int n = arr.Length;\n for (int i = 0; i < n - 1; i++)\n for (int j = 0; j < n - i - 1; j++)\n if (arr[j] > arr[j + 1])\n {\n int temp = arr[j];\n arr[j] = arr[j + 1];\n arr[j + 1] = temp;\n }\n}"
}
],
"frameworks": [
".NET Framework",
"ASP.NET",
".NET Core",
"Unity",
"Windows Presentation Foundation (WPF)"
],
"forums": [
{
"name": "Stack Overflow",
"url": "https://stackoverflow.com/questions/tagged/c%23"
},
{
"name": "C# Corner",
"url": "https://www.c-sharpcorner.com/"
},
{
"name": "r/csharp",
"url": "https://www.reddit.com/r/csharp/"
}
]
},
"php": {
"name": "PHP",
"introduction": "PHP is a server-side scripting language designed primarily for web development. It was first released in 1995 and is widely used for creating dynamic web pages and web applications.",
"syntax": "PHP syntax is similar to C syntax, but with additional features for web development like built-in functions for interacting with databases and handling HTTP requests.",
"dataTypes": [
"integer",
"float",
"string",
"boolean",
"array",
"object",
"resource",
"null"
],
"uses": [
"Web Development",
"Server-Side Scripting",
"Command-Line Scripting",
"GUI Applications"
],
"examples": [
{
"title": "Hello World",
"code": "<?php\n echo \"Hello, World!\";\n?>"
},
{
"title": "FizzBuzz",
"code": "<?php\n for ($i = 1; $i <= 100; $i++) {\n if ($i % 3 == 0 && $i % 5 == 0) {\n echo \"FizzBuzz\\n\";\n } elseif ($i % 3 == 0) {\n echo \"Fizz\\n\";\n } elseif ($i % 5 == 0) {\n echo \"Buzz\\n\";\n } else {\n echo $i . \"\\n\";\n }\n }\n?>"
}
],
"frameworks": [
"Laravel",
"Symfony",
"CodeIgniter",
"CakePHP",
"Zend Framework"
],
"forums": [
{
"name": "PHP.net",
"url": "https://www.php.net/manual/en/index.php"
},
{
"name": "Stack Overflow",
"url": "https://stackoverflow.com/questions/tagged/php"
},
{
"name": "Reddit PHP",
"url": "https://www.reddit.com/r/PHP/"
}
]
}
}