1. Books & magazines

    Date: 02/15/08 (C Sharp)    Keywords: programming

    Hey Guys/ new site of books and magazines about programming has appeared. www.dleex.com 

    Source: http://community.livejournal.com/csharp/93417.html

  2. Freelancing

    Date: 02/17/08 (PHP Community)    Keywords: php, programming

    What sites do you recommend when looking for freelance programming jobs, especially php jobs?

    Source: http://community.livejournal.com/php/613901.html

  3. US at home worker for Canadian company

    Date: 02/23/08 (Computer Geeks)    Keywords: php, programming

    Hey,
    I'm looking for advice on what I should look out for/be aware of. I live in Tennessee and was just offered a job doing PHP programming from home by a company based out of Calgary, Alberta (Canada). I'm just waiting on the employment contract. Is there anything in particular I should pay attention to or ask about. I've never worked full time from home nor have I worked for any company out of Canada and I was wondering what I should watch out for and keep in mind. Thanks!

    Source: http://community.livejournal.com/computergeeks/1153805.html

  4. MobiTV: failed security opens gaping hole

    Date: 03/07/08 (Security)    Keywords: programming, web

    Cell phone television supplier, MobiTV, issued a cease and desist order to a popular website covering mobile devices. A website user posted unadvertised, yet publicly available, links to programming on the MobiTV site. Here's how ZDNet's Matthew Miller described the situation: [A]...

    Source: http://blogs.zdnet.com/projectfailures/?p=632

  5. ComboBoxes in two pages.

    Date: 03/12/08 (Asp Dot Net)    Keywords: programming, asp, web

    Hi. I'm newbie both in ASP.NET and in web programming, so my question may be dumb. Sorry if so.
    I have two pages in my project and each page contains combo box. Comboboxes bind to one data source.
    I need to solve following task: if user select combo box item in one page, the same item must be selected in another page automatically.
    Is there any ways to do this or it's impossible?

    Source: http://community.livejournal.com/aspdotnet/97019.html

  6. Beginning web development professionally

    Date: 12/05/08 (Javascript Community)    Keywords: programming, software, java, web

    I used to code frequently as a hobby in a variety of programming languages and did computer support work professionally until a couple of years ago.

    I am finishing up college and will be graduating late this spring. I am thinking of programming again and I am considering trying out software and web programming as a possible career option when I graduate.

    I am facing several delimas.


    My question is what languages and skills should I learn? Are any employers reading this? What are your guidelines in hiring new programmers?

    I am a business major and not a computer science major and I wonder if I should focus on web development where the requirement for a computer science degree is not as high. I have several college level books on c# and Java. Which would be wise for someone starting out?

    Source: http://community.livejournal.com/javascript/162402.html

  7. Validation help!

    Date: 08/02/08 (Javascript Community)    Keywords: programming, java

    Can someone please help me with this JavaScript. I have some of the validation done, but I don't know how to finish it.
    I have the following code:









    Online Bookstore

    Select the book



    Qty



    Do you want a free subscription to the newsletter?

    Yes No

     



    Free Information Book List:



    Delivery Information


    Name



    Address



    ZipCode



    State



    Phone



    Email









    Please ignore all of the div classes. I'm using those to format it later. Anyways, when someone presses the submit button, I need to validate that none of the following are left blank:
    name, address, state, zipcode, phone number, email address.
    I also need to validate that the email address is 5 or more characters long, the email has a period in it, there is at least 3 letters after the period, that a book has been selected from the "select the book" drop down menu, and the Qty is at least 1. I need everything to pop up in one box. Also, if everything is filled out correctly, I need to display a message confirming the book selection and the number of books.

    Source: http://community.livejournal.com/javascript/157708.html

  8. Design feedback (x-posted)

    Date: 03/01/09 (WebDesign)    Keywords: php, programming, browser, web

    Haven't shared in a while. My web design teacher had a "mini contest" going on where he needed a design for a page, and wanted to leave it as a way to get more experience in design and possibly earn a 4gb memory stick in the end.

    I did this for fun, really.

    http://lisacerilli.nfshost.com/web_design2/programming/php/

    I have no idea what it looks like in IE yet as I haven't done much browser testing on it, or anything else off of a Macintosh, so... Hopefully it doesn't explode (we haven't learned much about browser hacking yet anyway).

    Feedback?

    Edit: I'll be changing this as I get feedback. There may still be bugs as I won't get a change to debug until I get to school on Tuesday, but hey. Any progress = good progress. Thank you for the feedback!

    Source: http://community.livejournal.com/webdesign/1473483.html

  9. Zoomable State Map

    Date: 01/19/09 (Web Development)    Keywords: programming, java, web

    Hello all -- I am a Java developer getting into Web 2.0 programming. I'm trying to estimate a client's request, and I am looking for a widget, or pointers to a toolset, or suggestions/ideas for a specific requirement:

    They want to be able to see a national map (for example, the USA). Hovering over images of states shows information about the "market" that state is a part of (possibly one or more states). Clicking zooms in on a closeup of the map that encompases that market. Then the zoomed-in map behaves the way with the "districts" in that market, allowing them to see information and zoom even further into that market segment.

    Seen anything like this? Any ideas, suggestions, or pointers to websites you have would be very appreciated!

    Source: http://community.livejournal.com/webdev/518226.html

  10. Debugged

    Date: 03/30/08 (Algorithms)    Keywords: programming

    Edit: Error was located and corrected. I love how programming can turn programmers temporarily blind :) I'll leave it here in the hope that perhaps others with the same problem can find it and think "OOOOooooOooh" before publically admitting to a community that they can't keep track of their pointers. :)

    Thank you all for your help to my previous post! I've started to pick up C syntax really quickly since, and I've been integrating my two programs; the one with the functions to push, pop and create arrays, with the program '[info]'lightning_rose suggested that I should write. So far my array seems to work and I'm sure that my push function is working, but when I ask it to print the contents of the stack, it prints 0. My aim isn't to iterate down the entire array, but to print that they've been pushed once they've been pushed.

    Here is the buggy bit - where I expect the error is:


    /* else, it will be an integer.*/ else { int temp = atoi(argv[i]); push (temp); //int i = 0; printf("Stack: %d", stack[top]); //printf("Integer: %d\n",atoi(argv[i])); }




    /* * **** HISTORY ***** * * Filename: test.c * Synopsis: test * * This is a simple program that will take input from the keyboard and then * print each line of input to screen. * Version 0.1 - Program simply returned a string of characters that had been * entered using printf. * version 0.2 - program differentiated between a string of characters and an * integer. * version 0.3 - Fixed a bug in the code that caused a 0 integer to be printed * after characters. Originally believed it to be a null byte, later discovered * that it was, in fact, a flaw in my if statements since I hadn't used else. * the use of else and else if in the testing area of the program are important * so that characters aren't printed as characters then passed down to be converted * into integers. * version 0.4 - program began to differentiate between characters, an operand * and the specific operators +, -, /, x and =. I was able to tell that the * differentiation had been made by asking the program to print out which each * was, for example: If I had entered: test 1 a + the program would output: * Integer: 1, Character: a, Symbol +. * version 0.5 - Array was defined from code that had been written in p3.c which was * written at an earlier date. This is where p3.c and test.c began to merge as * the final solution to p3.c with p3.c merging into test.c. */ #include #include /* * define is used to make modification of each easier. It is also good for readability. * Characters A - D will be assigned values that the user wishes to store so that they * can later be used by, for example, 2 A +. */ #define stack empty #define MemoryA A #define MemoryB B #define MemoryC C #define MemoryD D /* * I need to define my array that will be used in a similar way to how I understand a * stack. The type of array that I will use is a fixed-length array so that the program * size will have a limit of 20 elements. * See Page 112 - C In a Nutshell */ int top = 0; /*Pointer to keep track of where the top of the stack/array is*/ //int maxstack = 20; /*Allocates the maximum value of the stack-array */ int stack[50]; /*sets the array stack equal of the maximum value of the stack*/ void push(int x); /* * The push function will push a new entry onto the stack at the stack pointer "top". * Once the entry (passed in as x) has been assigned as an element to the stack the * "stack pointer" top will then increment by one so that it is pointing to the next * free space. */ void push(int x) { stack[top] = x; top ++; } int main (int argc, char *argv[]) { int i; int j = 0; for (i = 1; i < argc; i++) { for(j=0; j < strlen(argv[i]); j++) { /*This is a test to see if a the input is a * alphabetical number. If it is, then the * program will then check to see if it is * specifically A, B, C or D. */ if (isalpha(argv[i][j])) { printf("Character: %s\n", argv[i]); } /* These tests will test to see if input is an operand*/ else if (strcmp(argv[i], "+") == 0) { printf("Symbols: %s\n", argv[i]); } else if (strcmp(argv[i], "-") == 0) { printf("Symbols: %s\n", argv[i]); } else if (strcmp(argv[i], "/") == 0) { printf("Symbols: %s\n", argv[i]); } else if (strcmp(argv[i], "x") == 0){ printf("Symbols: %s\n", argv[i]); } /* else, it will be an integer.*/ else { int temp = atoi(argv[i]); push (temp); //int i = 0; printf("Stack: %d", stack[top]); //printf("Integer: %d\n",atoi(argv[i])); } } } }

    Source: http://community.livejournal.com/algorithms/98764.html

  11. C

    Date: 03/28/08 (Algorithms)    Keywords: programming, html, java

    I'm finding C difficult to understand. I'm working using two books: C in a Nutshell and I'm referencing with Comprehensive C (which is old but it was free.) The problem I'm trying to solve is to create a Reverse Polish Notation calculator. I'm using an array as a stack and the basic principle is:
    for input (from command prompt) 2 1 +
    Push 2 on the stack. Push 1 onto the stack. Meet operator, pop two and then push answer onto the stack.

    But I'm having problems with my main method, particularly with the C syntax. This is my main method so far:

    /*
     * I need a way for the program to read input separated by space, where a space will
     * indicate the end of a value. For example: 23 3 is the input twenty three and three,
     * not: two, three, three.
     *
     * When an integer operand is encountered, it will be pushed onto the stack. An operator
     * will cause two items of the stack of be popped then a push of the answer.
        argc = SIZE OF THE ARRAY
        argv = Array of strings that represents the command line entered.
     */

    int main (int argc, char *argv)

    {
        int i;
        for (i = 1; i < argc; i++)
        {
            if (x argv = int)
            {
                push(int x)       

                    //http://www.cppreference.com/stdstring/isdigit.html
                    //http://www.cppreference.com/stdstring/atoi.html
        }
    }

    The hyperlinks are a link to two methods from the library that I need to use: isdigit() and atoi(). Because the input is being entered from the command prompt it's my understanding that a character and an integer cannot be differentiated simply by their bit pattern. What I need to do with the input is take the "string", convert it to an integer and then check to see if it is an integer or not.

    Now, in Java I'd do something like x.isdigit().atoi() but... gah! There's a lot of true/false requirements in there and I don't think I actually fully understand exactly what I'm trying to do.

    This is what I'm planning to do, in English:

    If ( x is a character) {
        either return 0 as value
       or set next item to memory location [x]
    }
    if (x is an operator) {
       POP two from the stack
       use operator on two operands
       Push answer onto the stack again
          //error checking for condition that only one value has been pushed onto stack
    }
    //otherwise, fall through assuming that x is an integer
    convert x into an integer using atoi()
    Push (x)

    TADA!

    I'm planning on using if for error checking and converting everything else to case statements instead. I'm use to programming in java, though, so I'm scared that I'm java-ing too much :/

    Advice? Kicks? Clarifications?

    Source: http://community.livejournal.com/algorithms/98390.html

  12. Java programming assignment help

    Date: 03/03/09 (Computer Geeks)    Keywords: programming, java, web

    Hello, I'm looking for some help with a Java programming assignment.

    The assignment is to create a program in which the user can enter the number of dice they wish to roll and a score. The program is supposed to calculate the probability of the score occurring when their dice have been rolled 100,000 times.

    I am unsure of how to create multiple dice. We've been looking at programs in which you roll one or two dice and then do something with the outcome. How would I go about making it possible to add up the scores of many dice (the user's choice of # of dice, to be exact)? I've formed a primitive Scanner for this but don't know what to add.


    This is all within the class "DiceTester". I have a class "SimpleDice" set up to randomly select a number 1-6 when a die is rolled.

         Scanner scanDie = new Scanner(System.in); // first scanner
     System.out.println("Enter number of dice");
     int n = scanDie.readInt(); // this is where user enters # of dice
      if (n < 0) // if user enters # less than 0
       System.out.println("Error: Number must be 0 or greater."); // there will be an error
    
    
        Scanner scanScore = new Scanner(System.in); // second scanner
        SimpleDice d = new SimpleDice();
     System.out.println("Enter score");
     int m = scanScore.readInt(); // this is where user enters score
     if (m < 0) // if user enters score less than 0
       System.out.println("Error: Score must be 0 or greater"); // there will be an error
        
        int tossCount = 100000; // this is the total # of tosses (designated by assignemnt)
        int scoreCt = m; // this is saying that the # the user entered (m) is now the score count
        int tossResult;
        
        for(int j = 0; j < tossCount; j++){ // for loop used to add up tosses
          tossResult = d.throwDice();
          
          if(tossResult == m) scoreCt++;}
        System.out.println("Success Rate: " + ((double)scoreCt)/tossCount); // this divides the #of times m occurred by the #of times the dice were rolled
    
    



    Any help (even a link to a website that might have useful information) would be greatly appreciated. Thanks for taking the time to look at this.

    Source: http://community.livejournal.com/computergeeks/1245562.html

  13. borland c compiler trouble

    Date: 02/25/09 (Computer Geeks)    Keywords: programming

    Hello,

    I would like to start programming and developing applications in C++. I'm having trouble configuring Borland's C 5.5 Compiler though. I got the freecommandlandtools.exe, and installed it. Then, well, I went online and checked out a Wikihow article as how to configure it. Please, tell me I did something right. By the way when I tried compiling a Hello world program nothing happened so something happened wrong when trying to edit these text files.


    The URL of the page is
    http://www.wikihow.com/Set-up-Borland's-Free-C-Compiler-for-Windows

    When it tells you the paths to save the files in, rather than whatever they put (please read because I can't remember what it was) but I have the compiler in c:\bcc, for easy access.

    Could someone direct how to set this up?
    Thanks in advance!

    Source: http://community.livejournal.com/computergeeks/1244336.html

  14. Social website Idea

    Date: 06/25/08 (See my site)    Keywords: programming, web

    Inspiration: Everywhere I go I see posted signs advertising www.yourcityheresingles.com. It seems like no matter how remote your location or how minimal your local population, there now exist websites devoted to finding singles in your area. As someone who hasn't had so much experience being single, but LOTS of experience being "lonely" and seemingly "friendless" amongst a HUGE population of people my age, I feel that a website for networking is long overdue. Sure we may live in large cities but rarely do we venture outside our circles when we go out. If you're in a relationship, bar outings typically involve you, your significant other, and either your own or your significant other's friends and their partners. Rarely do we involve ourselves with new faces outside of work or school and even if we want to, rarely do we introduce ourselves to new strangers when faced with the comforting presence of our current friends. As a former member of various sub-cultures including punks and ravers, this "random" meeting of new people with similar interests is an almost guaranteed outcome of attending the various musical events associated with your "scene." I definitely took this for granted in college, meeting 2-a dozen new faces each evening without even trying. If you've been involved in a sub-culture you understand. Simply asking to bum a cigarette or paying someone a compliment on their wardrobe or dance technique is an easy enough way to find a new friend. Then I entered the "real world," full of business types and outgoing yet reserved people, social enough to find themselves in a bar trivia night yet frightened/uninterested enough to avoid social contacts beyond the group they arrived with. Unfortunately I place myself in this category as well; it's not that I don't want to meet new people but when you're already with 10 other people it just seems misplaced and sometimes desperate to strike up conversation with an unknown neighbor. And yet I'm willing to bet there are many like me who have friends and a relationship, and are relatively happy with their life....but still long for others out there with MORE similar interests, or at least a change of the rehearsed, overplayed interactions we're accustomed to. So, my idea is simply to build a site with a basic profile, available for free, to people living in the same zipcode, who aren't looking for anything more than a friend with similar interests. If you're interested and have programming knowledge, please reply so we can get something started.

    Source: http://community.livejournal.com/see_my_site/115843.html

  15. Finding a Linux Job

    Date: 12/06/11 (Open Source)    Keywords: programming, linux

    According to new data from The Linux Foundation, Linux jobs are pretty much evenly divided between administrator and developer jobs. But, you won’t go wrong if you focus on Android programming work.

    Source: http://www.zdnet.com/blog/open-source/finding-a-linux-job/9966

  16. Top 10 Reasons The Ruby Programming Language Sucks

    Date: 12/23/10 (Java Web)    Keywords: programming

    The Top 10 Reasons The Ruby Programming Language Sucks Courtesy:– Presentations from vishnu. .... Source  : Gaea News Network.

    Source: http://tech.gaeatimes.com/index.php/archive/top-10-reasons-the-ruby-programming-language-sucks/

  17. Java: The Most Popular Programming Language Today

    Date: 02/18/17 (Java Web)    Keywords: programming, java

    Several research independently confirms Java as the most popular programing language today and as such can be considered the safest bet for someone looking to make a career in programming or looking for a career change. Let’s look in details below. The TIOBE Index The TIOBE Index for February 2017 indicates Java is the most […]

    Source: http://blog.taragana.com/java-the-most-popular-programming-language-today-12448

  18. Inkwell Creative Hiring Web Developer

    Date: 02/11/11 (Web Development)    Keywords: programming, css, html, technology, database, web, seo

    Inkwell Creative, a growing Portland, Oregon company focusing on web design, graphic design, interactive media, video and branding, is looking to hire a web developer. We are seeking a hard working team player and someone who is forward thinking when it comes to technology. You must be able to work with us in a collaborative team setting, know many coding and web programming languages and have a strong portfolio.

    Requirements:
    5+ years of experience
    Strong portfolio
    Must be collaborative
    Knowledge of many coding/web development languages
    Knowledge of CSS and HTML 5, Content Management Systems, Flash, SEO programming, Integration into Databases
    Knowledge of iPhone apps a plus

    Compensation:
    DOE. Benefits and paid-for parking. This is a salary position.

    TO APPLY:
    Email a cover letter, resume and link to your online portfolio to hr@inkwellgroup.com. Please include in your cover letter any outside hobbies, passions and interests. We kindly request no phone calls and no employment agencies.

    APPLICANTS WITHOUT A COVER LETTER, RESUME AND PORTFOLIO WILL NOT BE CONSIDERED

    Source: http://webdev.livejournal.com/573896.html

  19. N00blet soup

    Date: 11/29/10 (Web Development)    Keywords: programming, java, web

    Hello!  Long time lurker first time poster.  I am just beginning my adventures with web programming, and am trying to make an application within the Netbeans IDE that says "Hello World!"



    My code is
    package bigjava;   
    public class HelloPrinter
        {
            public static void main(String[] args)
            {
                // Display a greeting in the console window

                  System.out.println("Hello, World!");
            }
        }


    I just created a project called BigJava after the textbook Big Java 3rd edition.  Java is case sensitive and my subfolder is in all lower case.  When I run it the application doesn't have any errors, but it also doesn't print out the "Hello, World" that I desire.

    Any thoughts?  If this isn't appropriate for the community let me know.  Thanks for any advice or thoughts!

    Source: http://webdev.livejournal.com/570056.html

  20. Inkwell Creative Hiring Web Developer

    Date: 02/11/11 (PHP Community)    Keywords: programming, css, html, technology, database, web, seo

    Inkwell Creative, a growing Portland, Oregon company focusing on web design, graphic design, interactive media, video and branding, is looking to hire a web developer. We are seeking a hard working team player and someone who is forward thinking when it comes to technology. You must be able to work with us in a collaborative team setting, know many coding and web programming languages and have a strong portfolio.

    Requirements:
    5+ years of experience
    Strong portfolio
    Must be collaborative
    Knowledge of many coding/web development languages
    Knowledge of CSS and HTML 5, Content Management Systems, Flash, SEO programming, Integration into Databases
    Knowledge of iPhone apps a plus

    Compensation:
    DOE. Benefits and paid-for parking. This is a salary position.

    TO APPLY:
    Email a cover letter, resume and link to your online portfolio to hr@inkwellgroup.com. Please include in your cover letter any outside hobbies, passions and interests. We kindly request no phone calls and no employment agencies.

    APPLICANTS WITHOUT A COVER LETTER, RESUME AND PORTFOLIO WILL NOT BE CONSIDERED

    Source: http://php.livejournal.com/681768.html

Previous page  ||  Next page


antivirus | apache | asp | blogging | browser | bugtracking | cms | crm | css | database | ebay | ecommerce | google | hosting | html | java | jsp | linux | microsoft | mysql | offshore | offshoring | oscommerce | php | postgresql | programming | rss | security | seo | shopping | software | spam | spyware | sql | technology | templates | tracker | virus | web | xml | yahoo | home