Jump to content

Evan Owen

Member
  • Posts

    88
  • Joined

  • Last visited

Awards

This user doesn't have any awards

6 Followers

About Evan Owen

  • Birthday Oct 10, 1984

Profile Information

  • Gender
    Male
  • Occupation
    Botique System Builder
  • Member title
    Junior Member

Recent Profile Visitors

1,067 profile views
  1. Does any of the staff know? Is there a way to ping anyone or get a hold of them?
  2. There's one of those fake Elon Musk scams running live on the channel as we speak. Image related.
  3. http://songza.com/listen/a-synthy-strut-songza/ Anything that plays on this
  4. By the looks of the pledges it doesn't seem like it'll cost more than $100, and I guess it's really up to the community to judge with their support if this thing will get enough attention to be integrated into popular game engines.
  5. https://www.kickstarter.com/projects/236448256/petal-fan-for-virtual-reality Finally a device to simulate wind! I personally have been waiting for a product like this since I first saw the Oculus Rift. They're asking for a funding total of at least $35'000 and there's only 29 days left after I post this so pledge now! I really want a consumer release of this!!
  6. I've gone over and over the code again and again and can't figure out why it's printing my function as 0 when it's compiled. Could someone please show me what I can do to fix this? ;Evan Owen ;Functions Example ;Window Resizing---- Graphics 1024, 720, 32 ;Varriables---- FirstColor$ = "" SecondColor$ = "" PieceOfClothing1$ = "" PieceOfClothing2$ = "" SentenceOut$ = "" Global UserName$ = "" Global UserNumber1 = 0 Global UserNumber2 = 0 ;User Generated Sentence Function---- Function UserSentence(FirstColorInput$, SecondColorInput$, PieceOfClothing1Input$, PieceOfClothing2Input$) Sentence$ = UserName$ + " Showed Up At The Door Wearing " + UserNumber1 + " " + FirstColorInput$ + " " + PieceOfClothing1Input$ + "s And " + UserNumber2 + " " + SecondColorInput$ + " " + PieceOfClothing2Input$ + "s " Return Sentence$ End Function ;User I/O---- Print("--Name Two Colors--") FirstColor$ = Input("First Color: ") SecondColor$ = Input("Second Color: ") Print("") Print("--Name Two Induvidual Pieces Of Clothing--") PieceOfClothing1$ = Input("First Piece Of Clothing: ") PieceOfClothing2$ = Input("Second Piece Of Clothing: ") Print("") Print("--Enter Any First Name--") UserName$ = Input("Name: ") Print("") Print("--Enter Two Numbers--") UserNumber1 = Input("First Number: ") Print("") UserNumber2 = Input("Second Number: ") Print("") ;User Generated Sentence---- SentenceOut$ = UserSentence(FirstColor$, SecondColor$, PieceOfClothing1$, PieceOfClothing2$) Print(SentenceOut$) WaitKey
  7. As an computer technician I have to answer a lot of questions, but although I make sure to follow all tech products as best as I can I don't follow wireless networking products because I've always recommended direct Ethernet. This person has a fairly large house and is looking for a router for her phone and apple TV that has enough range to supply an ample connection to these devices. Her ideal budget is under $150 but it's flexible. Any strong recommendations?
  8. Thank you so much! I was pulling my hair out trying to fix this.
  9. So I'm trying to create a calculator that only does division but displays the "real answer", " natural answer", and "natural remainder" all at the same time but you have to type in the same question twice to get it to display the natural answer and remainder. How do I make it so it displays all the results at the same time? I'm writing this into Eclipse and using it's built in compiler. If someone could let me know what I should do that would be excellent. import java.util.Scanner; class divisionremainder{ public static void main(String args[]){ Scanner keyboard = new Scanner(System.in); System.out.println("-Division Calculator-"); double fnumD, snumD, divisionD; System.out.println("First Number: "); fnumD = keyboard.nextDouble(); System.out.println("Second Number: "); snumD = keyboard.nextDouble(); divisionD = fnumD / snumD; System.out.print("Real Answer = "); System.out.println(divisionD); int fnum, snum, division; fnum = keyboard.nextInt(); snum = keyboard.nextInt(); division = fnum / snum; System.out.print("Natural Answer = "); System.out.println(division); int fnumremainder, snumremainder, divisionremainder; fnumremainder = fnum; snumremainder = snum; divisionremainder = fnum % snum; System.out.print("Natural Remainder = "); System.out.print(divisionremainder); } }
  10. http://www.amazon.co.uk/dp/B00GUJF41U/?tag=pcp0f-21 http://www.amazon.co.uk/dp/B008RPYB0U/?tag=pcp0f-21 Take a look at these. Both are rated for 4 modules of high speed memory, AMD Crossfire (I saw you used an AMD card), and have USB 3.
  11. http://ca.pcpartpicker.com/user/Evan_Owen/saved/3lpL If you want to pay a little more this is another excellent value choice that'll remain relevant for much longer Again make sure to change the country for pricing in the top right corner of the page
×