-
Notifications
You must be signed in to change notification settings - Fork 2
/
code.html
78 lines (68 loc) · 2.82 KB
/
code.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
<html>
<head>
<title> Books and References </title>
<link rel="stylesheet" href="https://developer.android.com/_static/c3460225a3/css/devsite-android-light-grey.css">
<link rel="stylesheet" href="https://developer.android.com/_static/c3460225a3/css/android/android-site.css">
<style>
footer {
position: fixed;
left:0px;
bottom:0px;
height:wrap;
width:100%;
background-color: #d9dce0;
padding: 10px;
text-align: center;
color: white;
}
</style>
</head>
<body>
<!-- Latest compiled and minified CSS -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<div class="container">
<div class="jumbotron">
<h1>< Code-Snippets > </h1>
<h5 align="right"><a href="https://johnsoncarl.github.io/Books/">Back</a></h5>
<!--<h3> : <small> </small></h3>-->
</div>
<table class="table table-striped">
<thead>
<tr>
<th>Sr.No.</th>
<th>Use</th>
<th> Code </th>
</tr>
</thead>
<tbody>
<tr>
<td>1.</td>
<td>Add path env variable(was required to open pycharm with just pycharm.sh)</td>
<!-- ADDING CODE OTHER CODES MUST BE IN EXACTLY SAME FORMAT, MIND THE SPACES GIVEN BEFORE EACH NEW LINE OF CODE-->
<td>
<pre><div class="devsite-code-button-wrapper"></div> echo $PATH
export PATH=$PATH:/path/to/my/program
echo $PATH
</pre>
</td>
</tr>
<tr>
<td>2.</td>
<td>API to directly compose email to a particular email address</td>
<!-- ADDING CODE OTHER CODES MUST BE IN EXACTLY SAME FORMAT, MIND THE SPACES GIVEN BEFORE EACH NEW LINE OF CODE-->
<td>
<pre><div class="devsite-code-button-wrapper"></div> https://mail.google.com/mail/?view=cm&fs=1&to=someone@example.com&su=SUBJECT&body=BODY&bcc=someone.else@example.com
</pre>
</td>
</tr>
</tbody>
</table>
</div>
<footer><h4>©Copyright</h4><br><u><a href="https://mail.google.com/mail/?view=cm&fs=1&to=aman0902pandey@gmail.com&su=Regarding%20Library&body=Hello%20AMAN%0A">Mail to:Aman Pandey</u><br><u><a href="https://mail.google.com/mail/?view=cm&fs=1&to=ujjwalkumar0501@gmail.com&su=Regarding%20Library&body=Hello%20UJJWAL%0A">Mail to:Ujjwal Kumar</u></a></footer>
</body>
</html>