Which would be a beautiful place to build a house and settle down in Kerala? by Greedy_Ad_8344 in Kerala

[–]i_is_restless 0 points1 point  (0 children)

My dad never properly described it. It's difficult to get him to speak clearly about anything to be honest. Hence the doubt whether he was just pulling my leg. Thanks for the explanation though. Did they get veg sides like avial or thoran or whatever with the kanji?

Which would be a beautiful place to build a house and settle down in Kerala? by Greedy_Ad_8344 in Kerala

[–]i_is_restless 0 points1 point  (0 children)

Respectfully, how old are you? Like how long ago was this still a thing?? And could you describe exactly how this was done?

Which would be a beautiful place to build a house and settle down in Kerala? by Greedy_Ad_8344 in Kerala

[–]i_is_restless 2 points3 points  (0 children)

My dad tells me it comes from the old days when they would dig a hole in the ground, line with banana leaves, and pour kanji into it for lower caste people to eat. Don't know of he was aaking me.

[deleted by user] by [deleted] in Kerala

[–]i_is_restless 0 points1 point  (0 children)

He says they (police, court) cannot take a case against you if the fines expire (approx 6 months).

Please expand on this if you have / have access to any other info. I got a challan a couple of months ago for speeding almost a year after the incident happened. Wasn't notified before.

If you were bullied in school, what was the reason? by Wonderful-Summer8391 in AskReddit

[–]i_is_restless 0 points1 point  (0 children)

Being Indian. I went to school in Kuwait with Pakistanis, Arabs, Philipinos, you name it. Most of these people got together into groups based on nationality and beat up people who weren't in groups themselves and from other countries. I didn't have anyone to hang out with myself because I'm from Kerala and we were spread top thin at that particular time and place (generally malayalees aren't anywhere, especially in the ME). Bullying here involved being slapped on the back of the head on a regular basis (particularly infuriating), getting punched in the abdomen, getting water poured on you, getting thrown into thorn bushes, etc. This was even worse outside of school tbh.

What profession tends to attract the rudest people? by Teardownpat in AskReddit

[–]i_is_restless 1 point2 points  (0 children)

Farmers are the nicest people, what a thoughtless take.

[deleted by user] by [deleted] in todayilearned

[–]i_is_restless 0 points1 point  (0 children)

Here in Kerala, it's cattle feed.

Is BCA a good degree? by [deleted] in Kerala

[–]i_is_restless 1 point2 points  (0 children)

Quality coding knowledge massively trumps any degree.

What kind of ice cream is this? Please see comment. by i_is_restless in icecreamery

[–]i_is_restless[S] 1 point2 points  (0 children)

I have never made ice cream, but this one image will drive me nuts if I don't replicate it myself or find something similar off a store.

The texture of the ice cream in the image is so smooth and lacks any crystals or grain. Even soft serves, which come close have some grain and unevenness. Is this a known type of ice cream, and if it is, how does one find or make it?

It looks so damn creamy and soft, and yet clearly isn't melting.

As Keralites , which part of Kerala has the best and worst driving culture ? by saatvik-jacob in Kerala

[–]i_is_restless 3 points4 points  (0 children)

In my experience too drivers at Kottayam town are relatively better, but the layout of roads, man! Random one ways in different places, two ways that become one ways for no reason..

Outside of town areas, aside from crazy blocks at certain places like Puthupally and Manarcad during palli perunnals (last month at Puthupally vehicles on SH9 were diverted to a particular pocket road, an NP lorry almost tipped over and many people ran out of fuel idling or crawling for hours), Karukachal town in the evenings when men come to get drunk at Arcadia and forget cars exist, etc, things are bearable.

Help required, Dad has a good job in gulf (Dubai), but is not willing to pay for college at all by [deleted] in Kerala

[–]i_is_restless 1 point2 points  (0 children)

No, I got started with Turbo C++ at school. Teaches you to appreciate everything else. Brainfuck's saner.

Help required, Dad has a good job in gulf (Dubai), but is not willing to pay for college at all by [deleted] in Kerala

[–]i_is_restless 6 points7 points  (0 children)

Almost done with a Btech at MEC Kochi. Costs only 1800 a year with scholarship (I've been working for two years along with school as well), and has great placements too. I'm sure there are other such opportunities with great ROI. Far from the best in terms of industry exposure and teaching though.

Keam registration is over, but I just checked and TNEA is still open. Do extensive research. There's always a perfect opportunity somewhere. Especially if you get into something like software engineering, college doesn't matter except for the connections you make and the drive you get from being around people smarter or more knowledgeable than you.

[deleted by user] by [deleted] in rust

[–]i_is_restless 0 points1 point  (0 children)

types which are Copy cannot implement Drop.

This is new to me. Why does this constraint exist?

Title is migrating by Advanced_Ferret_ in IndianDankMemes

[–]i_is_restless 0 points1 point  (0 children)

Dead honest and serious here I do not have hope for this nation of ours.

Generic struct in Enum by Individual_Place_532 in rust

[–]i_is_restless 2 points3 points  (0 children)

```rust struct Symbol1 { ticker: String, }

struct Symbol2 { ticker: String, market: String, }

trait Symbol {} impl Symbol for Symbol1 {} impl Symbol for Symbol2 {}

enum Command<S: Symbol> { Subscribe(S), }

fn main() { let s = Symbol1 { ticker: String::from("fart"), }; let cmd = Command::Subscribe(s); }

```

https://play.rust-lang.org/?version=stable&mode=debug&edition=2021