Sonic and Sega Retro Message Board: Peruant - Viewing Profile - Sonic and Sega Retro Message Board

Jump to content

Hey there, Guest!  (Log In · Register) Help
Loading News Feed...
 

Group:
Member: Members
Active Posts:
250 (0.12 per day)
Most Active In:
Engineering & Reverse Engineering (66 posts)
Joined:
02-September 07
Profile Views:
334
Last Active:
User is offline May 20 2013 08:17 AM
Currently:
Offline

My Information

Member Title:
Just dropping in through gaps
Age:
21 years old
Birthday:
March 13, 1992
Gender:
Male Male
Location:
Paterson , New Jersey

Previous Fields

Project:
College
National Flag:
pe

Latest Visitors

Topics I've Started

  1. Forcing Full Screen Resolutions on Games

    12 June 2011 - 09:11 PM

    So up until now, I used to be able to run my games at full res no problem until today. I got rid of ATI Catalyst thinking that might be the problem. However, it is not. Any suggestions?

    My laptop's native res is 1360x768. My graphics card is ATI Mobility Radeon HD 4250

    But the games keep opening at 640x480.
  2. Memory Stick Problem w/ Write Protection

    31 January 2011 - 01:17 PM

    Well what I was currently doing was moving some files, and sudden the stick became unwrittable with a certain music file. I don't know why it did that because that had never happened until today. Right now, I was able to salvage everything onto a flash drive. But I want to fix this right away.

    Anyone know how to remove the write protection? My MS is a 16GB Sony Pro Duo Mark 2

    edit: Forgot to mention, it won't let me reformat it either.
  3. Help with some Python coding

    11 September 2010 - 03:04 PM

    Well see today's HW was to draw our initials using turtle graphics. Of course I typed in each direction line by line and it comes out. The code is like so

    CODE
    from turtle import*
    pendown()
    right(90)
    forward(100)
    backward(50)
    left(90)
    right(90)
    forward(100)
    backward(150)
    right(90)
    forward(40)
    forward(10)
    right(90)
    penup()

    left(360)
    pendown()
    forward(100)
    right(90)
    forward(100)
    backward(100)
    right(90)
    forward(30)
    right(90)
    left(180)
    forward(100)
    backward(100)
    pendown()
    forward(60)
    forward(50)
    right(90)
    left(180)
    forward(80)
    right(90)
    left(180)
    forward(120)
    right(270)
    forward(100)
    backward(20)
    right(270)
    forward(70)
    right(270)
    forward(85)
    But the problem is that I can't get them to draw the letters correctly after defining them in the program. I know that the command to repeat the drawing , but the way I defined it is out of wack. Code's on the bottom). Anyone know a solution?

    CODE
    def initialA(size):
    pendown()
    right(90)
    forward(100)
    backward(50)
    left(90)
    right(90)
    forward(100)
    backward(150)
    right(90)
    forward(40)
    forward(10)
    right(90)
    penup()

    def initialB(size):
    left(360)
    pendown()
    forward(100)
    right(90)
    forward(100)
    backward(100)
    right(90)
    forward(30)
    right(90)
    left(180)
    forward(100)
    backward(100)
    pendown()
    forward(60)
    forward(50)
    right(90)
    left(180)
    forward(80)
    right(90)
    left(180)
    forward(120)
    right(270)
    forward(100)
    backward(20)
    right(270)
    forward(70)
    right(270)
    forward(85)
  4. Java Programming Errors.

    26 October 2009 - 05:00 PM

    Well I\'m just lay it out there. I\'ve kinda just got started doing this and I\'ve been given the assignment to do a madlib or something. Now I know I got the strings correct but I know there\'s something wrong with the paragraph at the end. Looking at it, I don\'t have a clue. So when I compile it, it justs gives me bout 70 errors.

    Any suggestion as to what I did wrong? (P.S - Bear with the messy coding, I kinda messed up.)
    CODE
    //************************************************************************
      
         //Name
      
         //0ct 22, 2009
      
         //Paterson Catholic
      
         //This is a madlib
      
         //************************************************************************
      
        
      
         import java.io.*;
      
        
      
         class madlib {
      
             public static void main (String[] args) throws IOException {
      
        
      
             BufferedReader stdin = new BufferedReader
      
                 (new InputStreamReader(System.in));
      
        
      
             String noun1;
      
             String adjective1;
      
             String number1;
      
             String noun2;
      
             String adjective2;
      
             String number2;
      
             String adjective3;
      
             String number3;
      
             String adjective4;
      
             String number4;
      
             String noun3;
      
             String verb1;
      
        
      
             System.out.print (\"Enter any noun : \");
      
             System.out.flush();
      
             noun1 = stdin.readLine();
      
        
      
            
      
             System.out.print (\"Enter any adjective : \");
      
             System.out.flush();
      
             adjective1 = stdin.readLine();
      
        
      
        
      
             System.out.print (\"Enter any number : \");
      
             System.out.flush();
      
             number1 = stdin.readLine();
      
        
      
            
      
             System.out.print (\"Enter any noun : \");
      
             System.out.flush();
      
             noun2 = stdin.readLine();
      
        
      
        
      
             System.out.print (\"Enter any adjective : \");
      
             System.out.flush();
      
             adjective2 = stdin.readLine();
      
        
      
        
      
             System.out.print (\"Enter any number : \");
      
             System.out.flush();
      
             number2 = stdin.readLine();
      
        
      
            
      
             System.out.print (\"Enter any adjective : \");
      
             System.out.flush();
      
             adjective3 = stdin.readLine();
      
        
      
            
      
             System.out.print (\"Enter any number : \");
      
             System.out.flush();
      
             number3 = stdin.readLine();
      
        
      
            
      
             System.out.print (\"Enter any adjective : \");
      
             System.out.flush();
      
             adjective4 = stdin.readLine();
      
        
      
            
      
             System.out.print (\"Enter any number : \");
      
             System.out.flush();
      
             number4 = stdin.readLine();
      
        
      
            
      
             System.out.print (\"Enter any noun : \");
      
             System.out.flush();
      
             noun3 = stdin.readLine();
      

      
             System.out.print (\"Enter any verb : \");
      
             System.out.flush();
      
             verb1 = stdin.readLine();
      
        
      
      System.out.println(\"The Tyrannosaurus Rex  (tie-ran-oh-sore-us-reks), or T-Rex, was known as the \"+ noun1 +\" of  dinosaur world. Its name meant \"+ \"adjective1 +\" king. The  T-rex was about \"+ number 1 +\" feet tall -- or the size of a four-story  \"+ noun2+\". It was a/an \"+ adjective2 +\" meat-eater and even  ate other large dinosaurs. The T-Rex walked on its \"+ number2 +\" sturdy  legs and had two \"+adjective3 +\" arms that were \"+ number3+\" feet long. It also had a  large, \"+ adjective4+\" jaw that helds its \"+ number4 +\" sharp  teeth that it used for tearing fresh meat, and a brain the size of a/an  \"+ noun3 +\". But the T-Rex is probably best known for being a      fierce hunter that would \"+ verb1 +\" its prey until they died.);
      
        
      
             }

Friends

Peruant hasn't added any friends yet.