Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~7K People Reached
Favorite Tags
Member Avatar for bigwhiteegg

I'm new to web develop, just started coding my own page I have the need for hiding the user's ip so I found the following code just trying to figure out how to use it on my website what will be showing on the screen is a hyperlink like this …

0
81
Member Avatar for infiniteloop56

Hey everyone, I am new to this site, basically my problem is this: The user inputs an integer, and then the user inputs a character, the program is supposed to make a triangle out of the character, with the max width of the user inputed integer. for example; user inputs …

Member Avatar for goldzero
0
1K
Member Avatar for Trustify

I don't know what I'm doing wrong but I open my filed correctly but it doesn't display the contents in the file. Please help. [CODE]#include <iostream> #include <fstream> using namespace std; int main() { const int SIZE = 81; char input[SIZE]; fstream dataFile; dataFile.open("info.txt", ios::in); dataFile.getline(input,SIZE); system("pause"); return 0; }[/CODE]

Member Avatar for Trustify
0
159
Member Avatar for 12jony34
Re: HTML

Hello friends, i want to lean the HTML should i join any institute or i will learn from the forums.Please tell me the book for this.

Member Avatar for twiss
0
129
Member Avatar for bigwhiteegg

Hi there what I'm trying to do here is [subject] building a website that updates several other sites' content such as some images and URL hopefully it is not in the illegal arena I have some idea in mind just not sure if it is going to work so i …

Member Avatar for Alish735
0
113
Member Avatar for bigwhiteegg

how do I read a website's source code line by line and store it as string for modification??

Member Avatar for bigwhiteegg
0
83
Member Avatar for fiberoptik147

I am VERY novice and working on a school project in C++. I'm not sure where I've gone wrong here in this code. Any advice on why this is not working would be appreciated. Please, pretend like you are talking to someone who knows very little about programming so far. …

Member Avatar for sergent
0
203
Member Avatar for bigwhiteegg

first time using libcurl I'm trying to use it for a function that downloads a page's source code like this getHTML(string URL); but I do not understand the set up [URL="http://curl.haxx.se/libcurl/c/libcurl-tutorial.html"]libcurl[/URL] [QUOTE]There are many different ways to build C programs. This chapter will assume a UNIX-style build process. If you …

Member Avatar for vijayan121
0
242
Member Avatar for bigwhiteegg

I'm trying to auto-download any website's source code by entering its URL I did some search on Google and the forum only found this [URL="http://www.autoitscript.com/forum/topic/70853-inetgetsource-with-post-string/"]AU3[/URL] but its a AU3 file and I do not understand it at all does anyone has a suggestion for me? any website that I should …

Member Avatar for Stefano Mtangoo
0
145
Member Avatar for bigwhiteegg

This question has been bothering me all day. if I'm trying to pull out all strings that are in a txt file and all start with "abcde" is there anyway to find them, and copy the strings?? assuming the txt file contains lots of text

Member Avatar for bigwhiteegg
0
85
Member Avatar for bigwhiteegg

hi here i just started learning HTML & CSS couple days ago so please help me out :) what I'm trying to do here is to show a little box/window when the user moves his/her mouse to the designated point in my case it is a city(that will be in …

Member Avatar for teedoff
0
105
Member Avatar for epew23

Hey i am currently really stuck on a school assignment. No rush i have plenty of time, but without a little help i am pretty much lost. The question is as fallows. Design a class named QuadraticEquation for a quadratic equation ax2 + bx + c = 0. (The book …

Member Avatar for jonsca
0
561
Member Avatar for bigwhiteegg

I'm a newbie in assembly Google search was not helping much can some1 tell me how to write %2 in assembly? ps. there might be more question coming up since I'm trying to finish my HW

Member Avatar for Goalatio
0
85
Member Avatar for bigwhiteegg

PLEASE somebody help me I have QUESTIONS about pep/8 and 4 hours left to figure it out 1. in C++, global variable CHAR word[32] = "Backward"; is common but how do i initialize it in pep/8 ?? I need to write a simple program to flip it backward using stack …

Member Avatar for bigwhiteegg
0
555
Member Avatar for bigwhiteegg

Q1: if I want to make this [B]char word[32] = "Backward"[/B] to be global how do i initialize the "Backward"? by doing LDX and STX?? Q2: in a switch statement in C++, it is often to see [B]case 0: case 1: cout<<"something"; break;[/B] how do u make this in assembly …

Member Avatar for Tight_Coder_Ex
0
121
Member Avatar for bigwhiteegg

here is part of a C++ function that i'm having difficulty translating [CODE]void rotate(int ls[], int n) { int j; int temp; temp = is[0]; for(j=0; j<n-1; j++) { ls[j]=ls[j+1]; } ls[n-1]=temp; }[/CODE] so far this is what i have [CODE];void rotate(int ls[], int n) j3: .EQUATE 0 temp: .EQUATE …

0
66
Member Avatar for bigwhiteegg

following is my main program Linklist is a class of circular Linked list so my question is since the parameter of function doesn't contain Linklist in it can I go ahead and call it "List" in any function, such as List.print(), anyway? [CODE]main() { linklist list; int choice, num; do …

Member Avatar for Taywin
0
156
Member Avatar for bigwhiteegg

here is my question say I have a struct nodetype in the header file named linklist.h there contains a struct constructor in the nodetype named nodetype(int, nodetype*) how to I declare the code in the linklist.cpp? do I do the same for class constructor or something different?

Member Avatar for bigwhiteegg
0
76
Member Avatar for bigwhiteegg

the following are my program since it's not large, it might be alright to post the entire code? anyway... it is the deallocate() causing the crash at the end of the program for some reason, it did not panic in the grow() function am I supposed to do something after …

Member Avatar for Ancient Dragon
0
133
Member Avatar for bigwhiteegg

for some reason the following function has return numbers of error such as 1. new types may not be defined in a return type 2. two or more data types in declaration of `initialize' 3. ambiguates old declaration `GrowableArray initialize(GrowableArray&)' [CODE]void initialize(GrowableArray &a) { unsigned zero=0; a.elements=zero; a.element=NULL; }[/CODE] and …

Member Avatar for bigwhiteegg
0
3K
Member Avatar for bigwhiteegg

This is the main part of a project I assume all other header and cpp file are correct cuz most of them are copy from books n the professor when I run it, "right after the input" the program sort of stopped, pop out a error message, then keep running …

Member Avatar for bigwhiteegg
0
103
Member Avatar for bigwhiteegg

the following are my utility.h which i got from my professor there is error 2332 on line 5 & 6 after doing a bit of searching i do understand what does the error means but i just not quite sure how to fix it! can someone explain it to me?? …

Member Avatar for Ancient Dragon
0
121
Member Avatar for bigwhiteegg

I had just started learning C++ for couple months n this program is involved with pointer there is a bug in my "doInsert" function however, I dont seem to be able to figure out what is wrong with it every time after I enter the "position" the program crashed can …

Member Avatar for bigwhiteegg
0
126