-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews_site(2).sql
384 lines (321 loc) · 114 KB
/
news_site(2).sql
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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
-- phpMyAdmin SQL Dump
-- version 4.8.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jul 13, 2019 at 05:13 AM
-- Server version: 10.1.37-MariaDB
-- PHP Version: 5.6.40
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `news site`
--
-- --------------------------------------------------------
--
-- Table structure for table `categories`
--
CREATE TABLE `categories` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `categories`
--
INSERT INTO `categories` (`id`, `name`, `created_at`) VALUES
(1, 'bussiness', '2019-05-27 20:11:46'),
(2, 'technology', '2019-05-27 20:11:46'),
(3, 'news', '2019-05-29 09:12:34');
-- --------------------------------------------------------
--
-- Table structure for table `comments`
--
CREATE TABLE `comments` (
`id` int(11) NOT NULL,
`comment` varchar(255) NOT NULL,
`post` int(11) NOT NULL,
`user` varchar(255) NOT NULL,
`user_role` varchar(30) NOT NULL,
`Status` varchar(30) NOT NULL,
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `comments`
--
INSERT INTO `comments` (`id`, `comment`, `post`, `user`, `user_role`, `Status`, `date`) VALUES
(1, 'Comment as Vishal', 15, 'Vishal', 'admin', 'Approved', '2019-06-08 20:01:54'),
(2, 'Second Comment', 15, 'Vishal', 'admin', 'Approved', '2019-06-08 20:04:26'),
(3, 'Yet another comment', 16, 'Vishal', 'admin', 'Approved', '2019-06-08 20:08:37'),
(4, 'Gonna comment in Post...Fingers Crossed', 23, 'Vishal', 'admin', 'Approved', '2019-06-08 20:16:31'),
(5, 'I really like this Handsome man in the photo...Can I get his Number??..', 20, 'User', 'subscriber', 'Approved', '2019-06-08 20:19:05'),
(6, 'I don\'t Think So', 15, 'User', 'subscriber', 'Approved', '2019-06-08 20:20:05'),
(7, 'The Poster is really Nice', 22, 'Vishal', 'admin', 'Approved', '2019-06-08 20:22:56'),
(8, 'There\'s one more;', 15, 'Vishal', 'admin', 'Approved', '2019-06-08 20:54:56'),
(9, 'And One More for testing purpose', 15, 'Vishal', 'admin', 'Approved', '2019-06-08 20:59:51'),
(10, 'and once again', 15, 'Vishal', 'admin', 'Approved', '2019-06-08 21:00:14'),
(11, 'You weren\'t lying', 23, 'Admin', 'admin', 'Approved', '2019-06-08 21:03:13'),
(12, 'I didn\'t think you are actually gonna do it..', 23, 'Admin', 'admin', 'Approved', '2019-06-08 21:03:35'),
(13, 'Hahahaahahaahahha', 23, 'User', 'subscriber', 'Approved', '2019-06-08 21:04:39'),
(14, 'Well Offcourse You can..', 20, 'Vishal', 'admin', 'Approved', '2019-06-10 18:06:27'),
(15, 'Well Offcourse You can..', 20, 'Vishal', 'admin', 'Approved', '2019-06-10 18:06:33'),
(16, 'its 8755755073', 20, 'Vishal', 'admin', 'Approved', '2019-06-10 18:07:29'),
(17, 'trying comment counting feature', 16, 'Vishal', 'admin', 'Approved', '2019-06-10 18:08:18'),
(18, 'and again', 15, 'Vishal', 'admin', 'Approved', '2019-06-10 18:09:25'),
(19, 'and again', 15, 'Vishal', 'admin', 'Approved', '2019-06-10 18:10:24'),
(20, 'there we go again', 15, 'Vishal', 'admin', 'Approved', '2019-06-10 18:10:40'),
(21, 'happy Now', 20, 'Vishal', 'admin', 'Approved', '2019-06-10 18:13:06'),
(22, 'comment', 20, 'Vishal', 'admin', 'Approved', '2019-06-10 18:13:37'),
(23, 'again', 20, 'Vishal', 'admin', 'Approved', '2019-06-10 18:15:44'),
(24, 'now its should work..I have gone basic for this', 20, 'Vishal', 'admin', 'Approved', '2019-06-10 18:18:15'),
(25, 'i liked it', 30, 'Admin', 'admin', 'Approved', '2019-06-11 11:23:30'),
(26, 'Nice Pic ', 20, 'Ajit', 'subscriber', 'Approved', '2019-06-18 04:26:39');
-- --------------------------------------------------------
--
-- Table structure for table `comments_forum`
--
CREATE TABLE `comments_forum` (
`id` int(11) NOT NULL,
`comment` varchar(255) NOT NULL,
`thread` int(11) NOT NULL,
`user` varchar(255) NOT NULL,
`user_role` varchar(255) NOT NULL,
`status` varchar(255) NOT NULL,
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `comments_forum`
--
INSERT INTO `comments_forum` (`id`, `comment`, `thread`, `user`, `user_role`, `status`, `date`) VALUES
(1, 'Me Neither', 3, 'Vishal', 'admin', 'Approved', '2019-07-12 07:24:40'),
(2, 'haahaha', 3, 'Vishal', 'admin', 'Approved', '2019-07-12 07:24:48'),
(3, 'Yes It Does', 1, 'Vishal', 'admin', 'Approved', '2019-07-12 07:25:06'),
(4, 'it is working', 1, 'Vishal', 'admin', 'Approved', '2019-07-12 07:39:47'),
(5, 'It Does Work.', 3, 'Admin', 'admin', 'Approved', '2019-07-12 09:47:18'),
(6, 'That\'s why U were able to comment', 3, 'Admin', 'admin', 'Approved', '2019-07-12 09:47:32');
-- --------------------------------------------------------
--
-- Table structure for table `forum`
--
CREATE TABLE `forum` (
`id` int(11) NOT NULL,
`question` varchar(255) NOT NULL,
`slug` varchar(255) NOT NULL,
`answers` int(11) NOT NULL,
`views` int(11) NOT NULL,
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `forum`
--
INSERT INTO `forum` (`id`, `question`, `slug`, `answers`, `views`, `date`) VALUES
(1, 'Does this forum Work', 'Does-this-forum-work', 2, 7, '2019-07-12 06:23:42'),
(3, 'I don\'t think it works, Do You?', 'I-dont-think-it-works-Do-You', 4, 8, '2019-07-12 07:18:55');
-- --------------------------------------------------------
--
-- Table structure for table `poll`
--
CREATE TABLE `poll` (
`id` int(11) NOT NULL,
`poll_ques` varchar(255) NOT NULL,
`slug` varchar(255) NOT NULL,
`poll_1` varchar(255) NOT NULL,
`vote_1` int(11) NOT NULL,
`poll_2` varchar(255) NOT NULL,
`vote_2` int(11) NOT NULL,
`poll_3` varchar(255) NOT NULL,
`vote_3` int(11) NOT NULL,
`votes` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `poll`
--
INSERT INTO `poll` (`id`, `poll_ques`, `slug`, `poll_1`, `vote_1`, `poll_2`, `vote_2`, `poll_3`, `vote_3`, `votes`) VALUES
(1, 'first Question', 'first-Question', 'answer', 0, 'answer', 0, 'answer', 0, 0),
(2, 'What are your opinion regarding Narendra Modi?', 'What-are-your-opinion-regarding-Narendra-Modi', 'He is best President, we can have.', 28, 'He is a Hindu Terrorist and have non-secularist ideology.', 6, 'I couldn\'t Care less About him.', 8, 42);
-- --------------------------------------------------------
--
-- Table structure for table `posts`
--
CREATE TABLE `posts` (
`id` int(11) NOT NULL,
`title` varchar(255) NOT NULL,
`slug` varchar(255) NOT NULL,
`body` text NOT NULL,
`post_image` varchar(255) NOT NULL,
`Category_id` int(11) NOT NULL,
`Date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`comments` int(11) NOT NULL,
`views` int(11) NOT NULL,
`featured` int(11) NOT NULL,
`highlight` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `posts`
--
INSERT INTO `posts` (`id`, `title`, `slug`, `body`, `post_image`, `Category_id`, `Date`, `comments`, `views`, `featured`, `highlight`) VALUES
(5, 'Third Post', 'Third-Post', 'This is the Third post. I am sure that it would work now. but what i wanna see is how it looks like on the page. also I am making this a little longer content.em Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum', '', 1, '2019-05-27 17:44:59', 0, 2, 0, 0),
(6, 'Fourth Post', 'Fourth-Post', '<p>This is the Fourth Post I am writting. I am thinking of including a image.Editted</p>\r\n', '', 2, '2019-05-27 18:43:40', 0, 2, 0, 0),
(7, 'nhgvjmgv', 'nhgvjmgv', '<p>hjflicuthngcu5e</p>\r\n', 'noimage.jpg', 1, '2019-05-27 21:04:41', 0, 2, 0, 0),
(8, 'jfu7fyugj', 'jfu7fyugj', '<p>i7tgiky</p>\r\n', 'noimage.jpg', 1, '2019-05-27 21:08:30', 0, 2, 0, 0),
(11, 'Ta-Nehisi Coates Reads “Conduction”', 'Ta-Nehisi-Coates-Reads-Conduction', '<p>Ta-Nehisi Coates reads <a href=\"https://www.newyorker.com/magazine/2019/06/10/conduction\">his story</a> from the June 10 & 17, 2019, issue of the magazine. Coates is the author of the nonfiction books “<a href=\"https://www.amazon.com/dp/0385527462/?tag=thneyo0f-20\" target=\"_blank\">The Beautiful Struggle</a>,” “<a href=\"https://www.amazon.com/dp/0399590560/?tag=thneyo0f-20\" target=\"_blank\">We Were Eight Years in Power</a>,” and “<a href=\"https://www.amazon.com/dp/0812993543/?tag=thneyo0f-20\" target=\"_blank\">Between the World and Me</a>,” which won the National Book Award, in 2015. His first novel, “<a href=\"https://www.amazon.com/dp/0399590595/?tag=thneyo0f-20\" target=\"_blank\">The Water Dancer</a>,” from which this story is adapted, will be published in September.</p>\r\n', 'coates.jpg', 1, '2019-06-04 08:53:25', 0, 4, 1, 0),
(12, 'Ava DuVernay on “When They See Us” and the Boys Who Became the Central Park Five', 'Ava-DuVernay-on-When-They-See-Us-and-the-Boys-Who-Became-the-Central-Park-Five', '<p>va DuVernay doesn’t like using the term “Central Park Five”—a moniker created by the press in the aftermath of the notorious and brutal assault of a twenty-eight-year-old woman, Trisha Meili. “They’re not the Central Park Five,” she tells the <em>New Yorker</em> staff writer <a href=\"https://www.newyorker.com/contributors/jelani-cobb\">Jelani Cobb</a>. “They’re Korey, Yusef, Antron, Kevin, and Raymond.” They were five teens who were coerced into confessing to a terrible crime, by police determined to find a culprit. It was a time when “the police, the district attorney, the prosecutors [wanted] to get a ‘win’ on the board,” DuVernay says, “because there were so many losses, so much going wrong.” Cobb <a href=\"https://www.newyorker.com/news/daily-comment/the-central-park-five-criminal-justice-and-donald-trump\">wrote</a> in <em>The New Yorker</em> that “The reaction to Meili’s assault came as the nadir of a two-decade-long spiral of racial animosity driven by a fear of crime,” and notes that, in that same week, brutal attacks on women of color failed to generate any headlines or perceptible outrage. The story has returned to public consciousness in recent years because of its role in launching Donald Trump’s political career. One of Trump’s first political acts, in 1989, was to take out a newspaper ad calling for the execution of the boys, and he stuck by his view even after they were exonerated. DuVernay’s goal was to tell the story of those five boys and the men they became.</p>\r\n\r\n<p>“<a href=\"https://www.newyorker.com/culture/on-television/when-they-see-us-is-both-memorable-political-art-and-misfired-entertainment\">When They See Us</a>” premièred on Netflix, on May 31st.</p>\r\n', 'PoliticsAndMore-WhenTheySeeUs.jpg', 1, '2019-06-04 08:59:11', 0, 15, 0, 0),
(13, 'Continental Shift', 'Continental-Shift', '<p>In “<a href=\"https://www.newyorker.com/magazine/2019/06/10/europes-fragmented-center\">Continental Shift</a>,” <a href=\"https://www.newyorker.com/contributors/amy-davidson-sorkin\">Amy Davidson Sorkin</a> writes about the European elections.</p>\r\n', '190610_r34473web.jpg', 1, '2019-06-04 09:00:36', 0, 4, 0, 0),
(14, 'Kim Jong-un criticises \'wrong spirit\' of mass games', 'Kim-Jong-un-criticises-wrong-spirit-of-mass-games', '<p>North Korean leader Kim Jong-un has openly criticised one of his country's most important propaganda spectacles, the Mass Games.</p>\r\n\r\n<p>According to state media, Mr Kim "seriously criticised" the games for "their wrong spirit of creation and irresponsible work attitude".</p>\r\n\r\n<p>He had already called earlier this year for a new approach to propaganda.</p>\r\n\r\n<p>North Korea is seen as preparing for more economic and ideological isolation, after US talks stalled.</p>\r\n\r\n<h2>What does Kim's criticism mean?</h2>\r\n\r\n<p>North Korea's mass games are a huge propaganda event featuring tens of thousands of participants, many of them children, in precision synchronised moves.</p>\r\n\r\n<p>This year's games kicked off on Monday with what is supposed to be the beginning of a months-long propaganda festival, featuring enormous co-ordinated displays.</p>\r\n', '_107222428_hi054414125.jpg', 1, '2019-06-04 09:02:25', 0, 12, 1, 0),
(15, 'Delhi metro: Will free public transport make women safer?', 'Delhi-metro-Will-free-public-transport-make-women-safer', '<p>The chief minister of India's capital Delhi created a minor sensation when he announced that women would no longer have to pay for public transport.</p>\r\n\r\n<p>Arvind Kejriwal said that free rides on city buses and the metro would help improve women's safety in the city.</p>\r\n\r\n<p>Delhi reports some of the highest numbers of rape in India. The 2012 gang rape and murder of a student on a bus in the city sparked massive protests.</p>\r\n\r\n<p>However not everyone is convinced that Mr Kejriwal's proposal will help.</p>\r\n\r\n<p>Dinesh Mohan, a transport expert with the Indian Institute of Technology in Delhi, told the BBC that making public transport free wouldn't solve the problem.</p>\r\n\r\n<p>"You need to think about the entire journey and not just the metro - you have to take into account how safe or unsafe sidewalks are and what the journey to the metro station is like in the first place. So if the idea is to make it safer for women, that experience has to be continuous. Safety can't begin and end at the metro station. I don't see any thought behind this initiative yet."</p>\r\n\r\n<ul>\r\n <li><a href=\"https://www.bbc.com/news/world-asia-india-42436817\">Is India really the most dangerous country for women?</a></li>\r\n <li><a href=\"https://www.bbc.com/news/world-asia-india-42236752\">Was Delhi gang rape India's #Metoo moment?</a></li>\r\n</ul>\r\n\r\n<p>The Delhi metro already reserves a coach exclusively for women on every train it runs.</p>\r\n\r\n<p>On social media, the proposal caused a great deal of debate as well.</p>\r\n\r\n<p>Many people, including economists and columnists, dismissed the idea and some women even said that they would continue to pay to ride the metro.</p>\r\n', '_107224344_a343f014-9225-4de0-a8c9-0dd2952c7a19.jpg', 1, '2019-06-04 09:04:30', 8, 13, 1, 0),
(16, 'India no longer world\'s fastest-growing economy', 'India-no-longer-worlds-fastest-growing-economy', '<p>India's economy has grown at its slowest pace in almost five years, according to the latest data released by the government.</p>\r\n\r\n<p>The new numbers are a cause of concern for PM Narendra Modi, who started his second term on Thursday, writes the BBC's Sameer Hashmi.</p>\r\n\r\n<p>In the past financial year - April 2018 to March 2019 - the economy grew by 6.8%. And in the quarter between January and March, it expanded by just 5.8% - falling behind China's pace for the first time in nearly two years.</p>\r\n\r\n<p>This means India is no longer the world's fastest-growing economy. And it will be a challenge for the new finance minister, Nirmala Sitharaman, only the second woman to hold the post after former PM Indira Gandhi.</p>\r\n\r\n<p>Ms Sitharaman has headed important ministries like commerce and defence during Mr Modi's first term. But she takes charge at a time when the economy is faltering.</p>\r\n\r\n<h2>Where are the jobs?</h2>\r\n\r\n<p>The immediate concern will be to help restore confidence in the economy.</p>\r\n\r\n<p>"It's important to strike a balance between short-term and long-term priorities," economist Dharmakirti Joshi says.</p>\r\n\r\n<p><img alt=\"The Bharatiya Janata Party\'s Nirmala Sitharaman signs papers after taking oath as a cabinet minister during the swearing-in ceremony on May 30, 2019 in Delhi, India\" src=\"https://ichef.bbci.co.uk/news/624/cpsprodpb/D5D0/production/_107163745_gettyimages-1146966013.jpg\" style=\"height:549px; width:976px\" />Image copyrightGETTY IMAGES</p>\r\n\r\n<p>Image captionFinance Minister Nirmala Sitharaman was sworn in on Thursday</p>\r\n\r\n<p>One of the pressing challenges is job creation.</p>\r\n\r\n<p>The biggest criticism of Mr Modi during his first term was his government's failure to generate employment. According to a government report, unemployment touched a 45-year high between 2017 and 2018.</p>\r\n\r\n<p>Mr Joshi believes the government should focus on labour-intensive sectors like construction and textiles to create more immediate jobs, but also give importance to industries like healthcare to generate employment in the long run.</p>\r\n\r\n<p>"The government wants to scale-up its healthcare and welfare schemes, and apart from doctors and surgeons, you also need paramedics and nurses," he says.</p>\r\n\r\n<p>Weak exports have also been a stumbling block when it comes to creating jobs. The government is expected to prioritise policies that will make small- and medium-sized businesses more competitive.</p>\r\n\r\n<h2>Spurring consumer demand</h2>\r\n\r\n<p>The new GDP data make it clear that India is staring at an economic slowdown.</p>\r\n\r\n<p>Unlike China, India's economic growth has been driven by domestic consumption over the past 15 years. But data released over the past few months suggest that consumer spending is slowing.</p>\r\n\r\n<p>Sales of cars and SUVs have slumped to a seven-year low. Tractor, motorbike and scooter sales are down. Demand for bank credit has sputtered.</p>\r\n\r\n<p>Hindustan Unilever - India's leading maker of fast-moving consumer goods - has reported slower revenue growth in the past quarter. All of these are important benchmarks for measuring consumer appetite.</p>\r\n\r\n<p><img alt=\"A man pushes his motorbike out of a car dealership, on April 14, 2008 in Bangalore, India.\" src=\"https://ichef.bbci.co.uk/news/624/cpsprodpb/D82A/production/_107183355_gettyimages-80725220.jpg\" style=\"height:549px; width:976px\" />Image copyrightGETTY IMAGES</p>\r\n\r\n<p>Image captionSales of cars and SUVs have slumped to a seven-year low</p>\r\n\r\n<p>Mr Modi's Bharatiya Janata Party (BJP) promised that it would cut income tax to ensure greater purchasing power.</p>\r\n\r\n<p>Gaurang Shetty, vice-president of a brokerage firm, believes that the government should also consider slashing personal and corporate taxes in the next budget, which will be announced in July.</p>\r\n\r\n<p>"It will act as a stimulus for the economy," he says.</p>\r\n\r\n<p>But India's 3.4% budget deficit - the gap between government expenditure and revenue - might restrict Mr Modi's options.</p>\r\n\r\n<p>Experts say that the widening fiscal deficit could hold back medium- and long-term growth.</p>\r\n\r\n<h2>The agrarian crisis</h2>\r\n\r\n<p>This was a constant challenge for Mr Modi in his first term. Farmers across the country regularly protest, demanding higher crop prices and loan waivers.</p>\r\n\r\n<p>The BJP has promised to extend a scheme that offers income support for small- and medium-sized farmers to include all farmers.</p>\r\n\r\n<p>"Income support is a stop-gap arrangement but it is not a long-term solution," says Mr Joshi, adding that the agrarian sector is in need of structural changes.</p>\r\n\r\n<p>Currently, farmers sell their produce to state-owned agencies at a fixed price. Mr Joshi says he would like to see farmers given direct access to markets and sellers.</p>\r\n\r\n<p><img alt=\"Farmers from all over the country protesting for \'waive off loans\' and \'Standardising Fair Wages\' in New Delhi.\" src=\"https://ichef.bbci.co.uk/news/624/cpsprodpb/3BEA/production/_107183351_gettyimages-1067931432.jpg\" style=\"height:549px; width:976px\" />Image copyrightGETTY IMAGES</p>\r\n\r\n<p>Image captionFarmers across the country regularly protest, demanding higher crop prices and loan waivers</p>\r\n\r\n<p>Fixing the country's agriculture sector has been a long-standing demand. More than half of India's population relies on farming, which makes farmers an important voting bloc.</p>\r\n\r\n<p>But experts hope that the BJP's thumping majority - the party's coalition won 354 of the 545 lower house seats - will allow it to enact reforms to transform agriculture into a modern industry.</p>\r\n\r\n<h2>The push for privatisation</h2>\r\n\r\n<p>One of the BJP's biggest pledges was to spend $1.44tn (£1.14tn) to build roads, railways and other infrastructure. But many observers say that the gargantuan sum will come from private industry.</p>\r\n\r\n<p>Mr Modi made little progress on his promise to sell government-owned enterprises, including the debt-ridden national carrier Air India.</p>\r\n\r\n<p>Gaurang Shetty expects Mr Modi to pursue privatisation more aggressively this time.</p>\r\n\r\n<p>"The Indian stock markets have been euphoric and the rally is likely to continue for a while. It's the ideal time to sell stakes in loss-making companies," he says.</p>\r\n\r\n<p>Experts also reckon that embracing bolder policies could entice more foreign investment.</p>\r\n\r\n<p><img src=\"https://ichef.bbci.co.uk/images/ic/720x405/p076mzqn.jpg\" /></p>\r\n\r\n<p> </p>\r\n\r\n<p>Media captionAs unemployment climbs in India, job creation is top of the agenda</p>\r\n\r\n<p>Private investment has been lagging for the past few years, and India's impressive economic growth in the past decade has largely been driven by government expenditure.</p>\r\n\r\n<p>During Mr Modi's first term, his government reduced red tape, helping move India to 77th spot in the World Bank's 2019 Doing Business ranking - a vast improvement from its earlier rank of 134.</p>\r\n\r\n<p>But experts say more needs to be done to attract private and foreign investment - and they say that it has to happen quickly.</p>\r\n\r\n<p>"The first two years is the time to bite the bullet. The results will take time to show but it would make a huge difference to India's overall growth story, " Mr Joshi says.</p>\r\n', '_107163749_gettyimages-1146380697.jpg', 1, '2019-06-04 09:06:46', 2, 7, 0, 0),
(17, 'India reels as summer temperatures touch 50C', 'India-reels-as-summer-temperatures-touch-50C', '<p><strong>India is reeling from an intense heat wave with temperatures crossing 45C in many parts of the country.</strong></p>\r\n\r\n<p>Churu, in the northern state of Rajasthan, is India's hottest city - temperatures there soared to 50.8C on Sunday, the meteorological department said.</p>\r\n\r\n<p>It has put Rajasthan and the central state of Madhya Pradesh on alert for "severe heat wave conditions". Both states often record some of the highest temperatures at the peak of summer.</p>\r\n\r\n<p>But this year has been particularly scorching in other places, too, from the northern plains to the Deccan plateau in the west and the south.</p>\r\n\r\n<p>The unrelenting heat has been hardest on the homeless, as well as those who have no choice but to keep working despite the soaring temperatures - such as street vendors, traffic police and rickshaw drivers.</p>\r\n', '_107208376_gettyimages-1147512502.jpg', 1, '2019-06-04 09:08:18', 0, 13, 0, 0),
(20, 'Hopes', 'Hopes', '<p>I really have high hopes on it</p>\r\n', 'profile.jpg', 1, '2019-06-05 16:43:26', 9, 17, 0, 0),
(21, 'Success', 'Success', '<p>ehjfgksjfsd</p>\r\n', 'inno2.jpg', 1, '2019-06-05 16:44:24', 0, 4, 0, 0),
(22, 'Testing The Latest Post Feature', 'Testing-The-Latest-Post-Feature', '<p>Well, by now my website is almost ready, at least for users. I still have some work left for the admin part. By the way I am just creating this post for testing the latest post feature, i just implemented. This feature picks the first three most recent post and shows them on homepage.</p>\r\n', 'ef2.jpg', 3, '2019-06-06 09:52:58', 1, 5, 0, 0),
(23, 'Admin Mode', 'Admin-Mode', '<p>This is My First Post by Using Admin Mode.</p>\r\n', 'favicon.png', 3, '2019-06-06 19:23:11', 4, 7, 0, 0);
INSERT INTO `posts` (`id`, `title`, `slug`, `body`, `post_image`, `Category_id`, `Date`, `comments`, `views`, `featured`, `highlight`) VALUES
(24, 'A POKE-T GUIDE TO NIT ROURKELA', 'A-POKE-T-GUIDE-TO-NIT-ROURKELA', '<h2><strong>FRESHERS! YOU GOTTA CATCH 'EM ALL!</strong></h2>\r\n\r\n<p>Hello there! Welcome to the world of <strong>NIT Rourkela</strong>. My name is <strong>Monday Morning</strong>, your very own <strong>Pokédex</strong> with an archive of information and protocols about this place. As freshmen embarking on a new expedition to earn your badge of success, you must be overwhelmed with a deluge of excitement and a tinge of confusion. Aspiring to become premier engineers can be no less than a battle where one has to master a league of odds. This official Pokédex with its decade-long association with the bivouac of NIT Rourkela will be your succour in exploring the feats of this outstanding place and help you muster each experience as your new found Pokémon. Well, to catch them is your real test, and to train yourself is your cause.</p>\r\n\r\n<p>So trainers! Welcome to the National Institute of Technology, Rourkela. Featuring among top-tier rankings of renowned institutions in India, your stay in NIT Rourkela will be one of the extraordinary. To hone your battle skills and make your quest a convenient one, I have stacked several strategic information regarding life at the institute. Gear up for a Pokémon challenge to traverse this land bountiful of experiences. All you need is a Pokéball of a heart!</p>\r\n\r\n<p><img alt=\"\" src=\"https://mondaymorning.nitrkl.ac.in/uploads/media/Timeline-01.jpeg\" /></p>\r\n\r\n<h2><strong>THE ABODE OF NIT ROURKELA</strong></h2>\r\n\r\n<p><strong>Rourkela- Where it all begins!</strong></p>\r\n\r\n<p>Unlike Pallet town, Rourkela, often known as Ispat Nagar or the Steel City is an industrial city in the north-western part of Odisha. This Pokécity and its trainers bask in the blistering yet idyllic summers, reaching the maximum temperature of 49°C as well relish the cosy freezing winters that come down till 4°C. It is well-connected by railways, thanks to the Howrah-Mumbai line passing through it. The 'Smart City' is the 3rd largest city in Odisha and boasts of being at the confluence of Koel and Sankha rivers which snake their way through the city to join the mighty Brahmani river. The planned city, which was established way back in 1954, consists of 18 sectors and a few more neighbourhoods connected by the 16-kilometre long Ring Road which runs around the whole city.</p>\r\n\r\n<p>National Institute of Technology Rourkela or NIT Rourkela in short, is located in Sector-1 of Rourkela. Nestled in the south-eastern corner of the city, it is flanked by hills on the southern side. The 1024- acre campus houses the hostels, restaurants, faculty residences and sports facilities with the academic area in the middle of the campus. The institute has 3 gates namely the Main Gate (West side), the CWS gate (North side) and the Kantajhar or East Gate. Sector-2, Ispat Market, Ambagan and the Kachery Road serve as the prime shopping areas for all kinds of needs. So trainers buckle yourselves up to explore the Pokécity and find as many Pokémons and batches as possible.</p>\r\n\r\n<h2><strong>MANOEUVRING THROUGH BATTLEFIELDS-LOCATING NIT ROURKELA</strong></h2>\r\n\r\n<p>To reach Pallet Town, a trainer has many ways. And Rourkela is not an exception. Rourkela is well connected to the world by all the three means - railways, roadways and airways. An AC bus leaves every night from the campus for Bhubaneswar and vice-versa. With a minimal fair of 425/-, the seats can be booked both online and offline. The nearest bus stop is in Sector-2, just a kilometre away from the campus. Convenient intercity and interstate buses run from there to other different cities as well. The railway station is situated 6 km away from the campus, and the autorickshaw fare is a minimum of 120/-. There are also OLA cabs and other rental cabs running through the city for travel convenience. The nearest airports are Jharsuguda, Ranchi, Raipur, and Kolkata (in the increasing order of distance). The newly constructed Jharsuguda airport connects to Kolkata, New Delhi, and Hyderabad and is just two hours away from Rourkela.</p>\r\n\r\n<h2><strong>TEMPORARY ACCOMMODATION</strong></h2>\r\n\r\n<p>The home to trainers as long as they stay in the campus are the Halls of Residence, but before being allotted a hall, you can stay in hotels, inns, and lodges which are available almost everywhere in the city. There is also a Guest House in the campus which requires prior booking and can be booked from the NIT Rourkela site. Staying in the campus guest house provides you easier commute and accessibility to the institute.</p>\r\n\r\n<h2><strong>HANDY UTILITIES AND POKÉSTOPS</strong></h2>\r\n\r\n<p>All our newly transformed Pokémon trainers need some basic supplies to tackle problems and NIT Rourkela does an excellent job catering to the needs of our Pokémon trainers. There are numerous on-campus stores stacked with a wide array of quality products. A complex named ‘<strong>Needs</strong>' located in the proximity of K.M.S Hall of Residence offers grocery, stationary, vegetables along with salon services. Another notable store titled ‘<strong>Rangoli</strong>' is located amid Scholar's Avenue in front of the GDB Hall of Residence. Apart from these stores,<strong> J.D. Enterprises </strong>and Trainer bookstore, positioned in the academic region supplies for the educational support to power pack the Pokémons in their quest of survival. Sector 2 Marketplace, VIP marketplace, Ispat market are some of the local bazaars displaying the authenticity of Rourkela. Apart from local shopping areas, there is a humongous hub of supermarkets, branded showrooms of jewellery, fabrics, and handicrafts.</p>\r\n\r\n<p>A healthy mind stays in a healthy body, and though multifarious and nutritious, the mess food might sometimes become tedious. To all the foodies out there, NIT Rourkela offers us with the many food joints like <strong>Joz Kitchen and Hexagon in the Scholars Avenue, Moksha and Dosa Plaza in Technology Avenue, Rengcol and Srinivas lunch Room in the academic block</strong>. They accept cashless payments and have a trainer-friendly timetable. Ash along with Misty and Brock come to the Nescafe, Amul Parlour, and the Departmental store near the main gate for the perfect hangouts and refreshments after long hours of study.</p>\r\n\r\n<p>NIT Rourkela provides a mesmerising abode to thousands of trainers incoming every year. A walk through the lush green pathway brings the souls to a state of tranquillity. Using a cycle, the campus could be explored by the Pokémons. NIT Rourkela aims at maintaining a healthy lifestyle for its trainers. Thus, the Dilip Tirkey Stadium (DTS) and Sachin Tendulkar Sports Complex (STSC) provide exemplary areas for recreation in the territories of sports and athletics.</p>\r\n\r\n<p>NIT Rourkela wants to establish a regiment of mentally as well as physically fit Pokémons. To accomplish that, extra-academic activities such as <strong>NSS, NCC and Physical Education</strong> are introduced in the curriculum of trainers.</p>\r\n\r\n<p>The campus is well equipped with the banking facilities, having one SBI ATMs in front of GDB hall, one SBI ATM near KMS and an Axis bank ATM in the academic area near the Banyan tree. The campus also has three temples inside it. Hold down your Pokéballs and carry them for the journey.</p>\r\n\r\n<p>As a rookie Pokemon trainer, you should always be ready to learn new skills and fight in practice battles. Here are a few tutors of equipment you should possess to lead your training period smooth and hassle-free.</p>\r\n\r\n<h3><strong>GENERAL:-</strong></h3>\r\n\r\n<p>? A bicycle to move around on the campus.</p>\r\n\r\n<p>? An emergency light so that you don’t blame power cuts for bad grades.</p>\r\n\r\n<p>? Personal Utilities:- You will need a personal mattress and pillow set for your room and also a bathroom set including a bucket and mug</p>\r\n\r\n<p>? An umbrella and raincoat as the weather of Rourkela are quite uncertain.</p>\r\n\r\n<h3><strong>STATIONERY:-</strong></h3>\r\n\r\n<p>? Scientific Calculator</p>\r\n\r\n<p>? Notebook and geometry box</p>\r\n\r\n<p>? Lab coat:- Some of the laboratories and workshops require the students to wear a lab coat or apron for their safety.</p>\r\n\r\n<h3><strong>STATIONERY FOR B.ARCH STUDENTS:-</strong></h3>\r\n\r\n<p>Apart from the things mentioned above, you will need:-</p>\r\n\r\n<p>? Architect’s Scale:- As the name suggests, yours has to be different from others.</p>\r\n\r\n<p>? Drawing storage tube:- You can carry your drawing plans in this tube.</p>\r\n\r\n<p>? Adjustable Triangle:- Another architect’s tool required in drawing plans and stuff.</p>\r\n\r\n<h3><strong>TECHNOLOGY AND SOFTWARE:-</strong></h3>\r\n\r\n<p>? A standard laptop with decent RAM and GPU for all kinds of technical work like designing and coding.</p>\r\n\r\n<p>? An ethernet cable to connect your laptop to the institutes’ LAN access wherever available through which you can access the internet, NITRIS portal, and webmail.</p>\r\n\r\n<p>These are the things which you will require day in and day out. Other than these, you should carry a pouch of medicines for common illnesses. You can also bring some packet food like chips or biscuits to satisfy your appetite in an odd time of the day (though the night canteens are plenty to cater to your late appetite). Carrying an electric kettle also comes in handy if you want to heat water or anything else.</p>\r\n\r\n<h2><strong>RECONNOITRING THE HALLS OF RESIDENCE</strong></h2>\r\n\r\n<p><strong><img alt=\"\" src=\"https://mondaymorning.nitrkl.ac.in/uploads/media/IMG_20190529_174222.jpg\" /></strong></p>\r\n\r\n<p>Attention Pokémon trainers! We can’t just let you sleep in sleeping bags and cook food for yourselves. Being the second largest engineering institute in India, NIT Rourkela boasts of encompassing 11 Halls of Residence spread across the campus, <strong>7 for boys</strong> (GDB, MV, MSS, DBA, VS, SD, and HB), <strong>2 for girls</strong> (KMS and CVR) and <strong>2 for married scholars</strong> (SSB and VK). You will be exclusively allocated among <strong>GDB, MV (for boys) and KMS (for girls)</strong>for your first year. The Halls of Residence are administered by the <strong>Hall Executive Council</strong> (HEC) comprising of a hierarchy of trainer representatives in the form of secretaries and professors with the role of Warden and Assistant Warden. The Hall Management Council (HMC) is the umbrella organization headed by the Chief Warden that every HEC is answerable to.</p>\r\n\r\n<p>Every hall is divided into numerous blocks constituting of spacious,well-ventilated rooms, properly furnished with modern furniture including bed frames, study tables, chairs, cupboards, tube lights, and ceiling fans. In order to enhance the trainer’s exploration capabilities, LAN ports are also installed in every room. There are sufficient washrooms and toilets in each block installed with geysers and exhaust fans whose cleanliness and sanitation are ensured with utmost priority on a daily basis. Every hall of residence harbours a well-ventilated, state-of-the-art mess which serves four healthy and savoury meals a day: breakfast, lunch, evening snacks and dinner whose menu is updated every semester according to the desires of its trainers. Day & night canteens play an integral role for a trainer. These are the places where the trainers gather for a rendezvous and enjoy lip-smacking refreshments and satiate their untimely cravings, i.e. fighting the gym battles. Appraising the gravity of the situation a steady supply of electricity is ensured and water coolers attached to Aqua-guards(purifiers) are also placed in every block and corridor owing to the provision of clean and cold water.</p>\r\n\r\n<p>The Halls of Residence also facilitate common rooms, readings rooms, reasonably attractive gymnasium, games room and TV room as a source of entertainment to eliminate the monotony among the trainers. To encourage them to come out with their remarkable talents, the HMC and HEC also give opportunities to the enthusiasts by organising several inter/intra hall tournaments and competitions that include badminton, cricket, debate, essay writing, etc. Hall days and Garden fests are also organized with provision for flavoursome dishes, disc-jockeys, etc. Many great cultural functions and festivals are also celebrated within the hall premises with great spirit and avidity. Hence at NIT Rourkela, we leave no Pokémon trainer unprepared for gym battles, we provide them with enough facilities and help them to be entirely prepared for their future battles.</p>\r\n\r\n<h2><strong>ACADEMIC EDUVENTURES</strong></h2>\r\n\r\n<p><strong><img alt=\"\" src=\"https://mondaymorning.nitrkl.ac.in/uploads/media/IMG_20190529_163900.jpg\" /></strong></p>\r\n\r\n<h3><strong>GOTTA TRAIN THEM ALL!</strong></h3>\r\n\r\n<p>Enough of the other stuff trainers! Now comes the part which you all need to pay heed to in depth. If you all wish to bring out the dormant Ash Ketchum inside you, training oneself in different subjects is inevitable. Nothing to be aggrieved for as we are here to further your aspirations by helping you bag your credits.</p>\r\n\r\n<p>After toiling hard and fighting out all the odds, when you end up here at NIT Rourkela, you aim to strive for academic excellence. The coherent academic structure of NIT Rourkela provides you with an edge over others in terms of knowledge and the technical acumen. The academic curriculum in the first year for all branches and disciplines remain the same, mainly comprising theory courses along with some lab sessions and each with a certain number of credits. The theory courses will mostly be lecture sessions with tutorial classes (for some specific subjects). There are two examinations in each semester, one is the <strong>mid-semester</strong> (30%), and the other is the <strong>end semester</strong> (50%) analogous to the Indigo league, held within a gap of two months, with 20% weightage to <strong>teacher’s assessment</strong> (TA). The timetable for the classes is quite flexible, classes run from 8 am – 5:15 pm, with a lunch break from (12 noon to 1:15 pm)."All work and no play makes Jack a dull boy”- taking into account the gravity of this thing the academic calendar provides the trainers with two long drawn holidays namely <strong>winter (4 weeks), summer (11 weeks)</strong> post the end semester exams, a week-long of Navaratri holidays after the first mid-semester exams and many other occasional leaves for the trainers to relax and rejuvenate. The academic timetable is available on the institute website and decoding the timetable is a skill an NIT Rourkela trainer must possess.</p>\r\n\r\n<p>NIT Rourkela stands atop all other NITs with the largest number of courses offered to specialise in. With a whopping 22 branches of engineering, MSc and Architecture departments, NIT Rourkela boasts off its rich, ingenious prowess. Up for some training already? The monumental Lecture Annexure (LA) is where you begin and burgeon on. All the theory classes, some lab courses, orientations and induction programmes of the various clubs, branch freshers’ will be held there. Being a credible trainer demands you to inculcate the lessons learnt from all sorts of training regimes for which attendance is indispensable (a minimum of 85%). Failing to maintain the numbers can result in grade back or debar from a course. The gigantic <strong>Biju Pattnaik Central Library (BPCL) </strong>catalyzes the learning process. From attendance to results, hostel management, academic calendars, exam routines and sitting arrangements, minor degree and branch change rules; your one-stop solution for all such queries is the NITRIS. Zimbra webmail is an open source server which circulates all official emails of NIT Rourkela akin to the Pokémails. To ameliorate the process of learning, there is ANKCTEL, our very own e-learning forum. Not to forget sites like NPTEL, Moodle, Coursera, Neso Academy which act as saviour during adverse situations. All of this can be accessed by trainers any time using the Institute LAN equipped in each hostel room.</p>\r\n\r\n<h2><strong>CGPA AND SGPA- A TAB ON YOUR SCORES</strong></h2>\r\n\r\n<p>Semester Grade Point Average or SGPA is your GPA for only one particular semester, and Cumulative Grade Point Average or CGPA is for all the semesters till now. The process to calculate SGPA is quite simple. Each subject in a particular semester has some credits. The total number of credits will be the sum of credits of all the subjects.</p>\r\n\r\n<p>SGPA= sum of (grade point * credit of subject) for each subject/(10 * (sum of credits of all subjects))</p>\r\n\r\n<p>To calculate your CGPA, divide the sum of all your SGPA by sum of credits of all the semesters.</p>\r\n\r\n<p><strong>*Grade points for each grade is given below in the table.</strong></p>\r\n\r\n<table border=\"1\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>Grade</p>\r\n </td>\r\n <td>\r\n <p>Points</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Ex</p>\r\n </td>\r\n <td>\r\n <p>10</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>A</p>\r\n </td>\r\n <td>\r\n <p>9</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>B</p>\r\n </td>\r\n <td>\r\n <p>8</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>C</p>\r\n </td>\r\n <td>\r\n <p>7</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>D</p>\r\n </td>\r\n <td>\r\n <p>6</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>P</p>\r\n </td>\r\n <td>\r\n <p>5</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>F</p>\r\n </td>\r\n <td>\r\n <p>2</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p> </p>\r\n\r\n<p>Consulting with teachers for the hardships that trainers face, if any, at any point of time is advisable for the trainers. Furthermore, trainers can reach out to the SCP team for any help they need. We wish all the freshmen a merry and healthy learning experience.</p>\r\n\r\n<h2><strong>MINOR DEGREE-TAKING ON AN ADDITIONAL CHALLENGE</strong></h2>\r\n\r\n<p>Well, more Pokemon is always exciting, and so is your training. On completion of 2nd semester, you can opt for a Minor degree, but the catch is, you've got to earn badges to be able to choose one. In other words, you need to fulfil the following conditions:</p>\r\n\r\n<p>? The Minor degree will be allocated based on CGPA acquired by the trainer at the end of the first year. The minimum CGPA of 7.50 will be considered eligible for registration for the minor degree.</p>\r\n\r\n<p>? A trainer won’t be eligible to opt for a minor degree unless he/she clears the extra-academic courses (PE/NSS) in the first year itself.</p>\r\n\r\n<p>? He/she needs to take at least six additional courses offered by the minor branch department constituting of minimum 18 credits between 3rd and 8th semester.</p>\r\n\r\n<p>? The branch opted for a minor degree is a one-time choice and cannot be altered under any circumstance.</p>\r\n\r\n<p>? Anyone who wishes to leave the Minor degree in between, he/she may be allowed to do so with the permission of Dean (Ac.). His/her grade-sheet will only reflect the cleared courses.</p>\r\n\r\n<p>? If a trainer fails to complete a Minor degree course within his/her normal duration, he/she has the option to either drop the minor degree or he/she may stay an extra semester or year as applicable to complete the same for the award of Minor degree.</p>\r\n\r\n<h2><strong>BRANCH CHANGE POLICIES</strong></h2>\r\n\r\n<p>Meritorious students who secure a minimum CGPA of 8.5 at the end of the first year may be given an option for branch change subject to availability of vacant seats and subject to the condition that the following vacancy created in the parent department due to branch change should not be more than <strong>5%</strong> of the actual strength.</p>\r\n\r\n<h2><strong>MINIMUM CGPA REQUIREMENTS- SURVIVAL AGAINST ALL ODDS:</strong></h2>\r\n\r\n<p>It's not too severe for a pokemon trainer to survive if he/she is dedicated and willing to learn. A minimum CGPA of <strong>6</strong> is mandatory for a student at all times. If his CGPA drops <strong>below 6</strong>, then the following procedure is followed for taking the necessary action:</p>\r\n\r\n<p>? A Modified Grade Point Average will be calculated by replacing all the X and F grades by P grade. If the MGPA exceeds six, then the student may be permitted to register for a full suite of higher semester courses at the discretion of the Faculty Advisor. If it doesn't, he is required to enter the 'slow pace' program.</p>\r\n\r\n<p>? If a student's CGPA is 6 in 3 consecutive semesters, then he must leave the institute.</p>\r\n\r\n<p>? In case of a first-year student, if the CGPA is <strong>between 5 and 5.69</strong>, he will re-register in the first semester and start the program anew. The CGPA in the repeat year must exceed 6 for the person to stay in the institute.</p>\r\n\r\n<p>? If CGPA is less than five, the student must leave the institute.</p>\r\n\r\n<p>A student is not permitted to re-register a course when he has scored a P grade or a better grade in it. However, students below 6 CGPA can do so to improve their scores.</p>\r\n\r\n<p>A student who has been debarred from an examination and awarded an 'X' grade for any reason may register for the subjects as backlog papers in the following semester.</p>\r\n\r\n<p>Those who have been awarded unregistered 'UR' because of poor attendance or any reason need to register for the course and attend the classes as per rules.</p>\r\n\r\n<h2><strong>EXTRACURRICULAR ACTIVITIES-SHARPENING YOUR PSYCHE<em>!</em></strong></h2>\r\n\r\n<p>Apart from having a globally recognised academia, NIT Rourkela has ample opportunities for trainers with different passions. The institute aims for your holistic development, with particular emphasis on critical attributes like leadership skills and ability to work in a team. To realise this noble idea, NIT Rourkela provides a wide range of opportunities for its beloved trainers to excel as Poké masters. These facilities include sports, literature, music, dance, acting, debating and many more, a significant part of which comes under the club culture of NIT Rourkela.</p>\r\n\r\n<p>Infrastructure wise, NIT Rourkela is equipped with facilities for all kind of sports:<strong> Dilip Tirkey Stadium (DTS)</strong> is the centre for sports like Football and Hockey; <strong>Sachin Tendulkar Sports Complex (STSC) </strong>is the hub for Cricket, Kho- Kho and Handball; <strong>P.T. Usha Sports Complex</strong> has facilities for sports like Kabaddi, Volleyball, Basketball, and Lawn Tennis. Apart from these, there is a Swimming Pool and a Gymnasium with separate timings for boys and girls. The institute teams of all these sports take part in prestigious national level events including Inter-NIT and IIT fests. Apart from this, the institute also organises inter-hall and intra-hall sporting events throughout the year to nurture your talent.</p>\r\n\r\n<p>The institute organises five major fests every year:<strong> Innovision (technical), NITRutsav (Literary), Cosmopolitan (Cultural), Vriddhi (Sports) and Roots </strong>which brings trainers from different colleges of the country to NIT Rourkela. These fests boast of exhilarating DJ shows, EDM nights, Musical pro shows, fun events and much more. Such fests drain monotonicity out of the life of a trainer at NIT Rourkela.</p>\r\n\r\n<p>Extra-curricular activities at NIT Rourkela play a vital role in shaping the personality of trainers. Making the perfect use of these opportunities should be the primary goal of every trainer after entering the overwhelming Poké league of this institute.</p>\r\n\r\n<h2><strong>SAC AND CLUB CULTURE-THE PARAMOUNT ARENA!</strong></h2>\r\n\r\n<p><strong><img alt=\"\" src=\"https://mondaymorning.nitrkl.ac.in/uploads/media/IMG_20190529_165734.jpg\" /></strong></p>\r\n\r\n<p>The Student Activity Centre - where the Pokémon masters reside - of NIT Rourkela is like an assortment of clubs with different clusters of Pokémon trainers. It supervises the working of these clubs registered under the four societies; Technical society, Literary society, Cultural society and Games and sports society. These clubs, comprising Pokémon trainers, can broaden your area of interests, develop your personality, make your psychological traits more endurable so that you'll level up and advance as a master in your Pokémon battle.</p>\r\n\r\n<p>There are about 60 clubs specialising in different aspects- Debating, Social, Music, Dance, Technical and many more. The skill and will power to break the status quo and think out of the box is the necessity of every club. All such activities will help the ever-talented person in you bloom and evolve into a powerful trainer just like Ash! Your unbelievably zany college experience can be credited to the unfaltering enthusiasm and the blood, sweat, and tears of the Pokémon masters that the SAC confines.</p>\r\n\r\n<h2><strong>STUDENT COUNSELLING PROGRAM-HUSTLING THROUGH THE GRIND</strong></h2>\r\n\r\n<p>Facing a setback with your Pokémon? Need a Pokémon centre to help you out?</p>\r\n\r\n<p>Worry no more! NIT Rourkela has just the solution for you in its <strong>Student Counseling Program</strong> (abbreviated as SCP). Founded by the present Director, Prof Animesh Biswas, the program plans to ensure that the freshmen have a flawless transition into the new way of life that awaits them at NIT Rourkela. It further aids them in building up a confident attitude towards their present and subsequent problems, so they become Ultimate Pokémon trainers and later Pokémon champions.</p>\r\n\r\n<p>It includes eight faculty members with Prof KC Pati as the Professor in Charge and 11 trainer coordinators. Are you wondering how the trainer coordinators are any different from you? Well, they are the experienced Pokémon trainers who have already earned their gym badge and are in their sophomore year or higher up. They assign each trainer coordinator a set of "mentors" within a week of admission who take care of the freshmen or the "mentees".</p>\r\n\r\n<p>Experienced mentors interact with the freshmen to provide personal and professional support and help them conquer the initial obstacles. The teams also intend to resolve any ambiguities regarding extra-curricular activities as well as the monetary issues of the pupils. Since all pupils may not be acquainted with the learning pace and sequence, remedial classes are carried out by the SCP to traverse the gap. It also holds bridge courses for overseas trainers to familiarise them with the learning system of the institute.</p>\r\n\r\n<p>Homesickness, discomfort, psychological anguish, and peer pressure add to the academic stress that the newbies face in NIT Rourkela. Thus SCP has appointed psychiatrists to confront the menace of mental stress. Professional counsellors are also present on the campus to handle different trainer issues.</p>\r\n\r\n<p>With SCP on your side, you have all the support you need to become the Ultimate Pokémon trainer. So what's stopping you now? Run along to catch your next Pokémon.</p>\r\n\r\n<h2><strong>CHANSEY AT YOUR SERVICE</strong></h2>\r\n\r\n<p><img alt=\"\" src=\"https://mondaymorning.nitrkl.ac.in/uploads/media/IMG_20190529_170145.jpg\" /></p>\r\n\r\n<p>Ever wondered what at certain instances, if illness sets in? Simply hasten towards our winsome Nurse Joy’s Health Centre and get yourself treated by Doctor Proctor and Chansey (doctors). The prescribed medicines can be procured from the adjoining Apollo Pharmacy that runs 24*7 catering to medical needs of the institute, free of cost (on providing a doctor’s note of course). The Institute Dispensary provides facilities to the trainers, staffs, and their families as well. For specialised medication or hospitalisation, the patients are redirected to CWS or IGH. In case of recommendation to super speciality services, on submitting the essential documents, the Institute shall remunerate the expenses.</p>\r\n\r\n<h2><strong>OFFICER JENNY TO YOUR RESCUE</strong></h2>\r\n\r\n<p>Unluckily, if you lose any Pokémon batches or if Team rocket steals any of your Pokémon (though the instances are extremely rare), reach the security office of NIT Rourkela without any delay. The security officers here have the same spirit as Officer Jenny and Growlithe. For any academic entanglement, get the problem responded at the Assistant Registrar’s office. Webmails, alike to Pokémails, to gym trainers, are an effective means for Pokémon trainers to get their queries clarified.</p>\r\n\r\n<p>In case you seemed lost with a bunch of suspicions, your genial seniors are always there to assist you. Do approach them!</p>\r\n\r\n<p><em>“Strong Pokémon, Weak Pokémon. That is only the prejudiced perception of people. Fairly proficient trainers should try to conquer with all their picks.”</em></p>\r\n\r\n<h2><strong>THE BATTLE FINALE OF PLACEMENTS</strong></h2>\r\n\r\n<p> Meowth had realized," <em>I see now that the circumstances of one's birth are irrelevant. It is what you do with the gift of life that determines who you are.</em>"</p>\r\n\r\n<p><img alt=\"\" src=\"https://mondaymorning.nitrkl.ac.in/uploads/media/IMG_20190529_171947.jpg\" /></p>\r\n\r\n<p>To reach the crescendo of your adventure to become an engineer, fighting battles and winning badges, you will have to sail through the climactic battle of Placements to win your ultimate champions trophy. Getting into NIT Rourkela is in itself a catch 22 and once you are through that phase, summon all your spirits to get paid back by luring companies across various top-notch sectors coming for campus recruitments.</p>\r\n\r\n<p>Taking a look at the statistics, the infamous <strong>Training and Placement Cell </strong>of NIT Rourkela along with its diligent placement coordinators do an astounding work to invite some eminent companies to the campus, justifying the elitist status of the institute in the country with a target per cent placement record making the institute secure a rank within 401-500 in the Times World University rankings for Higher Education under the “Engineering and Technology” category.</p>\r\n\r\n<p>Apart from the esteemed mass recruiters, the institute also invites some of the prestigious companies to the campus under core as well as non-core sector.</p>\r\n\r\n<p>The institute also has provisions for start-ups and higher studies. To create an environment where trainers are free to mould their future, <strong>Foundation for Technology and Business Incubation (FTBI)</strong> has been housed under Centre for <strong>Technology Innovation and Industry Relations (TIIR)</strong> which has given birth to many start-ups among which Dekho Market is one of the emerging incubations. The campus has witnessed start-ups like MySmartprice, Phoenix Robotics, Penny India and more!</p>\r\n\r\n<p>Trainers at NIT Rourkela have cracked CAT, GATE and others to become superior league leaders!. To enlist some recent badge-winners, Nihal Chandra Das secured AIR 8, Ritesh Kumar AIR 13 and Kapil Kumar Sharma AIR 41 in GATE 2019. NIT Rourkela also provides an ideal platform for some of the research aspirants who get remunerative offers from countries like Germany, Canada, Japan etc. through DAAD, MITACS and other programs.</p>\r\n\r\n<h2><strong>ALUMNI RELATIONS</strong></h2>\r\n\r\n<p>Professor Oak, Red and Alain are very successful Pokémon trainers; many Pokémon trainers always seek to mature like them. NIT Rourkela has an intelligible tie with its alumni. The alumni serve as brand ambassadors who remain engaged and keep abreast on the progress of the Institute. The academic experience with world-class infrastructure and excellent faculty here at NIT Rourkela has endured our alumni with lifelong career excellence.</p>\r\n\r\n<p>The <strong>NIT Rourkela Alumni Association, NITRAA</strong>, one of the largest alumni organisation of the country, congregates the alumni from all edges across the globe. The NITRAA’s executive council is presided over by Venkata Narasimham Peri. NITRAA conducts its annual inductions to restore trainer-alumni relations through which it persuades the Pokémon trainers to heighten their career. Here are few of the many Pokémon champions who concede themselves to be examples for the world to witness.</p>\r\n\r\n<p>? <strong>Akash Khurana</strong>: a remarkable theatre artist, and an entrepreneur.</p>\r\n\r\n<p>? <strong>Soma Mandal</strong>: the First Woman Commercial Director of SAIL.</p>\r\n\r\n<p>? <strong>CP Gurnani</strong>: the CEO and Managing Director of Tech Mahindra.</p>\r\n\r\n<p>? <strong>Ranjan Dash</strong>: the founder and Chief Technology Officer of Y-Carbon, USA.</p>\r\n\r\n<h2><strong>INSTITUTE STANDING DISCIPLINARY COMMITTEE- A LEGION OF STEADFASTNESS</strong></h2>\r\n\r\n<p>Every trainer needs a safe and malpractice-free league to hone their battle skills. So, the Senate of NIT Rourkela has formed a formidable committee of masters, professors and a couple of student coordinators to regulate disciplinary actions in the institute and even penalise defaulting students trying to use fraudulent means. So, new trainers, feel free to call out academic or professional derelicts if you ever come across one for ISDC to regulate.</p>\r\n\r\n<h2><strong>MONDAY MORNING-TAKING COGNIZANCE OF NIT ROURKELA</strong></h2>\r\n\r\n<p>We, at Monday Morning, the official media body and Pokédex of NIT Rourkela, strive to be the ideal interface between the trainer community and the administration by transparently and accurately portraying the opinions, ideas and grievances faced by the trainers publicly. Our motto: integrity, humility and righteousness are the golden words we always live by.</p>\r\n\r\n<p>MM has been adding a tinge of flavour to every Monday with a weekly capsule of campus news since 2006. Starting from inspiring internship diaries, hall/club reviews, information about communication details, SAC, etc. to articles on success stories on Alumni; we have it all. Just like how Ash has his beloved Pokédex for all information, you have the Monday Morning Website and App as your pass to all the information, campus buzz and much more. Download the app from the Google Play Store to stay updated on the go or visit <a href=\"http://mondaymorning.nitrkl.ac.in/\">http://mondaymorning.nitrkl.ac.in/</a>, Monday morning’s official website which serves as a constantly updated Pokedex to all trainers.</p>\r\n\r\n<p><em><strong>Team Monday Morning wishes you good luck in this path of conquering the Pokémon league and hopes that you encounter various people and make many memories to cherish.</strong></em></p>\r\n', 'IMG_20190529_171239.jpg', 3, '2019-06-10 18:31:15', 0, 5, 0, 1),
(25, 'YOUR SANCTUM NICHE: NITR\'S HOSTEL LIFE', 'YOUR-SANCTUM-NICHE-NITRS-HOSTEL-LIFE', '<p>They say, ‘<strong>Home is not a place, it’s a feeling</strong>’. While you are all teary-eyed, bidding goodbye to your families, we at NITR gear up to ensure that you experience that cozy homely feeling in our finest of hostels. This will be a year filled with as much of adjustments, understanding and sharing as that of fun and frolic. Here is an insight into your home away from home.</p>\r\n\r\n<p>NITR flaunts 10 splendid Halls of Residence extensively spread over the swathe:</p>\r\n\r\n<ul>\r\n <li>7 for boys (<strong>GDB, MV, DBA, MSS, SD, VS, and HB</strong>)</li>\r\n <li>2 for girls (<strong>CVR and KMS</strong>)</li>\r\n <li>1 for married scholars (<strong>SSB</strong>)</li>\r\n</ul>\r\n\r\n<p>Also, a new hostel is currently under construction to accommodate the ever-growing student body. The new admissions are offered accommodation in the GDB, MV, CVR and KMS halls for their freshmen year.</p>\r\n\r\n<p>Following is a compilation of key features about the aesthetic accommodation provided at NITR to the new admissions. Later, there is a detailed overview of individual hostels.</p>\r\n\r\n<ul>\r\n <li> Location of the hostels:\r\n <ul>\r\n <li>The halls of G.D. Birla and M.Visvesvaraya Halls are located on the Scholar’s Avenue, while C.V. Raman Hall is located on the Academic Avenue. The three of these get an advantage of their proximity to the Dilip Tirkey Stadium, SBI ATM, Rangoli (the variety store), local eateries like Jo’z, Moksha, and Hexagon; and Lecture’s Assembly where most of the freshmen classes are scheduled.</li>\r\n <li>Away from the hustle and bustle of the Scholar’s Avenue, KMS Hall is located in the vicinity of the campus <strong>Dispensary</strong>, the <strong>NEEDS market complex</strong> and the main gate of the campus.</li>\r\n </ul>\r\n </li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<ul>\r\n <li>The<strong> Rooms</strong> are quite spacious, well-ventilated and furnished with modern furniture including bed frames, study tables, chairs and cupboards along with the basic necessities of tube lights, ceiling fans, curtains and LAN ports as per the occupancy and requirement of each room.</li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<ul>\r\n <li><strong>Occupancy:</strong><strong> </strong>GDB, MV, and CVR offer twin-seater rooms to the freshmen. Because of the relatively spacious rooms, KMS has three or four tiered rooms.</li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<ul>\r\n <li><strong>Mess Facilities: </strong>Nostalgia plays its part here as you will be reminded of the family meals you had together. NITR provides the complete four meals - Breakfast, Lunch, Snacks, and Dinner according to a fixed menu and scheduled mess timings. The boarders take an active part in deciding the menu. Aspects such as food quality, mess hygiene and overall functioning of the mess are closely monitored by competent authorities. <strong>The R.N. Patel Cafeteria</strong> functions as the common mess to both GDB and MV, while each of KMS and CVR has a mess of its own.</li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<ul>\r\n <li>Something missing, right? Yes, there are <strong>night canteens</strong> to satiate your midnight cravings, so you need not worry about food during your overnight exam preparations. There are canteens to serve during the day also which are well stocked and have fixed rate menu charts displayed.</li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<ul>\r\n <li><strong>Washroom facilities: </strong>Each floor is provided with adequate washroom complexes comprising bathrooms, toilets, geysers, exhaust fans, wash basins and mirrors; with all fittings in working condition. The washrooms are sanitised every day by the cleaners and proper hygiene is maintained.</li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<ul>\r\n <li><strong>Cleanliness and Sanitation: </strong>NITR firmly believes in the concept of ‘<strong>Cleanliness next to godliness</strong>’ and signs a no-compromise pact against contamination. In every hall, the management ensures that proper care is taken of the hall’s cleanliness and maintenance. Corridors are swept every day by dedicated cleaners and adequate wall mounted-garbage bins are provided to minimize littering in the hallway.</li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<ul>\r\n <li><strong>A steady supply of electricity and water</strong> is ensured in every hall. Sufficient aqua-guards fitted with water coolers provide cool and safe drinking water to the boarders.</li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<ul>\r\n <li><strong>Recreational facilities:</strong><strong> </strong>‘All work and no play makes Jack a dull boy’.<strong> </strong>Each hall includes a spacious <strong>Common Room</strong> with adequate sitting area and television set along with equipment for indoor games like Table Tennis. The various <strong>sports courts</strong> like Badminton court, Volleyball court, and Basketball court are a boon for the sports enthusiasts. Well-equipped <strong>Gyms</strong> are also housed in each hostel. Furnished with contemporary furniture, the <strong>Reading Room</strong> allows a tranquil environment for ceaseless study hours.</li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<ul>\r\n <li>\r\n <p><strong>Additional facilities</strong><strong>:</strong></p>\r\n\r\n <ul>\r\n <li>Laundry services are available for boarders of each hostel.</li>\r\n <li>GDB and MV have a common stationery shop within their common hostel grounds which deals with notebooks, lab manuals, and second-hand books. It also includes a Xerox machine.</li>\r\n <li>The halls of CVR and KMS include a departmental store and a beauty parlour within their respective premises.</li>\r\n <li>The halls display important contact numbers in case of emergencies in the reception area.</li>\r\n </ul>\r\n </li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<ul>\r\n <li><strong>Safety and Security: </strong>Fire extinguishers are installed in every hostel. To house your cycles, every hall is connected to a well-maintained and spacious <strong>cycle stand</strong> provided with air-pump. GDB and MV have a combined cycle-stand maintained by a worker. Workers are recruited to look after them.<strong> </strong>Guards are posted on the main entrances of each hall.</li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<ul>\r\n <li><strong>Hall Management: </strong>Each hall has an effective <strong>Hall Executive Council </strong>comprising a Hall Warden, an Assistant Hall Warden, and a few student elected secretaries. Whenever you face any technical issue, you only need to inform about that to anyone of these people and then it is only a matter of time to fix that. All the HECs work under the umbrella organisation of <strong>Hall Management Council </strong>headed by Chief Warden.</li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<ul>\r\n <li><strong>Aesthetics and Hall Events:</strong> Life at every hostel has its own pulses with various events throughout the year, including the inter-hall and intra-hall competitions, Garden Fests, and the Hall Foundation Day. The gardens and lawns of each hall are well-maintained by a group of gardeners and other workers.</li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<h3><strong>G.D. BIRLA HALL OF RESIDENCE</strong></h3>\r\n\r\n<p>GDB is undoubtedly one of the finest hostels in the campus of NITR, which presently accommodates almost 400 boarders that include undergraduates, postgraduates, and a few Ph.D. scholars as well.</p>\r\n\r\n<p> <strong> <img alt=\"\" src=\"http://mondaymorning.nitrkl.ac.in/uploads/media/GDB.jpg\" /></strong></p>\r\n\r\n<p>The whole plan is divided into three blocks: namely A, B and C.The buildings of A and B blocks are three-storeyed while C block is four-storeyed. The blocks are interconnected on each floor.</p>\r\n\r\n<p>The hall has a decorated garden where the Garden feast and the Hall Day arrangements are held. Some new benches have been installed near the badminton courts and in the garden as well, thus serving as a new hangout spot. </p>\r\n\r\n<p> </p>\r\n\r\n<h3><strong>MV HALL OF RESIDENCE</strong></h3>\r\n\r\n<p>Rendering abode to the freshman boys, MV Hall of Residence is located on the Scholar’s Avenue, like its immediate neighbour, GDB Hall.</p>\r\n\r\n<p>The plan of the hall divides the accommodation into three blocks: A, B, and C. Each block is three storied and the blocks are interconnected on each floor. According to the previous year stats, the first years were placed in the A and B blocks; the C block was mainly populated with postgraduates.</p>\r\n\r\n<p> <img alt=\"\" src=\"http://mondaymorning.nitrkl.ac.in/uploads/media/MV.jpg\" /></p>\r\n\r\n<p>The hall houses a Juice Centre within the C block to encourage healthy diet among the boarders. Recently in March, a well-equipped Gym was inaugurated within the hall to promote fitness. If you’re wishing for a congenial atmosphere that brims with life and dynamism, then MV Hall of Residence is the place for you.</p>\r\n\r\n<p> </p>\r\n\r\n<h3><strong>C.V. RAMAN HALL OF RESIDENCE </strong><strong> </strong> </h3>\r\n\r\n<p>Housing around 900 boarders in approximately 700 rooms, CV Raman Hall of Residence is easily the largest women’s accommodation at NITR. With buildings as high as the fourth storey, this hall of residence is shared by women of all years of undergraduate, postgraduate and doctorate programs. Positioned right beside the <strong>Central Gym and the Swimming Pool</strong>, CVR hall provides nifty infrastructure and quarters with scenic views, aesthetic walkaways and resplendent lawns to its dwellers.</p>\r\n\r\n<p>. <strong> <img alt=\"\" src=\"http://mondaymorning.nitrkl.ac.in/uploads/media/2.jpeg\" /></strong></p>\r\n\r\n<p>The hall is comfortably situated at a very walkable distance from the department buildings of Biotechnology, Food Processing, Industrial Design and Chemical Engineering. Along with a Basketball court and a Badminton court located on the hostel grounds, CVR provides a millennial style living to its boarders.</p>\r\n\r\n<p> </p>\r\n\r\n<h3><strong>K.M.S. HALL OF RESIDENCE</strong></h3>\r\n\r\n<p>Away from the hustle and bustle of Scholar’s Avenue, KMS is located in the vicinity of the campus Dispensary, the NEEDS market complex and the main gate of the campus. The KMS Hall of Residence is acclaimed to be one of the most sought-after hostels for girls. KMS accommodates about 400 boarders in the four blocks, namely A, B, C and D. While the B-Block is specifically allotted to the freshmen, the other blocks have a diversity in its occupants including sophomores, pre-final year undergraduates, postgraduates and doctorate scholars.</p>\r\n\r\n<p><img alt=\"\" src=\"http://mondaymorning.nitrkl.ac.in/uploads/media/KMS.jpg\" /></p>\r\n\r\n<p>Extracurricular activities like Zumba dancing and yoga are conducted in the Common Room regularly. Besides, the hall also gives ground to a badminton court in front of the B-block and a basketball court in the courtyard. KMS has an efficient and approachable management staff that looks into the matters, repairs the equipment and resolves disputes. All said and done, this hall has everything it takes to make for a secure and pleasurable stay for any boarder.</p>\r\n\r\n<p> </p>\r\n\r\n<p>A very encouraging and cheerful student-environment prevails in the hostels which undoubtedly plays an important role in making the freshers' life more comfortable and soothing with a home-like feeling. Each of the hostels is like a city within itself where a healthy student-authority interaction make you feel as a part of a family of the boarders.</p>\r\n', 'Hostellife.jpg', 3, '2019-06-10 18:34:12', 0, 0, 0, 0);
INSERT INTO `posts` (`id`, `title`, `slug`, `body`, `post_image`, `Category_id`, `Date`, `comments`, `views`, `featured`, `highlight`) VALUES
(26, 'INNOVATION MEETS INTELLIGENCE- ICIPDIMS\'19', 'INNOVATION-MEETS-INTELLIGENCE-ICIPDIMS19', '<p>The first international conference on ‘Innovative product design and intelligent manufacturing system’(ICIPDIMS-19) ,jointly organised by the Department of Industrial Design and Mechanical Engineering, was a two-day event held on 17th and 18th May with the two esteemed faculties,<strong> Prof B.B.V.L Deepak </strong>,H.O.D of ID department and<strong>Prof D.R.K Parhi</strong>, H.O.D of Mechanical department, as the coordinators of the event.</p>\r\n\r\n<p>The inaugural ceremony was held in Bhubaneswar Behera Auditorium on the first day and commenced with the lighting of Lamps by<strong> Professor Animesh Biswas </strong>(director of NITR), Professor B.B. Biswal (director of NIT Meghalaya and program general chair for the conference), Professor S.K Patel (Registrar-in-charge of NITR), Professor B.B.V.L Deepak(Chairman of the conference) and Professor D.R.K Parhi(Program convenor) . This was followed immediately by a keynote lecture by Prof. Kaushik Kumar from BITS Mesra on <strong>‘Virtual manufacturing’</strong>. It talked about how the customer customises and manufactures a product virtually using technology. There were nine technical sessions on the first day of the event with three going on in B.B.A, Senate Hall and the Mechanical Seminar Hall in parallel. The sessions were hosted by Student coordinator, <strong>Amruta Rout.</strong></p>\r\n\r\n<p>The second day embarked on a high note with a keynote lecture on <strong>‘Models that surround us’ by D.S Bisht</strong>, Assistant Professor of ID Department. There were two technical sessions in B.B.A and the Senate Hall held in parallel. After that, the Valedictory was held in the afternoon with a delay of half an hour because of some technical issues faced with the microphone in the auditorium. The Valedictory session began with a speech by Prof. Deepak who talked about the great turn out for the event and thanked everyone for making it a success. He commented that there were 110 research papers presented including one international paper presented from Nigeria. He ended his speech by opening the floor for any suggestions on how the event could improve and took necessary feedback. Subsequently, the student coordinators were handed out certificates by Prof. D.R.K Parhi( Program convenor). Following that, Professors were called upon to collect conference gifts for attending as a technical chair during the conference by B.B Biswal.<strong> Prof. D.S Bisht and Prof Kaushik Kumar</strong> were awarded for acting as technical chair and for being the keynote speakers. Finally, 11 best research papers were selected among 8 research tracks and prizes were given to the best research paper in every session by Prof. D.R.K Parhi. The session ended with a speech by Prof. B.B Biswal who thanked all the delegates for turning up and the Professors involved as they didn’t leave any stone unturned to make it a success.</p>\r\n\r\n<p>The Valedictory session was followed by a local bus tour around Rourkela for all the delegates and the event was drawn to a successful conclusion.</p>\r\n\r\n<p>Amruta Rout had the following to say about the event:</p>\r\n\r\n<blockquote>\r\n<p>Since we were organising it for the first time, it was very difficult as very few people are there in the ID department but we successfully arranged the first-ever international conference for the Industrial Design department due to the relentless hard work of M.Tech, PhD students and the professors</p>\r\n</blockquote>\r\n\r\n<p>The conference saw a great turn out, receiving 138 research articles (including international papers from China and Nigeria) for a presentation that are to be published in Springer books series.</p>\r\n\r\n<p><strong>Prof. Kaushik Kumar,</strong> who was also the second author of a research paper presented, had the following views about the conference:</p>\r\n\r\n<blockquote>\r\n<p>Different conferences have different venues. So, people usually attend conferences for the venue’s historical importance and not necessarily for the conference. There were many presenters who turned up from all around the country despite the summer heat and in spite of Rourkela not being a tourist spot, thus making the conference a tremendous success. Recently, I got design patents for two of my projects. This conference was very relevant to the Mechanical department and my field of work, i.e. product development.</p>\r\n</blockquote>\r\n\r\n<p><strong>ICIPDIMS was primarily on innovative product development and processing and also how it plays an important role in the current scenario.</strong> This forms a very important part of Industry 4.0 as the customer needs a customised and unique product. It recognises that the need of the hour is a product that is modified to match the needs of a customer as a product that doesn't owe any distinctive significance to them is not satisfactory. The summer of 2019 in Rourkela had a lot more to offer than just unbearable heat and overpowering humidity. </p>\r\n\r\n<p><img alt=\"\" src=\"https://mondaymorning.nitrkl.ac.in/uploads/media/PHOTO-2019-05-24-15-46-04.jpg\" /></p>\r\n', 'PHOTO-2019-05-24-15-46-02.jpg', 3, '2019-06-10 18:35:26', 0, 7, 0, 0),
(27, 'CONVENING SUSTAINABILITY- NATIONAL CONFERENCE ON ADVANCES IN FOOD PROCESSING FOR SUSTAINABLE FOOD SECURITY (AFP-2019)', 'CONVENING-SUSTAINABILITY-NATIONAL-CONFERENCE-ON-ADVANCES-IN-FOOD-PROCESSING-FOR-SUSTAINABLE-FOOD-SECURITY-AFP-2019', '<p>The Department of Food Processing, NIT Rourkela organised a national conference on advances in Food Processing for Sustainable Food Security on <strong>May 17-18, 2019</strong>. The conference convened by NIT Rourkela invited food scientists, food technologists, dieticians, agricultural scientists, academicians and student delegates of eminent institutions across the nation. The prime objectives of the conference were</p>\r\n\r\n<ul>\r\n <li>Discussing advances in post-harvest and food processing</li>\r\n <li>Discussing the concerns in sustainable agriculture and food processing</li>\r\n <li>Discussing strategies and solutions for food and nutritional security</li>\r\n <li>Conferring interdisciplinary approach of bioscience engineering in food technology.</li>\r\n</ul>\r\n\r\n<p>The conference housed oral and poster sessions on thematic areas of innovation in <strong>food processing technology, post-harvest technology, waste management and effluent treatment, food quality and assurance</strong> among others. The conference served as a platform to brainstorm on ideas of innovation and develop ways of addressing a global issue of food security through sustainable means. Since, India, the second largest food-producing country, has attained self-sufficiency in food, it is prerogative to meet the challenges of production and efficient processing of food and agriculture to cater to a population of 1.2 billion and benefit from marginal surplus. The conference, a first of its kind organized by the Department of Food Processing, NIT Rourkela, received a total of <strong>135 abstracts</strong> and <strong>85 registrations</strong> with <strong>a turn-up ratio of 75</strong>. The notable delegates were from <strong>IIT Kharagpur, IIT Delhi, IIT Guwahati, ICAR Delhi, ICT Mumbai, NABARD, OUAT Bhubaneshwar</strong>, etc marking their presence.</p>\r\n\r\n<p>Eminent speakers of the conference were <strong>Prof. H.N Mishra (IIT KGP), Prof. S.N Nayak (IIT Delhi), Prof. Snehasis Chakraborty (ICT Mumbai), Prof. Rajeev Panda (School of Management, NIT Rourkela) </strong>along with noteworthy guests like <strong>Mr. Somesh Singh (NABARD) </strong>gracing the confluence kick-starting with key keynotes patron of the conference <strong>Prof. Animesh Biswas</strong>, Director, NIT Rourkela. Speaking about the agenda and the objectives of the conference, <strong>the organizing head Prof. Rama Chandra Pradhan</strong>, Head of the department of food processing engineering, NIT Rourkela said, “Food security is a major challenge in the way of curbing hunger and enabling the development of food processing in India. So, through this conference, we are addressing sustainable food processing that plans to give inputs to the student community and scientists in achieving our objective of food security. We are grateful that delegates and visionaries across India turned up to participate in the conference.”</p>\r\n\r\n<p>The convenors of the event were <strong>Prof. Sabyasachi Mishra, Prof. Sushil Kumar and Prof. Madhuresh Dwivedi of the department of food processing, NIT Rourkela. Prof. Preetam Sarkar (Dept. of food processing, NIT Rourkela) </strong>served as the treasurer and co-convenor of the conference. Prof. Dwivedi spoke to Monday Morning about some potent issues and their resolutions in the food security sector that surfaced through the conference. “Since food is a basic amenity of the society, it was essential that we theme this conference with food security. We addressed sections of technology, engineering and more scientific-oriented approach towards developing constructs and equipment. As we look forward to organising such conferences, we aim to sensitize everybody about the importance of food processing and consumption. We have come across roadmaps to tackle burning issues like malnutrition through functional food and also fortified product manufacturing. We also aim to develop such an engineering mechanism in our department.”</p>\r\n\r\n<p>The conference also awarded the three best oral presentations and poster presentations along with best abstracts from each theme. A grateful <strong>Prof. Sabyasachi Mishra</strong> said,</p>\r\n\r\n<blockquote>\r\n<p>The conference is a major event in the advent of the Food Security Act of the government. Adding sustainability to the cause makes it all the more crucial. Looking at the food wastage due to urbanization and population rise, the best way to tackle this is minimizing wastage in agricultural production as well as processed food. We should come up with deliberations towards developing infrastructure to address these issues. After all these sessions in the conference, we can surely help develop such ideas and mechanisms, particularly product development, packaging and storage among key areas.</p>\r\n</blockquote>\r\n\r\n<p>Key-note speakers <strong>Prof. S.N Nayak</strong> and <strong>Prof. H.N Mishra </strong>spoke to Monday Morning about a successful seminar highlighting necessitated food safety engineering and enhancing production engineering. Prof. Nayak talked about his ventures in developing ‘Green Solvent’ to curb toxic effluents and isolate food preservatives, artificial colouring and flavours in the food processing industry and scale up new advancing technology in the field of food processing.</p>\r\n\r\n<p><strong>Prof. Mishra</strong> said,</p>\r\n\r\n<blockquote>\r\n<p>NIT Rourkela, by organizing this conference, has taken the right step in a right direction because nowadays the country is facing a turmoil in food and nutritional security owing to umpteen reasons like improper por poor infrastructure, improper handling and storage that leads to wastage of product. So, post-harvest management and value additions are the prime challenges in the food processing sector. If we can save up to 5% of this wastage we can contribute tremendously to our national and rural economy. The 2-day deliberations and recommendations made in this conference by young researchers and fellows will be forthcoming to help improve the situation.</p>\r\n</blockquote>\r\n\r\n<p> </p>\r\n\r\n<p>The conference was sponsored by <strong>NSERB India, Dept. of Science & Technology (Govt. of India), KK Lifesciences, Quebec Analytica, Khera, Future Solutions Inc., Aztech, Sri Ram Mahabir Prasad and Jagannath Printers & Publishers.</strong></p>\r\n', '20190518_122733.jpg', 3, '2019-06-10 18:36:45', 0, 0, 0, 0),
(28, 'HEADING FOR A BON-VOYAGE AT MIT : SOUMYA PRATAP TRIPATHY', 'HEADING-FOR-A-BON-VOYAGE-AT-MIT-SOUMYA-PRATAP-TRIPATHY', '<p>A soft-spoken person profoundly engrossed in <strong>research projects</strong> with <strong>10 patents</strong> under his name, having completed <strong>12-15 projects</strong> on tissue engineering, nanotechnology, and <strong>handled 2 Government sponsored project</strong>, the prodigy has created his niche in the field of research and technology. A person with a never-ending thirst to experiment with new skills, <strong>Soumya Pratap Tripathy</strong>, a fresh graduate from the <strong>Department of Biotechnology and Biomedical Engineering</strong> is one of those privileged students to bag the prestigious acceptance at <strong>Massachusetts Institute of Technology </strong>for his doctoral studies. Monday Morning brings you the story of Soumya Pratap Tripathy, who managed to survive to engineering along with his tremendous works in the research fields of his passion.</p>\r\n\r\n<p><strong>MM: Brief us about your childhood and schooldays.</strong></p>\r\n\r\n<p><strong>ST: </strong>I am an inhabitant of Odisha, and I hail from <strong>Bhadrak.</strong> My educational background was entirely in Odia medium schools. After my intermediate, I decided to take a year off and moved to Bhubaneshwar for AIPMT preparations. <strong>Engineering was never a choice for me</strong>. Unluckily, I couldn’t make it for medical and with a not-so-good rank, landed up in Biotechnology Engineering at NIT Rourkela. As a child, I had a habit of splitting household devices and knowing about how things work and always wanted to serve my Nation. I spent a lot of time pursuing my interest.</p>\r\n\r\n<p><strong>MM: How have these four years been at college, both personally and professionally?</strong></p>\r\n\r\n<p><strong>ST:</strong> I had a jolly time here for the last four years of my life. My life turning point was meeting <strong>Prof. Sirsendu Sekhar Ray</strong>. He is a very innovative professor and <strong>the discourse of his thoughts and ideas are quite productive</strong>. Prof. Ray treated me not less than his son, and I obeyed his path. He is my source of inspiration and I had a glorious time working with him. <strong>The Anatomy and Physiology labs were my places of hibernation.</strong></p>\r\n\r\n<p>The thing that annoyed me here, was the <strong>strict attendance policy</strong>, which brought me <strong>21-grade backs</strong> during my entire B.Tech career. The attendance is stringent than necessary and that began to pester me.</p>\r\n\r\n<p><img alt=\"\" src=\"https://mondaymorning.nitrkl.ac.in/uploads/media/WhatsApp%20Image%202019-05-28%20at%2016.01.03.jpeg\" /></p>\r\n\r\n<p><strong>MM: Talking about your prestigious acceptance at MIT, walk us through your motivation for applying to MIT.</strong></p>\r\n\r\n<p><strong>ST: I had made up my mind to probe deep into the line of research from the beginning itself.</strong> I didn’t have any personal motive to join MIT. All I yearned a good platform to satisfy my craving for research. <strong>Prof. Ray was driving force behind this</strong> without whose assistance; this achievement would have been far less than even a dream. He was fascinated with the research opportunities afforded there at MIT, and so was I.</p>\r\n\r\n<p><strong>MM: Brief us about the application procedure. How was the feeling when you finally received the acceptance letter?</strong></p>\r\n\r\n<p><strong>ST: </strong>In my case, there was <strong>no necessity of GRE and the score of IELTS was waved off.</strong> This procedure of application differs from branch to branch. I had <strong>applied through their online portal and chose the research group of my interest</strong>. <strong>The application was out by December. I went through 4 skype interviews and 4 weekly assignments were assigned to me</strong>. I explicated the documentation of all my research projects, all conference presentations, and patents in my first interview. <strong>The 4 assignments were based on the problem statements on which I will be working.</strong> The interviews were basically focused on explaining the proposed solution to the given problem statements in the assignment. After going through all the interviews and assignments, the Professor offered me a PhD position at her lab.</p>\r\n\r\n<p><strong>MM: What other colleges did you apply for? What were the major reasons for choosing MIT?</strong></p>\r\n\r\n<p><strong>ST:</strong> For Ph.D., I had not applied for any other colleges. However, I had applied for Stanford University for a one-year entrepreneurial program: Bio-design program. I was refused as they only accepted graduates and doctorate applicants from top-notch colleges. The environment of MIT was really appreciative which was the sole reason for choosing MIT.</p>\r\n\r\n<p><strong>MM: What would be your major role over there? What are your research interests?</strong></p>\r\n\r\n<p><strong>ST: </strong>Mostly, I will be working as <strong>a graduate researcher for two years and doctorate researcher for 5 years. My research field will be based on a brain-computer interface. We will be making a living cyborg. The animal will carry microchips integrated into the neurons in their brain so that we can track the neural activity in real time. It incorporates brain mapping and modelling.</strong></p>\r\n\r\n<p> My research interests twirl around spintronics in biology, the effect of fundamental particles in the biological phenomenon.</p>\r\n\r\n<p><img alt=\"\" src=\"https://mondaymorning.nitrkl.ac.in/uploads/media/WhatsApp%20Image%202019-05-28%20at%2015.59.36%20%281%29.jpeg\" /></p>\r\n\r\n<p><strong>MM: What kind of preparations or what are the prerequisites for getting admitted to MIT?</strong></p>\r\n\r\n<p><strong>ST: They mainly look after your attitude towards research. Proper documentation of your works like patents, research publications, presentations plays a key role in getting into.</strong> I received the offer as I possessed the right skill sets to contribute to the future project.</p>\r\n\r\n<p><strong>MM: You have worked immensely on Bio-glass and Graphene Quantum Dots. Tell us something about the same.</strong></p>\r\n\r\n<p><strong>ST: In the year 2017, I along with my team members, Swati Mohapatra, Soumyashree Jena, Kritideepan Parida, Pranjali Mishra and Megha Satpathy, participated in the</strong> <strong>Engineering Students Innovation Challenge held by the International Society for Scientific Research and Development (ESIC-ISSRD) 2017, and we presented the project on the Extraction of Graphene Quantum Dots</strong> from various reliable sources and it has a wide application in orthopaedic, dentistry, high-intensity laser applications. We discovered a unique method for the purification of Glass Quantum Dots through vapour phase transmission and have patents on the same. <strong>Our team won the Best Project Award at National Level for the same.</strong></p>\r\n\r\n<p><strong><img alt=\"\" src=\"https://mondaymorning.nitrkl.ac.in/uploads/media/WhatsApp%20Image%202019-05-28%20at%2015.59.36%20%282%29.jpeg\" /></strong></p>\r\n\r\n<p><strong>MM: Along with such a strong hold on research, you are running a start-up as well. Tell us about the same.</strong></p>\r\n\r\n<p><strong>ST: </strong>We started our startup, <strong>FLUORO Q </strong>in 2017 under the guidance of Prof. Ray. He always had a dream of introducing his products to the commercial sector. Keeping in mind, the demand for graphene, we decided to use graphene dots in our products. We are now in the position of registering our company. Due to the shortage of time and manpower, we couldn't start it properly. The monetary sources are the main constraints. <strong>Our team includes- Anup Sunni Routray, Kritideepan Parida, Binay Priyadarshan Nayak, Abhijeet Sahoo, Sashwat Lenka, Kuna Das.</strong> They all have expertise in various fields.</p>\r\n\r\n<p><strong>MM: Talk us about the curriculum and prospects of Biotechnology Engineering at NITR. How do you feel the improvement can take place?</strong></p>\r\n\r\n<p><strong>ST: </strong>The professors need to be a bit indulgent and give students their own space. They should boost the students to achieve more. <strong>The pattern of teaching greatly affects the student’s life. The attendance system needs to be a bit flexible</strong>. While the curriculum is decent, it should mainly focus on practical approaches.</p>\r\n\r\n<p>Like in my 2nd year, I approached many professors with lucrative ideas, but they denied. This was one more discouraging factor that I could spot out. People like me, who didn’t have the facilities required at first, have to find their own way.</p>\r\n\r\n<p><img alt=\"\" src=\"https://mondaymorning.nitrkl.ac.in/uploads/media/WhatsApp%20Image%202019-05-28%20at%2015.59.36.jpeg\" /></p>\r\n\r\n<p><strong>MM: What are your future plans?</strong></p>\r\n\r\n<p><strong>ST:</strong> <strong>My chief intention is to bring the products and technology from lab bench to market</strong>. I will be continuing with my startup and wish to contribute to society in a useful manner, meeting the basic objective of the research. <strong>A few years down the line, I see myself as a successful entrepreneur.</strong></p>\r\n\r\n<p><strong>MM: What message would you like to give our readers.</strong></p>\r\n\r\n<p><strong>ST:</strong></p>\r\n\r\n<blockquote>\r\n<p>Do not waste your time. Try to do some productive work and carry on putting efforts whole-heartedly to accomplish your dreams. You should take up something that inspires you, something that makes you passionate. These four years are the best time to explore.</p>\r\n</blockquote>\r\n', '39385771_2135551656705927_3327745033217507328_n.jpg', 3, '2019-06-10 18:38:31', 0, 7, 0, 1),
(29, 'REVOLUTIONIZING LIFE SCIENCES AND DISEASE BIOLOGY: ANUJ TIWARI', 'REVOLUTIONIZING-LIFE-SCIENCES-AND-DISEASE-BIOLOGY-ANUJ-TIWARI', '<p><strong>European Molecular Biology Organization or EMBO</strong> is a professional organization of more than 1,800 life scientists. Its goal is to promote research in life sciences and enable international exchange between scientists. It organizes workshops, courses, conferences, publishes scientific journals and supports individual scientists and projects. Recently, it conducted a conference in Xiu Ning, China from 11-14 April 2019 with the theme <strong>'Membrane shaping and remodelling of proteins.'</strong> <strong>Anuj Tiwari</strong>, one of the PhD scholars from the <strong>Department of Life Science </strong>participated in the prestigious conference. Anuj has been immensely contributing in the fields of Biochemistry, disease biology, membrane modelling and shaping of proteins.</p>\r\n\r\n<p>Born and brought up in Nagpur, Anuj Tiwari had completed his Bachelors and Masters in Biochemistry from the same city. He interned at Biocon, a pharmaceutical company based in Bangalore for a year. Later, his inclinations towards Biological Sciences made him pursue the Doctoral course in the Life Science Department at NIT Rourkela.</p>\r\n\r\n<p><strong>Monday Morning(MM): You attended the conference in China conducted by EMBO, tell us about the conference.</strong></p>\r\n\r\n<p><strong>Anuj Tiwari(AT): </strong>It was a very important conference in our field which is based on membranes. Membranes are the barriers which protect the organelles from outside and compartmentalize the entire cell. The conference was about the different types of proteins which deform or model the membrane in different ways. Membranes are often ignored and considered static but in reality, they play a significant role in the Cell structure and overall dynamics.</p>\r\n\r\n<p>Firstly, I received a travel grant from EMBO based on the abstract I sent. After screening the submitted abstracts, they awarded travel awards to different participants from different countries. So my travel and accommodation were taken care of by the conference. Along with this, the institute will be reimbursing me half of the registration fees. <strong>The conference was attended by scholars from most of the developed countries like UK, US, Australia, Japan, China itself, Israel, Germany and many others.</strong></p>\r\n\r\n<p><strong><img alt=\"\" src=\"https://mondaymorning.nitrkl.ac.in/uploads/media/IMG-20190529-WA0007.jpeg\" /></strong></p>\r\n\r\n<p><strong>MM: Share your overall experience at the conference.</strong></p>\r\n\r\n<p><strong>AT:</strong> In the conference, I presented a poster and a small flash talk. The poster revolved around the intricacies of <strong>Alzheimer’s disease.</strong> The topic for my presentation was based on Amyloid beta-40 mediated aggregation neuronal cell membrane. In the posters, we showed some of the bio-meiotic model membrane systems that we used for the screening. So we are at a phase where we synthetically make the biological cell membranes and it doesn’t consist any of the organelles and observe how our protein of interest (which in my case was Amyloid beta-40) affects the structure of the membranes. There are many other proteins which affect the structure of proteins and in some cases are responsible for some diseases like Hepatitis-B.</p>\r\n\r\n<p>The overall experience was great where I got an opportunity to meet like-minded scholars working in the research areas of my interest. I faced many problems because of the language and being a vegetarian, my issues were amplified. I relied on Google translate for most of the interactions but again because of most of the Google facilities like Google maps, Gmail and others are banned in China, I had a difficult time as well. The conference was in Xiang Ming Hotel in Huangshan city and was organized by the <strong>Institute of Biophysics, Chinese Academy of Sciences.</strong></p>\r\n\r\n<p><strong>MM: What are you currently researching on?</strong></p>\r\n\r\n<p><strong>AT:</strong> I am currently working on Alzheimer’s disease. It is a late-onset disease: something which happens at a very old age. There are basically two pathophysiological factors through which this disease happens. One is Amyloid Plaques and other is neurofibrillary entanglements. I am working on the Amyloid part. With the passage of time, a particular peptide aggregate gets collected in the brain. This aggregation leads to neural cell death and eventually results in Alzheimer's disease.</p>\r\n\r\n<p><strong>MM: Are there any other conferences you are looking forward to?</strong></p>\r\n\r\n<p><strong>AT: </strong>Since my PhD. is about to be completed, I may not get a chance to attend any more conferences. If I get time I would attend a conference in Mechanobiology Institute, Singapore.</p>\r\n\r\n<p><img alt=\"\" src=\"https://mondaymorning.nitrkl.ac.in/uploads/media/IMG-20190529-WA0008.jpeg\" /></p>\r\n\r\n<p><strong>MM: What would be your message to our readers?</strong></p>\r\n\r\n<p><strong>AT:</strong> If you want to do something good in life, just keep on putting efforts silently. You might get deviated from the path you initially chose, but you must ensure that you figure out your destination wisely. Punctuality plays a major role in success. <em>If you are doing your job in time, you will eventually get better at it and the end results will definitely be amazing!</em></p>\r\n\r\n<p><em>Team Monday Morning wishes Anuj Tiwari good luck for his future endeavours.</em></p>\r\n', 'IMG-20190529-WA0009.jpeg', 3, '2019-06-10 18:39:40', 0, 0, 0, 0),
(30, 'SECURELY UNSECURED', 'SECURELY-UNSECURED', '<p>23rd May 2019, 11:50 PM: My anxiety levels were reaching highs I wasn’t aware of. 10 minutes more and the results will be out. Finally, the dreaded time came and at 12 AM I mustered up the courage to log in into NITRIS. But the server was down and the result wasn’t displayed. “Too much traffic perhaps”, I thought to myself and tried to sleep.</p>\r\n\r\n<p> 15 minutes later texts from friends came pouring in. Everyone other than me knew their results. I tried to log in again, but no avail. So I asked a friend about how she got her results and turns out, it wasn’t through NITRIS. Her exact words were <strong>“one of our batchmates has the grade cards. Talk to him and you will get your grade card. Just calculate your CG after that”. </strong>Seems hard to believe, right? Well, it’s very much possible.</p>\r\n\r\n<p><img alt=\"\" src=\"https://mondaymorning.nitrkl.ac.in/uploads/media/scrr.jpg\" /></p>\r\n\r\n<p> <strong>There isn’t a lot that an ill-managed database and an unsecured server can protect.</strong></p>\r\n\r\n<p><strong>As I later came to know, a student had access to grade cards owing to his personal connections and his skills, which he cleverly used to access the NITR database.</strong> It seems easy to blame the student. But we are missing out on a bigger picture, why isn’t the security of the database up to the mark? Why didn’t the person-in-charge think twice about professional ethics before handing out information to a student? How can an eminent institute which prides itself over the technical geniuses it houses, not have the basic security to protect its information system from its own students?</p>\r\n\r\n<p>Before we start the blame game, it is important to know what implications this could have. Sensitive information like this can be used for ragging, bullying or defamation since many students have insecurities about their academic performance. <strong>There</strong> <strong>is also the probability that someone can access records in the future since a person who has found his way along with the database once can surely figure it out again</strong>. A security breach like this puts the institute and the students at the <strong>risk of hacking and data manipulation.</strong></p>\r\n\r\n<p>Blaming someone isn’t the end of this matter, taking up responsibility and learning the proper lesson is important. On the surface, the security system feels secure but incidents like this bring out the deep-rooted issues which remain hidden until someone takes unfair advantage. Looks like campus security isn’t the only security we should worry about.</p>\r\n\r\n<p>Note: Some readers might question why the names were blurred. The intention of this write-up is not to punish anyone for their mistakes. Breaching of privacy and security are the issues to be addressed.</p>\r\n', '19The-Difference-between-security-and-privacy-1.jpg', 2, '2019-06-10 18:40:37', 1, 2, 0, 1),
(31, 'TRANSFORMING THE DIGITAL WORLD: COMPUTER SCIENCE AND ENGINEERING', 'TRANSFORMING-THE-DIGITAL-WORLD-COMPUTER-SCIENCE-AND-ENGINEERING', '<p>Established in the year 1982,<strong> Computer Science and Engineering department</strong> in NITR continues to remain the most preferred branch among the undergraduates. The department envisions preparing its students for securing opportunities at industrial and research profiles through study and implementation of the fundamental principles of the theory, abstraction, and software design along with presenting the ethical and social issues associated with computer science. Through these years, the department has witnessed immense growths in leaps and bounds.</p>\r\n\r\n<p>After the dual degree courses were discontinued from the academic year 2017-18, currently, the department offers B.Tech (4 years) and M.Tech courses, with an intake of <strong>90 and 60 students</strong> per batch in B.Tech and M.Tech courses respectively. <strong>Mr. Ashok Kumar Turuk</strong> is serving as the head of the Department. The department is blessed with 23 dedicated professors with specializations in various fields of Computer Science.</p>\r\n\r\n<p>The admission in the B.Tech program is conducted by Joint Seat Allocation Authority (JoSAA) and the ranks in JEE- Mains are considered for the same. The opening and Closing Ranks for admission in the year 2018 were as follows:</p>\r\n\r\n<table border=\"1\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p><strong>Allotted Quota</strong></p>\r\n </td>\r\n <td>\r\n <p><strong>Category</strong></p>\r\n </td>\r\n <td>\r\n <p><strong>Seat Pool</strong></p>\r\n </td>\r\n <td>\r\n <p><strong>Opening Rank</strong></p>\r\n </td>\r\n <td>\r\n <p><strong>Closing Rank</strong></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Home State</p>\r\n </td>\r\n <td>\r\n <p>Open</p>\r\n </td>\r\n <td>\r\n <p>Female-Only</p>\r\n </td>\r\n <td>\r\n <p>8428</p>\r\n </td>\r\n <td>\r\n <p>15360</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Home State</p>\r\n </td>\r\n <td>\r\n <p>OBC-NCL</p>\r\n </td>\r\n <td>\r\n <p>Female-Only</p>\r\n </td>\r\n <td>\r\n <p>11727</p>\r\n </td>\r\n <td>\r\n <p>12422</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Home State</p>\r\n </td>\r\n <td>\r\n <p>SC</p>\r\n </td>\r\n <td>\r\n <p>Female-Only</p>\r\n </td>\r\n <td>\r\n <p>2434</p>\r\n </td>\r\n <td>\r\n <p>2434</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Home State</p>\r\n </td>\r\n <td>\r\n <p>OBC-NCL</p>\r\n </td>\r\n <td>\r\n <p>Gender-Neutral</p>\r\n </td>\r\n <td>\r\n <p>1718</p>\r\n </td>\r\n <td>\r\n <p>4680</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Home State</p>\r\n </td>\r\n <td>\r\n <p>SC</p>\r\n </td>\r\n <td>\r\n <p>Gender-Neutral</p>\r\n </td>\r\n <td>\r\n <p>203</p>\r\n </td>\r\n <td>\r\n <p>2644</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Home State</p>\r\n </td>\r\n <td>\r\n <p>OBC-NCL (Pwd)</p>\r\n </td>\r\n <td>\r\n <p>Gender-Neutral</p>\r\n </td>\r\n <td>\r\n <p>176</p>\r\n </td>\r\n <td>\r\n <p>176</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Home State</p>\r\n </td>\r\n <td>\r\n <p>ST</p>\r\n </td>\r\n <td>\r\n <p>Gender-Neutral</p>\r\n </td>\r\n <td>\r\n <p>281</p>\r\n </td>\r\n <td>\r\n <p>622</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Home State</p>\r\n </td>\r\n <td>\r\n <p>Open</p>\r\n </td>\r\n <td>\r\n <p>Gender-Neutral</p>\r\n </td>\r\n <td>\r\n <p>4209</p>\r\n </td>\r\n <td>\r\n <p>8524</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Home State</p>\r\n </td>\r\n <td>\r\n <p>Open(PwD)</p>\r\n </td>\r\n <td>\r\n <p>Gender-Neutral</p>\r\n </td>\r\n <td>\r\n <p>81</p>\r\n </td>\r\n <td>\r\n <p>81</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Other State</p>\r\n </td>\r\n <td>\r\n <p>SC</p>\r\n </td>\r\n <td>\r\n <p>Female-Only</p>\r\n </td>\r\n <td>\r\n <p>595</p>\r\n </td>\r\n <td>\r\n <p>595</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Other State</p>\r\n </td>\r\n <td>\r\n <p>ST</p>\r\n </td>\r\n <td>\r\n <p>Female-Only</p>\r\n </td>\r\n <td>\r\n <p>332</p>\r\n </td>\r\n <td>\r\n <p>332</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Other State</p>\r\n </td>\r\n <td>\r\n <p>OBC-NCL</p>\r\n </td>\r\n <td>\r\n <p>Female-Only</p>\r\n </td>\r\n <td>\r\n <p>1249</p>\r\n </td>\r\n <td>\r\n <p>1643</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Other State</p>\r\n </td>\r\n <td>\r\n <p>OPEN</p>\r\n </td>\r\n <td>\r\n <p>Female-Only</p>\r\n </td>\r\n <td>\r\n <p>4432</p>\r\n </td>\r\n <td>\r\n <p>5521</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Other State</p>\r\n </td>\r\n <td>\r\n <p>OBC-NCL (PwD)</p>\r\n </td>\r\n <td>\r\n <p>Gender-Neutral</p>\r\n </td>\r\n <td>\r\n <p>30</p>\r\n </td>\r\n <td>\r\n <p>30</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Other State</p>\r\n </td>\r\n <td>\r\n <p>SC</p>\r\n </td>\r\n <td>\r\n <p>Gender-Neutral</p>\r\n </td>\r\n <td>\r\n <p>224</p>\r\n </td>\r\n <td>\r\n <p>306</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Other State</p>\r\n </td>\r\n <td>\r\n <p>ST</p>\r\n </td>\r\n <td>\r\n <p>Gender-Neutral</p>\r\n </td>\r\n <td>\r\n <p>95</p>\r\n </td>\r\n <td>\r\n <p>118</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Other State</p>\r\n </td>\r\n <td>\r\n <p>Open</p>\r\n </td>\r\n <td>\r\n <p>Gender-Neutral</p>\r\n </td>\r\n <td>\r\n <p>2047</p>\r\n </td>\r\n <td>\r\n <p>3576</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>Other State</p>\r\n </td>\r\n <td>\r\n <p>OBC-NCL</p>\r\n </td>\r\n <td>\r\n <p>Gender-Neutral</p>\r\n </td>\r\n <td>\r\n <p>863</p>\r\n </td>\r\n <td>\r\n <p>1173</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>Computer Science is the systematic study of the theoretical foundations of information and computation and of practical techniques for their implementation and application in computer systems. On the other hand, Computer Engineering has its roots in Electrical and Electronics Engineering. It deals with the study of the interaction of various devices among themselves and with the computer.</p>\r\n\r\n<p> The branch is well equipped with modern laboratories like <strong>software engineering, advanced database, information security and data communication, image processing and clustered computing, visual surveillance laboratory and hardware laboratory.</strong> There are many notable research works taken up by the department. For instance, “Deep learning applications for computer vision task” and "Optimal controller placement in software-defined wide area network".</p>\r\n\r\n<p>In terms of placement, the branch never disappoints; the students of the department gets On-Campus placement offers from companies like <strong>Amazon, Adobe, Microsoft, Myntra Designs, Math Works, SAP Labs, ServiceNow, PwC Advisory </strong>etc.</p>\r\n\r\n<p>As a developing field, the branch provides excellent job and research opportunities currently and will continue to elevate the benchmarks in the future.</p>\r\n', 'cs.jpg', 3, '2019-06-10 18:42:01', 0, 3, 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `questions`
--
CREATE TABLE `questions` (
`id` int(11) NOT NULL,
`question` varchar(255) NOT NULL,
`answer` varchar(300) NOT NULL,
`author` varchar(255) NOT NULL,
`slug` varchar(255) NOT NULL,
`stat` varchar(30) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `questions`
--
INSERT INTO `questions` (`id`, `question`, `answer`, `author`, `slug`, `stat`) VALUES
(1, 'b cvcbcv', 'sgsd', 'sgfdsg', 'b-cvcbcv', 'answered'),
(2, ' i have a doubt', 'hv', 'gcghg', 'i-have-a-doubt', 'answered'),
(3, 'how do u answer these questions', 'i open admin panel and types the answer', 'vishal', 'how-do-u-answer-these-questions', 'answered'),
(4, 'it must have been preety hard', 'dhf', 'dsfsdfs', 'it-must-have-been-preety-hard', 'answered'),
(5, 'another question to answer', '', '', 'another-question-to-answer', 'unanswered'),
(6, 'and another one', '', '', 'and-another-one', 'unanswered');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` int(11) NOT NULL,
`username` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL,
`name` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL,
`role` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `username`, `email`, `name`, `password`, `role`) VALUES
(1, 'Vishal', 'vishal.ch.36@gmail.com', 'Vishal', '12345678', 'admin'),
(2, 'akash', 'akash.ch.1276@gmail.com', 'Akash', '25d55ad283aa400af464c76d713c07ad', 'subscriber'),
(3, 'Vishal', 'vishal.ch.162@gmail.com', 'Vishal Rana', '202cb962ac59075b964b07152d234b70', 'admin'),
(4, 'Admin', 'admin@site.com', 'Admin', '0192023a7bbd73250516f069df18b500', 'admin'),
(5, 'User', 'user@site.com', 'User', '6ad14ba9986e3615423dfca256d04e3f', 'subscriber'),
(6, 'Ajit', 'ajitrana18022000@gmail.com', 'Ajit Rana', '25d55ad283aa400af464c76d713c07ad', 'subscriber');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `categories`
--
ALTER TABLE `categories`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `comments`
--
ALTER TABLE `comments`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `comments_forum`
--
ALTER TABLE `comments_forum`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `forum`
--
ALTER TABLE `forum`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `poll`
--
ALTER TABLE `poll`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `posts`
--
ALTER TABLE `posts`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `questions`
--
ALTER TABLE `questions`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `categories`
--
ALTER TABLE `categories`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `comments`
--
ALTER TABLE `comments`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=27;
--
-- AUTO_INCREMENT for table `comments_forum`
--
ALTER TABLE `comments_forum`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT for table `forum`
--
ALTER TABLE `forum`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `poll`
--
ALTER TABLE `poll`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `posts`
--
ALTER TABLE `posts`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=32;
--
-- AUTO_INCREMENT for table `questions`
--
ALTER TABLE `questions`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;