You are here

Blogs

Stepping into the IT world

Submitted by Samanway Ghatak, Last Modified on 2019-11-08

IT industry, home of thousands of jolites…future home of thousands more. Each year hundreds of engineering graduates like us find their place in this immense world of opportunities. Like hundreds of seniors of ours, now I share a tiny place in the middle of this ocean of information.

As I write this article, I feel lucky enough to gain some knowledge in this field to put together and pen down some of the topics that I observed and can be helpful to my fellows who are taking the penultimate step before joining the industry.

FILTER CHAMBER OF INSECT DIGESTIVE SYSTEM

Submitted by Mousumi Sepai, Last Modified on 2019-11-19
FILTER-CHAMBER-OF-INSECT-DIGESTIVE-SYSTEM-Diagram

Many homopteran insects feed on low concentrate plant sap. Their digestive tract shows a complex system called the ‘filter chamber’ where the extra solute water is made to flow directly from the initial to the terminal part of the midgut and the proximal regions of the ‘malpighian tubules’. The filter chamber of Cicadella viridis shows the intra membrane particles presence on the whole surface of the microvilli and of basal membrane infolded cells.

Resact

Submitted by Mousumi Sepai, Last Modified on 2019-11-17
Resact

Resact is a peptide of sequence isolated from the jelly layer of Arbacia punctulata (sea urchin) eggs, is a potent chemoattractant for A. Punctulata’s spermatozoa. Resact is a 14-residue peptide. Resact functions. Resact flow and Resact Events. Diagram, Alternative name, SAP-IIA, Sperm-activating peptide.

Reincarnation

Submitted by Asif Nowaj, Last Modified on 2019-11-08

Father: Son, aren't you going to sleep tonight? Everyone is sleeping, won't you?
Son: I'm drawing pictures.
Father: Ok, but draw them in the morning, you'll catch cold at night.
Son: I'm drawing a peacock.
Son: I have seen a peacock before.
Son: This is a camel. We used to have camels at our house.
Son: This is my house. I am standing in front of my house.
Son: This is a picture of a war. I have seen that war. And this is the golden fort.
Son: SONAR KELLA

A MICROSOFT INTERVIEW

Submitted by Someone, Last Modified on 2019-11-08

The descriptions are purely for a casual reading and shouldn’t be construed as the exhaustive questions asked. It is merely an indication about how a Microsoft interview can go about. A normal interview can last upto 1.5 - 2 hours or more. Remember like any other interview, it is upon you to drive the interview. Plus the most important thing is how you have prepared for the interview. The guys interviewing you are smarter and more experienced than you are so no use trying to oversmart them. Prepare yourself and give your best shot.

How To Setup Virtual Router To Make Your PC Hotspot

Submitted by Asif Nowaj, Last Modified on 2019-11-28

virtual router download, virtual router manager, setup virtual router, virtual router could not be started, virtual router hotspot, pc hotspot software, virtual router manager download, virtualrouterinstaller, virtual router setup, how to setup virtual router, virtualrouterinstaller.msi, pc virtual router, virtual router for pc, download virtual router manager.

Pierced Body

Submitted by Joydev Seal, Last Modified on 2019-11-08

I had an anxiety trying it first time. Surely, you’ll have the same thought if you already conceive the taste of fish. I am a Bengali and we are eating fish daily. But that was first time I had RAW fish. A big bowl of colorful RAW fish was served on ice with soy sauce for dipping, wasabi paste and gari. I was surprised because the bowl did not smell like fish that we usually get in our local market. It was edible to me on first look.

Hell of a Hailstorm

Submitted by Sourav Banerjee, Last Modified on 2019-11-08

Bedni Bugiyal

It was middle of June 2011 and I was going to Roopkund, one of India’s top three treks. Having reached Bedni Bugiyal at 3,354m, I had planned to climb up to Bhagwabasa the next day. It was going to be a long trekking day, at least a 10hrs trek and all ascending. Now before I continue with the trek, it would be most injustice if I don’t give a small description of Bedni Bugiyal. The name Bedni came from the work Veda (ancient scripture of Hinduism) and Bugial means grass land. It was a very beautiful campsite; lash green grassland, snowy tops of mountain Trishul in one side, one small pond in the middle and two temples. On a sunny day you could see flock of sheep all around and it creates a very charismatic appearance.

Manipulating strings in a StringList

Submitted by Asif Nowaj, Last Modified on 2019-11-22
Know number of strings in the list
StringList.Count provides the number of strings within the list. It is a zero based indexed list. So Count value is one more than the last index of the list.
Accessing a particular string
TStringList is referenced by a zero-based index. You can access any string by its index position in ways either by using Strings property or directly. Example is show below. Strings is the default property for string lists.

Load and Save using TStringList

Submitted by Asif Nowaj, Last Modified on 2019-11-22
TStringList provides easy to use LoadFromFile and SaveToFile methods that store a list of string from a text file and saves the list of string to a text file. Each line of the text file represents a string in the list.

procedure TForm1.Button2Click(Sender: TObject);
var
  tempStringList  : TStringList;
  fileName        : String;
begin
  fileName := 'c:\temp\myfile.txt';
  tempStringList := TStringList.Create;
  try

Pages