Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
34% Quality Score
Upvotes Received
15
Posts with Upvotes
11
Upvoting Members
12
Downvotes Received
38
Posts with Downvotes
28
Downvoting Members
14
14 Commented Posts
~19.7K People Reached
Favorite Tags
Member Avatar for lionaneesh

**Introduction** Hi guyz today I am going to writing a tutorial on dictionaries in Python....As per as getting comments from my readers I'll try to make this tutorial short.... **Layout** 1.What are dictionaries? 2.Why dictionaries? 3.How to declare/make dictionaries in Python? 4.What all you can do with a dictionary? 5.Interesting …

Member Avatar for vegaseat
0
655
Member Avatar for lionaneesh

[B][I][U]Introduction [/U][/I][/B] [COLOR="Red"]Hey everybody welcome to a tutorials on classes in PYTHON. The purpose I made this tutorial for is that when I was learning classes in python I dint found any good tutorials on Classes. Maybe I was wrong. But here's my tutorial.[/COLOR] [B][I][U]Layout[/U][/I][/B] In this tutorial i'll be …

Member Avatar for mail2sanjay
1
844
Member Avatar for lionaneesh

[B][I][I][U]Introduction:-[/U][/I][/I][/B] [COLOR="Red"] Hi guyz today I am going to writing a tutorial on dictionaries in Python....As per as getting comments from my readers I'll try to make this tutorial Short....[/COLOR] [B][I][U] Layout:-[/U][/I][/B] [COLOR="Green"] 1.What are dictionaries? 2.Why dictionaries? 3.How to declare/make dictionaries in Python? 4.What all you can do with …

Member Avatar for colstonewall
0
398
Member Avatar for lionaneesh

[B][I][U]Hey Guyz I am currently using :-[/U][/I][/B] 1. WINDOWS 7 32bit x86 intel 2. WINDOWS XP SP2 2002 32bit x86 intel [B][U][I] MODEM :-[/I][/U][/B] ZTE ADSL Modem Model : 531B Splitter : 4KHz [B][I][U]The Problem :-[/U][/I][/B] 1. There was no problem till today morning...I faced some problems after 12am today.. …

Member Avatar for dbrookins
0
151
Member Avatar for lionaneesh

[CODE] #include<stdio.h> int main() { FILE *point; char others[35]; int indexer,count; strcpy(others,"Additional lines."); point = fopen("tenlines.txt","a"); /* open for appending */ for (count = 1;count <= 10;count++) { for (indexer = 0;others[indexer];indexer++) { putc(others[indexer],point); /* output a single character */ putc('\n',point); /* output a linefeed */ } } fclose(point); getchar(); …

Member Avatar for Ajinkya Naik
0
163
Member Avatar for rahul_galgali

Hi guys, I have prepared a website using php,html and back-end as mysql,and now i want it to launch as a website plz tell me how to configure and create a webdomain.Currently i am using Xampp server to create a website.........plz help me guys. But i want to launch it …

Member Avatar for sidneyharris
0
212
Member Avatar for lionaneesh

[B][I][U]Introduction[/U][/I][/B] Hey guys today I am writing a tutorial on Lists and tuples in Python.... So lets get started... [B][I][U] Layout:- [/U][/I][/B] 1.What are data sturctures? 2.What are tuples? 3.What are lists? 4.inbuilt functions on lists and tupples [B][I][I][U] What are Data structure?[/U][/I][/I][/B] Anybody familiar with programming or Actually Computers. …

Member Avatar for redyugi
1
3K
Member Avatar for lionaneesh

This is a simple-web-server made in C.. [COLOR="Red"]Supported OS :[/COLOR] I have made it on Ubuntu 9.10 ... and i think it will run on all linux system .... [B]Windows is not supported[/B] [U][B][I][COLOR="Red"]Compiler Instructions : As this is a web server so it will host on port 80 to …

Member Avatar for challarao
0
2K
Member Avatar for lionaneesh

[U]Hey Guyz ....This is Aneesh I am new to javascript... and I needed a Sliding Javascript Dropdown Box ....[/U][B] I got many links on the web but with no explanation...[/B] [B][I][U]What I need:-[/U][/I][/B] I need some links with Sliding Javascript Dropdown Box source and explanation... Thanking You... Aneesh Dogra

Member Avatar for Graphix
0
147
Member Avatar for cristi08
Member Avatar for Zagga
0
2K
Member Avatar for ManishS

I m not getting how to link pages in php..... For ex if I click on submit button of a regidtration form then i want to be navigated to a new page.. What should i do ... please suggest.....

Member Avatar for lionaneesh
0
83
Member Avatar for lionaneesh

I am trying to solve the problem Present at [url]http://www.codechef.com/problems/INTEST/[/url] I have made a small Python script to do my job :- [CODE]array = [] no_lines = 0 no = 0 j=0 div_no=0 no_lines = input() no = input() temp = no_lines while(no_lines>0) : i=0 i = input() array[j] = …

Member Avatar for TrustyTony
0
781
Member Avatar for lionaneesh

These are my 2 pages index.php:- [CODE]<?php session_start(); ?> <html> <head> <title>Enter Your Name</title> </head> <body> <form action="hello.php" method="post"> Wat's U'r name : <input type="text" name="name"/> <br/> <input type="submit" value="Next"/> </form> </body> </html>[/CODE] hello.php:- [CODE]<?php session_start() ?> <html> <head> <title>Hey <?php echo $name; ?></title> </head> <body> <?php $_SESSION['name'] = $_POST['name']; …

Member Avatar for lionaneesh
0
199
Member Avatar for chade25

Hey, I am trying to find a good C book that is dedicated to low level programming. Any suggestions? If it could skip all the beginner stuff, that would be great. Also, a side note, I am interested in making my own compiler. Are there any books that study this …

Member Avatar for gerard4143
0
126
Member Avatar for lionaneesh

[CODE]/* A simple server in the internet domain using TCP The port number is passed as an argument */ #include <stdio.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include<arpa/inet.h> #include<netdb.h> #include<string.h> int main(int argc, char *argv[]) { struct addrinfo hints,*serv,*p; int sockfd,newfd,status; struct sockaddr_storage their_addr; socklen_t addr_size; char *msg; int len; …

Member Avatar for malathi renin
-1
137
Member Avatar for Jeevitha V.K

Hi ... i am doin my B.E in computer science amd i was asked to write a programme ... can anyone help me write a c program that can hang the system ... and can u also tel me how to set it right again...[B][COLOR="Green"]:icon_neutral:[/COLOR][/B] and can u tel me …

Member Avatar for finito
-6
156
Member Avatar for Member 785459
Member Avatar for Member 785459

how save text file which is made by c and how add a new information in after saving it?

Member Avatar for lionaneesh
-1
77
Member Avatar for Maryaa

I am new with allegro.I dont know from where I must study for write pacman with allegro in c.please help first what I must do and from where I can study.

Member Avatar for Maryaa
0
68
Member Avatar for iqra123

hello i have a simple client server program in which different paramters are asked by client. i want to use cryptographic techniques like DES, AES, RSA but i do not know how and where to use.... i m doing socket programing first time even programing in linux. so i do …

Member Avatar for iqra123
0
129
Member Avatar for idontknow19

[B]Im stuck on how to display 5 integers in ascending order.i only have the idea to input 3 integers.what is my lacking to my code.Can you figure it out.thank you so much.hope you gonna help me[/B][code]import java.util.*; public class ascendingorder { static Scanner console = new Scanner(System.in); public static void …

Member Avatar for javaAddict
0
1K
Member Avatar for vivek01anand

#define prn(a) printf("%d",a) #define print(a,b,c) prn(a), prn(b), prn(c) #define max(a,b) (a<b)? b:a main() { int x=1, y=2; print(max(x++,y),x,y); print(max(x++,y),x,y); } output:222342 pls explain how we get output 342 at end

Member Avatar for lionaneesh
0
100
Member Avatar for gamer42001

Hello, ive been given an assignment to write a program wich will accept possible titles and rearange them in abc order, now beside that the program should also count how many times a title begins with a certain letter. my question is how, or where do i even start to …

Member Avatar for lionaneesh
0
115
Member Avatar for Madawar

Hi, I recently started using Linux and have come to find that it suits me better than Windows. I am a newbie in C/C++ programming and my questions are [LIST=1] [*]How suitable is Linux for learning C/C++ programming as most of the books i have come across are based on …

Member Avatar for lionaneesh
0
123
Member Avatar for riyasahamed

please any one give me simple code snippet to perform insert , delete, update, search & display operation using linked list. please help me

Member Avatar for lionaneesh
-1
122
Member Avatar for akand

I have some data in a table in mysql. I have written a program which can connect to the database and access all tables and data of mysql. I have a variable in the C program. I want a particular data in one of the tables in the database to …

Member Avatar for tesuji
0
539
Member Avatar for dhondie87

i am a beginner, but im interested to know wat about programing... plz help me... tanx... can i get the basic code? send me pls... tanx..

Member Avatar for nbaztec
-3
127
Member Avatar for bala1486

Hello, I need to implement a lightweight transport layer protocol in Linux-Kernel as part of my project. Could you please suggest some books or references that explains about implementation of TCP in linux? Thank you.. Thanks, Bala

Member Avatar for lionaneesh
0
60
Member Avatar for lionaneesh

[code]// Dumps raw memory in hex byte and printable split format void dump(const unsigned char *data_buffer, const unsigned int length) { unsigned char byte; unsigned int i, j; for(i=0; i < length; i++) { byte = data_buffer[i]; printf("%02x ", data_buffer[i]); // Display byte in hex. if(((i%16)==15) || (i==length-1)) { for(j=0; …

Member Avatar for WaltP
0
203
Member Avatar for lionaneesh

[CODE] #include<stdio.h> #include<string.h> #include<arpa/inet.h> #include<netdb.h> #include<sys/types.h> #include<sys/socket.h> #include<fcntl.h> #include<sys/stat.h> #include<stdlib.h> #include<time.h> int main() { FILE *logs; logs = fopen("/home/aniroot/logs/log.txt","a"); if(logs = NULL) { printf("fopen failed ... There would be no log for this session!!!"); } int sockfd,newfd; int err; struct addrinfo *res,*p,hints; struct sockaddr_storage their_addr; socklen_t addr_size; int yes=1; char …

Member Avatar for abhimanipal
0
133