-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.json
More file actions
89 lines (89 loc) · 1.89 KB
/
sample.json
File metadata and controls
89 lines (89 loc) · 1.89 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
[
{
"snippet": "for(int i=10; i>1; i--){\n System.out.println(\"The value of i is: \"+i);\n}",
"title": "for loop",
"languages": [
"Java"
],
"id": 35
},
{
"snippet": "for i in $( ls ); do\n echo item: $i\ndone",
"title": "for loop",
"languages": [
"Bash"
],
"id": 34
},
{
"snippet": "for( a = 10; a < 20; a = a + 1 ){\n printf(\"value of a: %d\\n\", a);\n}",
"title": "for loop",
"languages": [
"C"
],
"id": 33
},
{
"snippet": " dd if=/home/downloads/windows7.iso of=/dev/sdc",
"title": "dd iso",
"languages": [
"Ubuntu",
" Debian"
],
"id": 32
},
{
"snippet": "for (i = 0; i < cars.length; i++) {\n text += cars[i] + \"<br>\";\n} ",
"title": "for loop",
"languages": [
"Javascript"
],
"id": 31
},
{
"snippet": "for (int a = 10; a < 20; a = a + 1) {\n Console.WriteLine(\"value of a: {0}\", a);\n}",
"title": "for loop",
"languages": [
"C#"
],
"id": 26
},
{
"snippet": "for( int a = 10; a < 20; a = a + 1 ) {\n cout << \"value of a: \" << a << endl;\n }",
"title": "for loop",
"languages": [
"C++"
],
"id": 24
},
{
"snippet": "ssh remote_username@remote_host",
"title": "ssh in machine",
"id": 22
},
{
"snippet": " days = {\"Sunday\", \"Monday\", \"Tuesday\", \"Wednesday\"}\n",
"title": "create table lua",
"languages": [
"Lua"
],
"id": 21
},
{
"snippet": "sudo apt-get --purge remove && sudo apt-get autoremove && sudo apt-get clean",
"title": "uninstall app",
"languages": [
"Ubuntu",
" Debian"
],
"id": 20
},
{
"snippet": "names = {'John', 'Joe', 'Steve'}\nfor i, name in ipairs(names) do\n print (name)\nend",
"title": "for loop list",
"languages": [
"Lua"
],
"id": 19
}
]