Search Results

Showing results 1 to 40 of 164
Search took 0.02 seconds.
Search: Posts Made By: Barefootsanders
Forum: C++ Sep 23rd, 2009
Replies: 2
Views: 411
Posted By Barefootsanders
If you understand the concepts and have written the insert function, then this should not be all that difficult to understand. Just for reference:

So one solution would be to write a function...
Forum: C++ Sep 23rd, 2009
Replies: 20
Solved: void function
Views: 683
Posted By Barefootsanders
Hey. Seems like you've made some progress. Thanks great! Below is my solution but as noted previously, there are many. Hope it helps!

/**
* @file printV.c
* @description Prints a V shape....
Forum: C++ Sep 19th, 2009
Replies: 20
Solved: void function
Views: 683
Posted By Barefootsanders
yeah, you could do it that way but it is highly inefficient. there is one way that you can do this using 2 for loops and a simple if/else statement. however codeguru_2009 has an even more efficient...
Forum: Python Sep 19th, 2009
Replies: 3
Views: 401
Posted By Barefootsanders
sorry for the lack of info. it will reside on the back end. I'd like to keep my database updated with certain information queried from other 3rd party API's and i figured i could write a python...
Forum: C++ Sep 18th, 2009
Replies: 20
Solved: void function
Views: 683
Posted By Barefootsanders
It would probably be easier to generate a small 'V' by hand and figure out what coordinates that the '#' lands on. Then you can decipher the pattern and come up with what you would need to be put...
Forum: Python Sep 18th, 2009
Replies: 3
Views: 401
Posted By Barefootsanders
Hi all,

I have a php/mysql based site set up. I want to keep my database layer updated via a python script that will query some other systems, parse data and make the appropriate CRUD calls to my...
Forum: PHP Sep 16th, 2009
Replies: 5
Views: 294
Posted By Barefootsanders
Thanks so much. Thats exactly what I was looking for. I am sorta unfamiliar with PHPs type casting syntax. I'm trying to stress test a script i'm preparing and just thought this would be a cool...
Forum: PHP Sep 2nd, 2009
Replies: 5
Views: 294
Posted By Barefootsanders
Well sorta.. It would basically generate all teh combinations of a set containing 'a' through 'z'. i.e. {a,b,c,...,z}. So it owuldnt just generate aa, bb, cc.. it would go through all the possible...
Forum: PHP Sep 1st, 2009
Replies: 5
Views: 294
Posted By Barefootsanders
Hi all. I'm attempting to output all of the possible combination from "a" to "zzzz" and I'm wondering if theres an easy way of doing that. As an example output would be ...

a
b
c
....
z
aa...
Forum: Linux Servers and Apache Aug 21st, 2009
Replies: 7
Views: 1,013
Posted By Barefootsanders
Thanks for the post! My main concern was setting up some way of accessing the system from my main desktop thats sitting right next to it. Would you have any suggestions as to how to access them...
Forum: Linux Servers and Apache Aug 5th, 2009
Replies: 7
Views: 1,013
Posted By Barefootsanders
O, okay thanks. What I really want to is get away from MS completely and use Ubuntu server with vmware. I guess i'm gunna have to check out vmware and their associated apps and see which one works...
Forum: Linux Servers and Apache Aug 5th, 2009
Replies: 7
Views: 1,013
Posted By Barefootsanders
Thanks for the reply. Have you used ubuntu server + vmware at all? Do you suggest any vmware software in particular? I've been using ubuntu for years now and have used vmware workstation to...
Forum: C++ Jul 27th, 2009
Replies: 5
Views: 476
Posted By Barefootsanders
That would be my first suggestion. You could also think about using pipe()/fork() and have one process listen for messages while the rest of your program executes.
Forum: Linux Servers and Apache Jul 27th, 2009
Replies: 7
Views: 1,013
Posted By Barefootsanders
Hi all. I want to set up a small array of linux servers on a couple computers I have.. I'd like to use virtualization software and set up 2-3 VM's on each computer. I was wondering if anyone had...
Forum: Project Partners Wanted Jul 14th, 2009
Replies: 6
Views: 628
Posted By Barefootsanders
As of now, since no revenue is being generated, all I can offer is 50% stake in whatever we come up with. If things do end up generating money or anything else, everything will be split right down...
Forum: Show Off your Projects Jul 14th, 2009
Replies: 1
Views: 423
Posted By Barefootsanders
Hey just wanted to let you and everyone else know they layout was completely redesigned and (IMO) looks much better. Check it for yourself. I'm also going to be releasing numerous features throughout...
Forum: Project Partners Wanted Jul 12th, 2009
Replies: 6
Views: 628
Posted By Barefootsanders
I'm currently in the process of developing a few web applications. I can implement anything on the backend, however my frontend skills i.e. the layouts, are something to be desired. I was wondering...
Forum: Show Off your Projects Jul 12th, 2009
Replies: 1
Views: 423
Posted By Barefootsanders
Hi all,

I just finished an early version of Big 'Ol Tweet (http://bigoltweet.com). It allows users to tweet longer than the allowed maximum (140 characters). Let me know what you think.

I...
Forum: PHP Jul 10th, 2009
Replies: 10
Views: 909
Posted By Barefootsanders
Wow thanks so much for that. I thought you meant an actual abstract class, i.e:
abstract class foo {...}

One question though.. is there any significance behind the values of the constants or did...
Forum: Networking Hardware Configuration Jul 10th, 2009
Replies: 3
Views: 469
Posted By Barefootsanders
Hi all. I recently moved and in my new place my wireless router is way far away from the rest of my equipment that needs to be on the network i.e. desktop computer, xbox, NAS drive, etc... I'd like...
Forum: PHP Jul 9th, 2009
Replies: 10
Views: 909
Posted By Barefootsanders
Abstraction is one thing I'm not too advanced with.. Could you provide an example of what you mean by an abstraction layer using the GET/POST/etc... variables? Any help would be appreciated.
...
Forum: PHP Jul 9th, 2009
Replies: 10
Views: 909
Posted By Barefootsanders
O wow, sorry. I read your previous post wrong.

Thanks!
Forum: PHP Jul 9th, 2009
Replies: 10
Views: 909
Posted By Barefootsanders
Thanks for the response. How can I use them then? I'm going to assume pass them in as parameters? The only problem with that is that my program relies on $_GET and $_POST for program flow. What...
Forum: PHP Jul 9th, 2009
Replies: 10
Views: 909
Posted By Barefootsanders
Hi all. I have a current PHP script which checks a number of GET, POST, and REQUEST variables. These are currently in a top-down PHP file and these variables control the flow of the application. I...
Forum: PHP Jul 3rd, 2009
Replies: 2
Views: 201
Posted By Barefootsanders
Hi all.. .I'm trying to use preg_split but I'm having trouble getting the regular expression I want.

What I have now is a long character string, upwards of 200 characters depending on user...
Forum: Show Off your Projects Jun 18th, 2009
Replies: 3
Views: 588
Posted By Barefootsanders
Hi everyone,

I just built a new photoblog called Vandalize George. It showcases the crazy/rediculous/awesome things people will do to all sorts of money. I'm looking for feedback (what you...
Forum: Graphics and Multimedia Jun 15th, 2009
Replies: 0
Views: 395
Posted By Barefootsanders
Hi. I'm just being curious here and wondering if anyone would know what type of technology could re-create the web based audio editor used on myxer.com i.e.
...
Forum: PHP Jun 3rd, 2009
Replies: 1
Views: 257
Posted By Barefootsanders
Hi all,

I plan on desining a PHP driven site. I was wondering what people used in terms of a framework (or none at all). I've looked into ones such as Cake PHP but I'm just not sure whats out...
Forum: C++ Apr 2nd, 2009
Replies: 2
Views: 333
Posted By Barefootsanders
Good start but there are numerous problems with your code. I added comments and highlighted them in red for you to see where you went wrong.
Also, one thing i would suggest is review how to...
Forum: C++ Mar 26th, 2009
Replies: 4
Views: 370
Posted By Barefootsanders
ahh, im programming in linx environment so i dont thinkt that will help.. thanks though.
Forum: C++ Mar 26th, 2009
Replies: 4
Views: 370
Posted By Barefootsanders
HI,

I'm trying to write an application in C++ that has two things - a TCP server (listen server) as well as a TCP client where it can send to other TCP servers. I currently have both parts set up...
Forum: C++ Mar 26th, 2009
Replies: 9
Views: 408
Posted By Barefootsanders
This should take care of it for you as long as you have a head pointer which I'm assuming you do otherwise how would you access your list?


~CList() {
// Create a tmp node
CNode node;...
Forum: C++ Mar 26th, 2009
Replies: 1
Views: 351
Posted By Barefootsanders
Hi,

I'm trying to code a program that involves a double linked list. I have the linked list working but the information in the link list need to be shared between 2 different classes. Is it...
Forum: C++ Feb 19th, 2009
Replies: 0
Views: 405
Posted By Barefootsanders
I'm writing a simple networking application. I'm using berkley sockets and was wondering if there was a way to enable the UDP w/ ACK option when setting up a udp socket. I know the UDP protocol has...
Forum: C Oct 25th, 2008
Replies: 5
Views: 531
Posted By Barefootsanders
oo wow thanks a bunch. I've been working w/ matlab for to long and it starts with 1 rather than 0 when addressing an array.

Thanks again!
Forum: C Oct 25th, 2008
Replies: 5
Views: 531
Posted By Barefootsanders
Hey all,

I'm trying to use a 3 element array and keep it sorted. So when i get a new value that should be put at the start of the array, I shift values down in the array like this:

array[2] =...
Forum: Project Partners Wanted Jun 4th, 2008
Replies: 5
Views: 1,248
Posted By Barefootsanders
Hello,

I am the leader of a small development team. We specialize in creating functional backend's to applications. We are looking for a skilled HTML/CSS developer to create creative, clean and...
Forum: C++ Apr 24th, 2008
Replies: 1
Views: 2,136
Posted By Barefootsanders
Hey all,

I'm trying to create a directory monitor that will watch a certain directory and print changes made to that directory. I was wondering if there were any C/C++ libraries that provide an ...
Forum: JavaScript / DHTML / AJAX Apr 3rd, 2008
Replies: 4
Views: 6,283
Posted By Barefootsanders
Ok i figured out what I was doing wrong. My popup div did not have an ID. But now I have another problem... The popup works when the mouse is over the parent link but when you go to choose one of...
Forum: JavaScript / DHTML / AJAX Apr 3rd, 2008
Replies: 4
Views: 6,283
Posted By Barefootsanders
btw, popup is a nested div. Would that make any difference?
Showing results 1 to 40 of 164

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC