fathimashadiyya.wordpress.com fathimashadiyya.wordpress.com

fathimashadiyya.wordpress.com

Thoughts on Programming | all about my studies and experiments

all about my studies and experiments

http://fathimashadiyya.wordpress.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR FATHIMASHADIYYA.WORDPRESS.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

December

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Saturday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.4 out of 5 with 5 reviews
5 star
0
4 star
4
3 star
0
2 star
0
1 star
1

Hey there! Start your review of fathimashadiyya.wordpress.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.3 seconds

FAVICON PREVIEW

  • fathimashadiyya.wordpress.com

    16x16

  • fathimashadiyya.wordpress.com

    32x32

CONTACTS AT FATHIMASHADIYYA.WORDPRESS.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Thoughts on Programming | all about my studies and experiments | fathimashadiyya.wordpress.com Reviews
<META>
DESCRIPTION
all about my studies and experiments
<META>
KEYWORDS
1 thoughts on programming
2 filed under c
3 set data structure
4 hashing
5 advertisements
6 share this
7 share
8 facebook
9 email
10 google
CONTENT
Page content here
KEYWORDS ON
PAGE
thoughts on programming,filed under c,set data structure,hashing,advertisements,share this,share,facebook,email,google,like this,like,loading,leave a comment,tags free,malloc,sbrk,storage allocator,tags autocomplete,dictionary,trie,the traceroute utility
SERVER
nginx
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Thoughts on Programming | all about my studies and experiments | fathimashadiyya.wordpress.com Reviews

https://fathimashadiyya.wordpress.com

all about my studies and experiments

INTERNAL PAGES

fathimashadiyya.wordpress.com fathimashadiyya.wordpress.com
1

Shell Scripting | Thoughts on Programming

https://fathimashadiyya.wordpress.com/2011/08/08/shell-scripting

August 8, 2011. 8212; shadiyya @ 10:28 am. Shell scripts combine lengthy and repetitive sequences of commands and generalize a sequence of operations on one set of data. Following steps are required to write shell script:. 1) Use any editor like vi to write shell script. 2) After writing shell script set execute permission for your script as follows. This will set read write execute(7) permission for owner, for group and other – permission is read and execute only(5). 3) Execute your script as. Enter you...

2

The traceroute utility | Thoughts on Programming

https://fathimashadiyya.wordpress.com/2011/09/10/the-traceroute-utility

September 10, 2011. 8212; shadiyya @ 6:38 am. The second UDP datagram sent by the originating host is exactly the same at the first but with a TTL value of 2. This time the first router receives. Here is the python code:. Leave a Comment ». Feed for comments on this post. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Address never made public). You are commenting using your WordPress.com account. ( Log Out. Notify me of new comments via email.

3

“Bloom” Filter | Thoughts on Programming

https://fathimashadiyya.wordpress.com/2011/11/04/bloom-filter

November 4, 2011. 8220;Bloom” Filter. 8212; shadiyya @ 10:14 am. Both insertion and membership testing are O(k). Instead of storing each value, a bloom filter holds simply an array of bits indicating the presence of that key in the filter. A set data structure is used for this purpose. A Bloom filter uses multiple distinct hash values to store a value. For each word, we can find hash values by extracting different sets of bytes from the hash string. Here we are taking three hash values for each w...Suppo...

4

Storage Allocator – “malloc” | Thoughts on Programming

https://fathimashadiyya.wordpress.com/2011/10/30/storage-allocator-malloc

October 30, 2011. Storage Allocator – “malloc”. 8212; shadiyya @ 6:41 am. The dynamic memory allocator malloc will request space from the operating system as needed rather than allocating from a compiled-in fixed-size array. The storage used by a program can be requested by malloc,but also by other sources, so its memory blocks are basically of three types:. Not owned by malloc. Owned by malloc which are free. Owned by malloc which are in use. There are three possibilities:. Every free block contains thr...

5

Trie data structure and implementation of “Auto complete” | Thoughts on Programming

https://fathimashadiyya.wordpress.com/2011/10/13/trie-data-structure-and-implementation-of-auto-complete

October 13, 2011. Trie data structure and implementation of “Auto complete”. 8212; shadiyya @ 10:04 am. For example, in the case of alphabetical keys, each node is a structure having two members. One is an integer for storing the value corresponding to a word if a word terminates at that node. Second is a pointer to an array of 26 characters for each of 26 alphabet characters. Implementation of Auto Complete. Leave a Comment ». Feed for comments on this post. Leave a Reply Cancel reply. You are commentin...

UPGRADE TO PREMIUM TO VIEW 2 MORE

TOTAL PAGES IN THIS WEBSITE

7

LINKS TO THIS WEBSITE

anoopsmohan.blogspot.com anoopsmohan.blogspot.com

Innovatio: Sending email via Gmail in Django

http://anoopsmohan.blogspot.com/2011/12/sending-email-via-gmail-in-django.html

Here i am sharing my study experiences regarding the Open source technologies. Thursday, 29 December 2011. Sending email via Gmail in Django. While I was learning how to use django-registration application, I need to know that how to send an email for the user to activate the registration. During this post I want to show how to test it using shell,. Create a project, django-admin.py startproject pjtname. EMAIL USE TLS =True. EMAIL HOST = 'smtp.gmail.com'. EMAIL HOST USER = 'youremail@gmail.com'.

anoopsmohan.blogspot.com anoopsmohan.blogspot.com

Innovatio: June 2011

http://anoopsmohan.blogspot.com/2011_06_01_archive.html

Here i am sharing my study experiences regarding the Open source technologies. Tuesday, 28 June 2011. Generators is one of the important features of python whereby one can generate a series of values while maintaining the state of the function, consider generators as a function which when invoked will return a value and halts execution at that point till you invoke the next() function to continue its execution. Statement. It can be used by the for. Statement as if it were an iterator. For p in values():.

anoopsmohan.blogspot.com anoopsmohan.blogspot.com

Innovatio: May 2011

http://anoopsmohan.blogspot.com/2011_05_01_archive.html

Here i am sharing my study experiences regarding the Open source technologies. Friday, 20 May 2011. Python - Basic concepts. As the part of the learning. Python I started to. Read a text about the python programming language – “Think Python by allen B. Downey”. The goal of this book is to teach us to think like a computer scientist. Are used to process high-level languages into low-level languages. An interpreter reads a high-level program and executes it. Python is an interpreted language. Interactive m...

amalapk.blogspot.com amalapk.blogspot.com

AquilinE: I follow

http://amalapk.blogspot.com/p/i-follow.html

If you can dream it, you can do it. Subscribe to: Posts (Atom). Using arrays we can store a group of values under. How to change the appearance of the Bash Prompt. Use of Unix tool make. I am a final semester MCA student in VAST Thrissur . View my complete profile. Picture Window template. Powered by Blogger.

anoopsmohan.blogspot.com anoopsmohan.blogspot.com

Innovatio: December 2011

http://anoopsmohan.blogspot.com/2011_12_01_archive.html

Here i am sharing my study experiences regarding the Open source technologies. Thursday, 29 December 2011. Sending email via Gmail in Django. While I was learning how to use django-registration application, I need to know that how to send an email for the user to activate the registration. During this post I want to show how to test it using shell,. Create a project, django-admin.py startproject pjtname. EMAIL USE TLS =True. EMAIL HOST = 'smtp.gmail.com'. EMAIL HOST USER = 'youremail@gmail.com'. To expla...

anoopsmohan.blogspot.com anoopsmohan.blogspot.com

Innovatio: August 2011

http://anoopsmohan.blogspot.com/2011_08_01_archive.html

Here i am sharing my study experiences regarding the Open source technologies. Monday, 8 August 2011. How to create a simple shell script. A feature of bash and other shells used on Unix-like operating systems is that each contains a built-in programming language, referred to as a shell programming language or shell scripting language, which is used to create shell scripts. For that open a text editor such as gedit or vi, and type the following three lines exactly as shown on a new, blank page:. This is ...

anoopsmohan.blogspot.com anoopsmohan.blogspot.com

Innovatio: March 2012

http://anoopsmohan.blogspot.com/2012_03_01_archive.html

Here i am sharing my study experiences regarding the Open source technologies. Thursday, 22 March 2012. How to turn old hard drives into a secure file server: Tutorial Techgig. Over the last year or two we've been taking advantage of the incredible price drop in traditional spinning hard drives. Until the tragic floods in Thailand, prices had dropped as low as £40 per terabyte. The obvious question that springs from this is: what to do with these drives? Subscribe to: Posts (Atom). System Call In Linux.

anoopsmohan.blogspot.com anoopsmohan.blogspot.com

Innovatio: Downloads

http://anoopsmohan.blogspot.com/p/python-programs.html

Here i am sharing my study experiences regarding the Open source technologies. I started to learning python. Part of my study I developed a simple game by using python. You can download and use the game by. Subscribe to: Posts (Atom). My primary purpose behind blogging is to share some of my views about technology, best practices, code and technical tips which may be useful for others. View my complete profile. How to turn old hard drives into a secure file ser. Adding auto indentation in vim.

anoopsmohan.blogspot.com anoopsmohan.blogspot.com

Innovatio: July 2011

http://anoopsmohan.blogspot.com/2011_07_01_archive.html

Here i am sharing my study experiences regarding the Open source technologies. Monday, 25 July 2011. Pygame - Source code of my game. This is one of my simple game developed by using pygame module. In this game I demonstrate a simple logic. I think this source code will give you the basic idea about the programming. If you are interested in game programming also you are a beginner in this field , then i am sure this code must be useful to you. Import a library of functions called 'pygame'. If event.k...

anoopsmohan.blogspot.com anoopsmohan.blogspot.com

Innovatio: November 2011

http://anoopsmohan.blogspot.com/2011_11_01_archive.html

Here i am sharing my study experiences regarding the Open source technologies. Tuesday, 29 November 2011. Find the Union and Intersection of two lists in python. Here are three functions using. S to remove duplicate entries from a list, find the intersection of two lists, and find the union of two lists. Note,. S were introduced in Python 2.4, so Python 2.4 or later is required. For more information on Python. S, see the Library Reference. Monday, 7 November 2011. AVL Tree Implementation in C. Int b fact...

UPGRADE TO PREMIUM TO VIEW 4 MORE

TOTAL LINKS TO THIS WEBSITE

14

OTHER SITES

fathimaroc010.skyrock.com fathimaroc010.skyrock.com

Blog de fathimaroc010 - fathimaroc010 - Skyrock.com

Mot de passe :. J'ai oublié mon mot de passe. Plus d'actions ▼. S'abonner à mon blog. Création : 01/02/2007 à 06:42. Mise à jour : 24/12/2010 à 11:17. N'oublie pas que les propos injurieux, racistes, etc. sont interdits par les conditions générales d'utilisation de Skyrock et que tu peux être identifié par ton adresse internet (67.219.144.114) si quelqu'un porte plainte. Ou poster avec :. Retape dans le champ ci-dessous la suite de chiffres et de lettres qui apparaissent dans le cadre ci-contre. N'oublie...

fathimart.blogspot.com fathimart.blogspot.com

fathima; art

Monday, October 20, 2008. Sunday, May 11, 2008. This piece was done at a fundraiser and then auctioned off. Wednesday, September 26, 2007. Monday, March 12, 2007. My favirote 2 in a series of 6. A painting I did last month for my friend Hemant. (I'll update this with a new picture where my face isn't int the way soon enough). How could I forget to post this one? For me it's my sort of ultimate/ epitome-of-me painting (even though I did it when I was 16! Tuesday, January 16, 2007. An 8x4 foot canvas I pai...

fathimas.blogspot.com fathimas.blogspot.com

My Journey of Life

My Journey of Life. In the path of destiny, fulfilling heart's desires. I am a superstitious girl, walking in the path of destiny, fulfilling my heart's desires. View my complete profile. Enter your search terms. My Journey of Life. Onboard Allure - Part 1. King of Indian Ocean. Has this ever happened to you? Where are we heading? Are this generation kids really smart? The King is Back! Twist in the neck. NurJahans Daughter by Tanushree Podder. Traffic woes in Hyderabad. Tuesday, April 08, 2014. Being a ...

fathimasagar.tripod.com fathimasagar.tripod.com

New Page 1

This page uses frames, but your browser doesn't support them.

fathimaschool.com fathimaschool.com

Fathima School - Chennai

The school was founded in the year 1978 under the name The Fathima English School by our beloved correspondent Late. Mrs. Durrai Shawar Begum. With a humble beginning of 11 students and three teachers, the classrooms were only two thatched huts and a small office. Subsequently it grew into a co-educational matriculation school and further into a matriculation higher secondary school. Now the school boasts of three massive buildings, housing class rooms, science laboratories and a library.

fathimashadiyya.wordpress.com fathimashadiyya.wordpress.com

Thoughts on Programming | all about my studies and experiments

November 4, 2011. 8220;Bloom” Filter. 8212; shadiyya @ 10:14 am. Both insertion and membership testing are O(k). Instead of storing each value, a bloom filter holds simply an array of bits indicating the presence of that key in the filter. A set data structure is used for this purpose. A Bloom filter uses multiple distinct hash values to store a value. For each word, we can find hash values by extracting different sets of bytes from the hash string. Here we are taking three hash values for each w...Suppo...

fathimashayari.blogspot.com fathimashayari.blogspot.com

safar shayari ka

There was an error in this gadget. Saturday, February 19, 2011. Ay zalim tune is qadar khanjar se waar kiya,. Lagi is qadar dilpe,. Ke tukde huwe hazaar,. Karna tha mujhe izhaar,. Abh kaise bayaan karun,. Abh dil hi na raha,. Bata mohabbat ki kya karun. Links to this post. Karte hai mhabbat unse ke kya bataye yaro,. Uske gumshuda hone ka asar dil pe iss tarha chaaya,. Mehsoos ho raha hai wo yehi kahin hai,. Bus mil jaye toh izhaare mohabbat kar dalun. Links to this post. Tum bin jee na paun mein. Links t...

fathimaspeaks.wordpress.com fathimaspeaks.wordpress.com

Fathimaspeaks's Blog | Just another WordPress.com weblog

Just another WordPress.com weblog. Why I Am Not Charlie Hebdo. January 11, 2015. It says it all:). The first day we put up that wall-mag, it had a halo over it. It was all clean, good fun with rickety verses and langurous prose. We thought we had done a good job if we do say so ourselves, considering that the only other team competing against us had what I considered a horrific breach. May 23, 2009. Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!

fathimaspferdewelt.de fathimaspferdewelt.de

Fathimas Pferdewelt

Ihr Warenkorb ist leer. Hier im Online-Shop gibt es über 850 Western-Artikel für alle Pferdegrößen. Von Mini-Shetty bis Kaltblut - deutschlandweit versandkostenfrei! Bei einem Sortiment mit Gebissen von 8,5 bis 19,5 cm, Bauchgurten von 18 bis 54 Inch und Halftern von Mini-Shetty-Fohlen bis Percheron kann hier JEDES Westernpferd eingekleidet werden - egal ob Turnier- oder Freizeitpferd. Diese Größen-Auswahl gibt's sonst nirgends - viele Artikel sind exklusive Sonder-Anfertigungen. Als Hufschmiedin, Tier-P...

fathimasstudio.com fathimasstudio.com

Fathima's Studio - Freelance graphic designer, illustrator and hand letterer.

Freelance graphic designer, illustrator and hand letterer. I’m a freelance graphic designer, illustrator and hand letterer. I run a creative studio with a hand crafted approach and work with positive people who have a creative vision for their projects. How can we work together. Hand lettering is the art of creating letters by hand instead of using premade fonts. It’s a great way to create something truly unique and original, whether it’s for a personalised art print, an advert or your branding. Honestly...