Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Lv 31,659 points

Cody The Coder

Favorite Answers22%
Answers292

- http://answers.yahoo.com/ Freelance developer question answerer - I teach Java, HTML, CSS, JavaScript (Email me!)

  • Using a webserver to register?

    I have set up a web server that supports PHP and ASP. What I need to do is send a message to a server stating that a user has registered.

    In my game, I have a config file to be generated that is unique per player.

    I have no experience with web servers invoking to a TCP or UDP server.

    Thanks :)

    1 AnswerProgramming & Design6 years ago
  • How do I extract/manipulate/load-in files from/to a DLL or EXE?

    Hidden away in files like DLL, EXE, CFG, etc. There are files such at bitmaps, text, and I've heard of Word Documents being stored on these.

    Quick question, I want to extract these, but I don't want to use a pre-programmed tool. I want to program it myself.

    What should I be looking for? Like built-in libraries, etc.

    I want to extract them, but I don't know of any proper methods and have trouble finding any answer online. I am not a skid D:

    Thanks

    2 AnswersProgramming & Design6 years ago
  • PayPal Membership Integration?

    Hello! I am looking to add PayPal membership to my website.

    There are two levels of users. Free users, and members. Members get added bonuses.

    What I need PayPal to do is accept payments, then automate to my system which gives them membership.

    https://www.paypal.com/cgi-bin/webscr?cmd=xpt/Merc...

    PayPal has loads of options, but I am not sure which one is right for me.

    Yes... I know HTML, CSS, PHP, ASP.Net, JavaScript, Java, C++, C#, Lua. ......

    1 AnswerProgramming & Design6 years ago
  • What are the equations for mAh and Voltage I can get per centimeter of an antenna?

    I am trying to equate the efficiency of antennas power gain from the air through electromagnetic waves.

    I am not sure if there is a constant to be multiplied by the variable length in this case.

    Physics6 years ago
  • What is the reason for using bit shifting?

    I learned that in order to get the characters out of a BMP image file, I have to use bitshift.

    This is weird for me because I don't understand the concept of shifting bytes.

    The reason for this is if you have a bit 000001 and you shift it, it becomes 000000. These bytes make up characters. Why would we shift? Is this some kind of compression?

    Anybody got a few links explaining this? I had a hard enough time finding examples on how to decode BMPs. Thanks!

    3 AnswersProgramming & Design6 years ago
  • Reverse averaging numbers with known spectrum of numbers?

    I have the average of a set of numbers - 55. There are 3 numbers that make up this average. I want to find the 3 numbers put into the average equations == (all numbers added together)/amount of numbers ==

    Is there a specific formula for this?

    I wanted to grayscale a picture by averaging the numbers and then be able to preserve the data still.

    1 AnswerMathematics6 years ago
  • What is some music that has just chants and string instruments (minus the guitar and electric guitar.)?

    I am looking for some music with what I like.

    Like a mix between the chanting song

    Strongarm (Stephen Walking)

    spotify:track:4olRwKwPTrjFna3faxmMZJ

    and the beginning of the song

    Apologize (OneRepublic)

    spotify:track:1NrJYpdAi7uosDRPmSYrsG

    2 AnswersOther - Music7 years ago
  • If you force a cow meat, what would happen besides illness?

    If you were to feed a cow meat, what would happen?

    I am thinking on the terms of milk, it's body, and mentally.

    I don't know much about cows.

    Researching this, I have found that the cow will become carnivorous and may get ill.

    5 AnswersZoology7 years ago
  • [Java] God and Ideas?

    Christian

    I was thinking through the Bible. One thing I noted was abstract objects (and interfaces) (Human, God, Tree, Angel), Possible enums (Tree.Oak, Frog.PoisonDart), and your basic class to hold methods and settings (methods like: if(Command.equals("Let there be Trees")){makeTrees();})

    All of this led me to think... It will take some time but it is possible to outline everything God made (that we can see and is tangible). On the other hand, implementing actual methods that draw these objects to a 3d world could be possible too, as it is done on SO many games.

    What are you inputs, ideas, etc?

    2 AnswersProgramming & Design7 years ago
  • Mouth Welts?

    On the roof of my mouth, in the back where the soft part starts I have been having welts it seems like. They only come up when I swallow and it sucks the soft part, or I eat food.

    What is this?

    I want it to stop. It's been happening for about 2 years now.

    1 AnswerOther - Diseases7 years ago
  • Java and C++ Points to Static variables?

    Are the pointer systems in C++ and C# just like declaring a static variable in java (with class specific declaration)?

    So in short terms, pointers store a static datum in an address. Java stores a datum in an address using static. Are these the same? Cite your source? Thanks a bunch!

    Example:

    C++

    int * example;

    int p = &example;

    Java

    public static int example;

    2 AnswersProgramming & Design7 years ago
  • Java Jar Letters?

    If you jar some packages, they will turn up decompiled as they should be.

    If you do something else your classes are turned in small combos of letters. Such as

    AA.CLASS

    or

    A.CLASS

    etc.

    How do I make my jar files do this? Is there any way to undo this?

    Thanks!

    1 AnswerProgramming & Design7 years ago
  • Can not portfoward on my network...?

    Why is it that I can't port forward with my ISP Century Link on my router(s) (that has been changed a few times), and only portforward other people's routers. Any changes I do to my router (port wise) it is like NOPE, you can't but you can do it for other people.

    Any help would be appriciated, I've been trying for a few years now (lol).

    I do not have a static IP Address.

    2 AnswersComputer Networking7 years ago
  • In league of legends in normal queue, why am I paired with gold/silver when I am gold and silver vs not ALWAY?

    Recently I've noticed I've been on the gold/silver stacked team vs not ranked (on borders) team. Why would that be? I do not think it's fair.

    3 AnswersVideo & Online Games7 years ago
  • Is this code the best it can be?

    Hello. I've made this class that morphs up you words. m4k35 7h3m l1k3 7h1s.

    What I want to know is if there is anything I can do (like bad habits) to make it better.

    http://pastebin.com/WZMqchZ7

    I didn't put in any public or private. Just left it how it is. It doesn't need accessed by other programs. It isn't make for that.

    3 AnswersProgramming & Design7 years ago
  • [JAVA] Scattering ArrayList contents?

    Hello!

    Say I have:

    ArrayList<String> example = new ArrayList<String>();

    example.add("Hello");

    example.add("World");

    example.add("How");

    example.add("Are");

    example.add("You");

    What is the best method to completely randomize this?

    Is there a specific method I missed or maybe a package ready-for-use?

    Thanks!

    1 AnswerProgramming & Design7 years ago
  • LWJGL (with Slick-util) image question?

    I have recently joined the LWJGL life. I have a problem though... I was given this code to work with... I built some of it (text.X()). I have no idea what any of the functions represents (does). Do you know what these functions do separately? Thanks!

    I am not a novice java programmer.

    GL11.glTexCoord2f(0,0);

    GL11.glVertex2f(100,100);

    GL11.glTexCoord2f(1,0);

    GL11.glVertex2f(100+tex.getTextureWidth(),100);

    GL11.glTexCoord2f(1,1);

    GL11.glVertex2f(100+tex.getTextureWidth(),100+tex.getTextureHeight());

    GL11.glTexCoord2f(0,1);

    GL11.glVertex2f(100,100+tex.getTextureHeight());

    1 AnswerProgramming & Design7 years ago
  • Defining a Advanced(-ish) Variable via Java?

    I've seen Integers set queerly such in programs i've checked out.

    I tried searching some reference over it, but I have failed to get the correct terms.

    This is what It looks like:

    int example = exampl : (exampl : (ausdn : ?));

    Or so...

    Could anyone link me a reference or explain in-depth on how it works?

    I do my daily findings, and learn over it.

    2 AnswersProgramming & Design7 years ago