-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex4.html
More file actions
230 lines (228 loc) · 14.9 KB
/
index4.html
File metadata and controls
230 lines (228 loc) · 14.9 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Dreams of thought</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/theme/styles.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="/theme/slicknav.css">
<script src="/theme/jquery.slicknav.min.js"></script>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script type="text/javascript"
src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6.2/html5shiv.js"></script>
<![endif]-->
<script>
$(function(){
$('#menu').slicknav({'label':''});
});
</script>
<link rel="icon" href="/theme/favicon.ico" sizes="16x16 32x32 48x48 64x64" type="image/vnd.microsoft.icon">
<link rel="apple-touch-icon" sizes="114x114" href="/theme/apple-touch-icon-precomposed.png">
<link rel="apple-touch-icon" sizes="152x152" href="/theme/favicon152.png">
<link rel="apple-touch-icon" sizes="196x196" href="/theme/favicon196.png">
</head>
<body>
<div id="wrapper">
<header>
<nav class="byline"><ul id="menu">
</ul></nav><!-- /#menu -->
<div class="downloads">
<a href="#" class="fa fa-Twitter"></a>
<a href="#" class="fa fa-Github"></a>
</div>
<hgroup>
<h1>Dreams of thought</h1>
<h2 class="tagline"></h2>
</hgroup>
</header>
<section id="content">
<ul id="post-list">
<li><article class="hentry">
<header class="article-list"> <h2 class="entry-title"><a href="./how-to-update-a-field-in-a-table-with-a-field-from-another-table.html" rel="bookmark" title="link to How to update a field in a table with a field from another table">How to update a field in a table with a field from another table</a></h2>
<footer class="post-info">
<address class="vcard author">By
<a class="url fn" href="./author/admin.html">admin</a>
</address>
<abbr class="published" title="2010-12-07T15:15:00+05:30"> on 07.12.2010 </abbr>
</footer><!-- /.post-info -->
</header>
<div class="entry-content"> <p>I needed a table which gave the map between the URLs and nodes in
drupal. I ended up creating a table like this :</p>
<div class="line-block">
<div class="line">CREATE TABLE `nid_url_map` (</div>
<div class="line-block">
<div class="line">`nid` int(10) NOT NULL DEFAULT '0',</div>
<div class="line">`url` varchar(255) DEFAULT NULL,</div>
<div class="line">`type` varchar(32) DEFAULT NULL,</div>
<div class="line">PRIMARY KEY (`nid`)</div>
</div>
<div class="line">) ENGINE=InnoDB DEFAULT CHARSET …</div></div> </div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header class="article-list"> <h2 class="entry-title"><a href="./ice-cream-bunny.html" rel="bookmark" title="link to Ice Cream Bunny">Ice Cream Bunny</a></h2>
<footer class="post-info">
<address class="vcard author">By
<a class="url fn" href="./author/admin.html">admin</a>
</address>
<abbr class="published" title="2010-11-26T01:14:00+05:30"> on 26.11.2010 </abbr>
</footer><!-- /.post-info -->
</header>
<div class="entry-content"> <p>Once upon a time there was a cute bunny</p>
<p><a class="reference external" href="http://gingerjoos.com/blog/wp-content/uploads/2010/11/bunny11.jpg"><img alt="Cute bunny" src="http://gingerjoos.com/blog/wp-content/uploads/2010/11/bunny11-300x244.jpg" /></a></p>
<p>The bunny was going about its usual exercise of sleeping and eating and
sleeping and eating when suddenly it saw some really yummy ice cream.</p>
<p><a class="reference external" href="http://gingerjoos.com/blog/wp-content/uploads/2010/11/icecream.gif"><img alt="icecream" src="http://gingerjoos.com/blog/wp-content/uploads/2010/11/icecream-150x150.gif" /></a></p>
<p>Bunny felt very happy</p>
<p><a class="reference external" href="http://gingerjoos.com/blog/wp-content/uploads/2010/11/bunny_heaven.jpg"><img alt="Bunny very happy" src="http://gingerjoos.com/blog/wp-content/uploads/2010/11/bunny_heaven.jpg" /></a></p>
<p>Bunny went to task without wasting time</p>
<p><a class="reference external" href="http://gingerjoos.com/blog/wp-content/uploads/2010/11/cute-bunny-in-dress.jpg"><img alt="Cute bunny eating" src="http://gingerjoos.com/blog/wp-content/uploads/2010/11/cute-bunny-in-dress-300x225.jpg" /></a></p>
<p>Little did Bunny know that …</p> </div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header class="article-list"> <h2 class="entry-title"><a href="./happy-birthday-anup.html" rel="bookmark" title="link to Happy Birthday, Anup">Happy Birthday, Anup</a></h2>
<footer class="post-info">
<address class="vcard author">By
<a class="url fn" href="./author/admin.html">admin</a>
</address>
<abbr class="published" title="2010-11-18T00:00:00+05:30"> on 18.11.2010 </abbr>
</footer><!-- /.post-info -->
</header>
<div class="entry-content"> <p>My best buddy and roommate Anup Mohan is celebrating his birthday today.
He's a wonderful friend and a great person. Selfless, dedicated and
helpful - he has often pulled me out of trouble. Here's to a friend
worth dying for - Happy Birthday, Anup :)</p>
<p>Now that we're done with that, let's move …</p> </div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header class="article-list"> <h2 class="entry-title"><a href="./wordpress-unable-to-create-directory-error-when-uploading-images.html" rel="bookmark" title="link to Wordpress - Unable to create directory error when uploading images">Wordpress - Unable to create directory error when uploading images</a></h2>
<footer class="post-info">
<address class="vcard author">By
<a class="url fn" href="./author/admin.html">admin</a>
</address>
<abbr class="published" title="2010-11-16T20:12:00+05:30"> on 16.11.2010 </abbr>
</footer><!-- /.post-info -->
</header>
<div class="entry-content"> <p>Unable to create directory<DIRECTORY NAME> . Is its parent directory
writable by the server?</p>
<p>This error seem familiar to you? I got this error when trying to upload
an image on wordpress. I checked the directory mentioned in the error
and it did not exist. It so happened that Dreamhost …</p> </div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header class="article-list"> <h2 class="entry-title"><a href="./waiting-for-potc4.html" rel="bookmark" title="link to Waiting for Pirates of the Caribbean 4 : On Stranger Tides">Waiting for Pirates of the Caribbean 4 : On Stranger Tides</a></h2>
<footer class="post-info">
<address class="vcard author">By
<a class="url fn" href="./author/admin.html">admin</a>
</address>
<abbr class="published" title="2010-11-16T19:51:00+05:30"> on 16.11.2010 </abbr>
</footer><!-- /.post-info -->
</header>
<div class="entry-content"> <p>News is that the teaser poster for <a class="reference external" href="http://www.imdb.com/title/tt1298650/">Pirates of the Caribbean 4 : On
Stranger Tides</a> has been
released. It was released on<a class="reference external" href="http://twitter.com/BruckheimerJB/status/4262897416937472">twitter by Jerry
Bruckheimer</a>
( the producer ).</p>
<p><a class="reference external" href="http://gingerjoos.com/blog/wp-content/uploads/2010/11/pirates_of_the_caribbean_4.jpg"><img alt="Pirates of the Caribbean 4 teaser poster" src="http://gingerjoos.com/blog/wp-content/uploads/2010/11/pirates_of_the_caribbean_4-150x150.jpg" /></a></p>
<p>It will be great to see Capt Jack Sparrow again. Johnny Depp is one of
my favourite actors and Jack Sparrow (Capt …</p> </div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header class="article-list"> <h2 class="entry-title"><a href="./can-anyone-translate-%e0%b4%86%e0%b4%95%e0%b5%8d%e0%b4%b0%e0%b4%be%e0%b4%a8%e0%b5%8d%e0%b4%a4%e0%b4%82.html" rel="bookmark" title="link to Can anyone translate ആക്രാന്തം ?">Can anyone translate ആക്രാന്തം ?</a></h2>
<footer class="post-info">
<address class="vcard author">By
<a class="url fn" href="./author/admin.html">admin</a>
</address>
<abbr class="published" title="2010-11-15T17:03:00+05:30"> on 15.11.2010 </abbr>
</footer><!-- /.post-info -->
</header>
<div class="entry-content"> <p>I can't find a suitable translation for the malayalam word ആക്രാന്തം (
aakraantham ). The <a class="reference external" href="http://www.google.com/dictionary?aq=f&langpair=ml|en&q=%E0%B4%86%E0%B4%95%E0%B5%8D%E0%B4%B0%E0%B4%BE%E0%B4%A8%E0%B5%8D%E0%B4%A4%E0%B4%82+&hl=en">Google
translation</a>
for the word is not accurate. Or is it one of those words which cannot
really be translated to another language?</p>
<p>I would be happy to hear about equivalent words in other …</p> </div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header class="article-list"> <h2 class="entry-title"><a href="./how-to-generate-a-qr-code-to-a-link-online.html" rel="bookmark" title="link to How to generate a QR code to a link online">How to generate a QR code to a link online</a></h2>
<footer class="post-info">
<address class="vcard author">By
<a class="url fn" href="./author/admin.html">admin</a>
</address>
<abbr class="published" title="2010-10-28T14:01:00+05:30"> on 28.10.2010 </abbr>
</footer><!-- /.post-info -->
</header>
<div class="entry-content"> <p><img alt="QR code" src="http://files.gingerjoos.com/images/gingerjoos_blog_QR.png" /></p>
<p>A QR code is a 2-dimensional bar code. Barcodes are commonly found in
the packages of products you buy and often hold a unique number. This
unique number is often used to refer to a product. There are many online
databases which allow you to then lookup this number and …</p> </div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header class="article-list"> <h2 class="entry-title"><a href="./irctc-releases-new-version-of-its-site.html" rel="bookmark" title="link to IRCTC releases new version of its site">IRCTC releases new version of its site</a></h2>
<footer class="post-info">
<address class="vcard author">By
<a class="url fn" href="./author/admin.html">admin</a>
</address>
<abbr class="published" title="2010-09-10T07:40:00+05:30"> on 10.09.2010 </abbr>
</footer><!-- /.post-info -->
</header>
<div class="entry-content"> <p>IRCTC has released a new version of its site. This version of its site
had been in beta for a while. The new site is easier to use when
planning a journey. Watch out for more details here.</p>
<p>The new site gives a very good interface if you're going to …</p> </div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header class="article-list"> <h2 class="entry-title"><a href="./movie-review-inception.html" rel="bookmark" title="link to Movie review : Inception">Movie review : Inception</a></h2>
<footer class="post-info">
<address class="vcard author">By
<a class="url fn" href="./author/admin.html">admin</a>
</address>
<abbr class="published" title="2010-07-18T17:30:00+05:30"> on 18.07.2010 </abbr>
</footer><!-- /.post-info -->
</header>
<div class="entry-content"> <p>So I watched Inception today and here's the once sentence verdict - You
<strong>have</strong> to watch this one. First, the trailer -</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><embed type="application/x-shockwave-flash" width="640" height="385" src="http://www.youtube.com/v/mmkQ7fw-l0g&hl=en_US&fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p><p>I've been a fan of <a class="reference external" href="http://en.wikipedia.org/wiki/Christopher_Nolan">Christopher
Nolan</a> ever since I
saw <a class="reference external" href="http://en.wikipedia.org/wiki/Memento_(film)">Memento</a>. This one
has only strengthened the respect I have felt for him. In
<a class="reference external" href="http://en.wikipedia.org/wiki/Inception_%28film%29">Inception</a>he
deals with a …</p> </div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header class="article-list"> <h2 class="entry-title"><a href="./what-not-to-do-when-you-are-sleepy.html" rel="bookmark" title="link to What not to do when you are sleepy">What not to do when you are sleepy</a></h2>
<footer class="post-info">
<address class="vcard author">By
<a class="url fn" href="./author/admin.html">admin</a>
</address>
<abbr class="published" title="2010-07-17T18:19:00+05:30"> on 17.07.2010 </abbr>
</footer><!-- /.post-info -->
</header>
<div class="entry-content"> <p>1. Write blog posts. Especially ones about "What not to do when you are
sleepy".</p>
<ol class="arabic simple" start="2">
<li>Write emails. Yeah, that angry one you're sending - no, don't do it.</li>
<li>Sleep on food. Unless of course you want to smell like pastries.</li>
<li>Speak on the phone. Yaawnn.. no I don't want that credit …</li></ol> </div><!-- /.entry-content -->
</article></li>
</ul><!-- /#posts-list -->
<p class="paginator">
<a href="./index3.html">«</a>
Page 4 / 10
<a href="./index5.html">»</a>
</p>
</section><!-- /#content -->
<footer>
<a href="./pages/about.html" >About</a>
<div class="right-footer">
<a href="./categories.html" >Categories</a>
<a href="./tags.html" >Tags</a>
</div>
</footer>
</body>
</html>