- Strength to Increase Rep
- +6
- Strength to Decrease Rep
- -1
- Upvotes Received
- 69
- Posts with Upvotes
- 50
- Upvoting Members
- 39
- Downvotes Received
- 3
- Posts with Downvotes
- 3
- Downvoting Members
- 3
160 Posted Topics
Re: "Simplicity is the ultimate sophistication." — Leonardo Da Vinci | |
![]() | Re: Last week I saw, Idenity Theif, and whenever Argo was new I saw that as well. Argo was an amazing movie, could watch that many times, and Identity Theif is pretty funny. |
Re: > The first example your websie shows in #2 while Stack shows in #1. If you cannot keep up with the huge costs (I guess you can't) I think you might need to invest in a little advertising and not just relie on SEO. I believe Daniweb alreaduy invests in … | |
Hello! I needed a configuration file for a application I'm working on so I first used the built in ini functions in php but it wasn't easy to write the ini files. So I wrote myself a class here to parse a configuration file and write/edit configuration files. I plan … | |
Re: Don't get what you're asking, the ping was successful and you can't load the site? Is that the problem? | |
![]() | Re: I'm surprised people are actually answering, there isn't one most powerful language, and I disagree with most opinions. Although imo a low level modern language (Assembly has already been mentioned) such as C. But realistically I prefer D by far. |
Re: With the people that think Python is the future I have to say this: Python is a terrific language and sure it is used in web applications by big and small companies but I don't think it will be the next web language as it's not built for it. I … | |
Re: I don't know what to say about the above post so I will answer the post before it. Favorite mobile app is probably Google Chrome. Favorite IDE/Editor? (Sorry if it's been asked) | |
This tutorial is designed to get someone started with D that hasn't used it yet, it assumes you have some type of programming experience. # What is D? # In one sentence (from [dlang.org](http://dlang.org)) *"D is a language with C-like syntax and static typing. It pragmatically combines efficiency, control, and … | |
Hello! I haven't posted here in a while but I just had something happen to me that makes me extremely angry and I would like to vent, hopefully it's not a problem. For the 1 almost two years I have been running various flavors of Linux on my machine, because … | |
Hello! Recently I've been working on a project which requires an API, the user supplies a function pointer which returns a specific value, this function needs a list of string arguments, similar to what you may find in the "main" function. I first thought maybe some sort of linked list … | |
Re: Well a little more information would be helpful. Such as: What OS are you running? What you were told to do? What file you need to change? The error? | |
Hello! I have a friend that is really interested in programming, I'm going to try to teach him this summer. I'm posting this to begin a discussion on how I think I'm going to acheive this so he has the best understanding of everything down the line. The title of … | |
Hello! Since I've encountered things like this (especially recently) I would like to write this post concerning the topic of version control. (NO! Don't leave yet!) ## Why am I writing this? ## So recently by talking to people in various communities and by simply browsing things I find people … | |
Re: Yeah as mentioned above graphics could be a problem, especially nvidia... There have been issues in the past... | |
Hello! This is mainly a curiousity question, I may apply it to something in the near future though just as an added twist... :D So essentially I want to figure out how a progress indicator is created in the shell. For example with wget or something you may see a … | |
Hello! So I've always had trouble with permissions/directory ownership and I can't figure this out... I have my apache directory in my home directory (/home/apott/www). I can edit files over FTP and such which is fantastic but I apache doesn't have permission to access the files... I can give it … | |
Re: I don't get what this is.. but... PHP: <? echo 'Hello, world!'; ?> C: #include <stdio.h> int main() { printf("Hello, World!"); return 0; } C++: #include <iostream> int main() { cout << "Hello, world!" << "\n"; return 0; } Java: class HelloWorld { public static void main(String[] args){ System.out.println("Hello, world!"); … | |
Hello! I was extremely bored and stumbled accross this website: [Hackerrank](https://www.hackerrank.com) It's a website that contains lots of programming challenges of various types. I signed up and looked at some of the challenges, lots of them are quite over my head since I'm not that skilled or any expert by … | |
Re: I've never used a framework before but I hear codeigniter is really nice, and zend is almost always overkill, that's just what I've heard. | |
Re: I will be doing this eventually to I think! I have some ideas but It requires a lot of planning to make them good due to it's sometimes complex nature. | |
Re: Definitely PHP! I think it fulfills all of those requirements! | |
Re: The most recent standard is HTML5, it's supported by all modern browsers. | |
Right off the bat I will say this has absolutely nothing to do with Microsoft Visual Basic. Recently I've been practicing language design and development and I've written a few basic interpreters for calculator languages and such and I've decided for some more practice I want to write a basic … | |
Re: It would help if you told us what the output is if it's not 8. | |
Everything below is currently a concept I'm working on and beginning to write, asking for thoughts or suggestions. Hello! Recently I've been brain storming tons, my mind went back to web development this time around. So I thought about some issues or annoyances, and I thought of a few that … | |
Hello! So recently I have written a lexer/tokenizer and am working on a parser for a language with a friend. At this point everything is going great but I'm beginning to think about how I want to do code generation. Are there languages or systems that generate for example C … | |
Re: You should've installed the GRUB bootloader, I've never done it after the fact so I can't help you. | |
Re: Well, the unidentified index errors occur because (lines 29 and 30) the post data "myusername" and "mypassword" don't exist. My best guess is that that error only occurs before the form is submitted. Now the third error "Use of unidentified constant myusername" is because on line 34 (and other after … | |
Re: Good answers so far, I have a bit to add though. In a way learning a programming language is very, very similar to learning a natural spoken language. Say you grew up speaking English (I have) and you want to learn spanish, you need to practice and use it a … | |
Re: Why are you posting in then Java section when you're talking about Javascript? And we can't just give you an answer, you have to show some sort of effort may it be code or whatever. | |
Re: Not to put you down but it looks like you didn't really look into real world use and other hardware research... I personally love Ubuntu Linux but I admit it's a pain in the ass to get drivers working on almost all Linux distributions, Ubuntu is notorious for lack of … | |
Re: I personally love the new layout! It's very modern, clean and just beautiful. It was a pleasent surprise when I visited. The only criticism I have is that I don't feel the top of the site (navigation and such) doesn't really match the rest of the site. I think it … ![]() | |
Re: I've never seen it before the only thing I've seen similar to that is `for(;;)` which is essentially an infinite loop, so my best guess is it's an always true if statement for some reason? Have you tested it to see what it does? | |
Hello everyone! Recently I have been incredibly interested in language design/implementation. I have written multiple functioning language front ends (Lexer, Parser, some execution) and have decided a few things. My systems are getting ugly, there needs to be more abstraction I can't execute code in the parser -- it's just … | |
| |
Re: It might not be working for a variety of reasons. What error does the browser give specifically? Also are you sure your computer is connected? | |
Re: Not to change the subject but why are you still using XHTML? | |
Re: I shut mine down every night before I go to bed. | |
Re: I normally like to keep my code spaced, clear, and easy to read. So I don't normally have any epic one liners in any programming languages. On the web design side, I have very messy CSS with some epic one liners, just some very long stylings on one line. | |
Re: Just like stated above, things that you're interested in. I personally think Register/Login systems, mini blog/posting systems are good practice as a lot of the big things in the language are practiced in that way. ![]() | |
Re: For MySQLi you could use mysqli_real_escape_string($string); // For procedural style | |
Re: Assuming web design here. I would say to maybe offer services to local businesses that also need exposure and you could get the feel on pricing. | |
(Sorry if this is the wrong section) Hello! Recently I have fallen in love with the [D programming language](http://dlang.org/) after discovering it and [reading the book by Andrei Alexandrescu](www.amazon.com/exec/obidos/ASIN/0321635361/classicempire). It really is a beautiful and wonderful language to write in, especially with the standard library (Phobos). I was just curious … | |
Hello! I'm very interested in compiler/language design but It's an extremely complicated topic so I've recently tried to wrap my head around and understand one of the beginning and main parts, lexical analyzation. I'm not here to ask for code or anything but I've tried thinking up various methods of … | |
Hello! Recently I ordered a [server off of amazon](http://www.amazon.com/Dell-PowerEdge-2850-3-2GHz-146GB/dp/B0058IFH3E/ref=sr_1_175?s=pc&ie=UTF8&qid=1374596420&sr=1-175). It arrived today, I opened it and there wasn't a Power cord even though it was listed to be included on the amazon page. I don't know a lot about this stuff but I know power cords are relatively cheap so … |
The End.