Jump to content

apostlegamer

Member
  • Posts

    34
  • Joined

  • Last visited

Awards

This user doesn't have any awards

About apostlegamer

  • Birthday Dec 04, 1995

Contact Methods

  • Steam
    ApostleGamer

Profile Information

  • Gender
    Male
  • Occupation
    Framer

System

  • CPU
    AMD FX 8320
  • Motherboard
    ASUS Somethin or other
  • RAM
    8GB Kingston HyperX 1600MHZ
  • GPU
    Asus GTX 660 OC
  • Case
    Zalman Z11
  • Storage
    1TB WD Green and 120GB Samsung 840 SSD
  • PSU
    Corsair CX 600W
  • Display(s)
    BENQ GW2255 and Old Samsung 4:3
  • Cooling
    BeQuiet! Pure Rock
  • Keyboard
    Corsair K70
  • Mouse
    Corsair M60
  • Sound
    Logitech 2.1
  • Operating System
    Windows 7

apostlegamer's Achievements

  1. It definitely feels weird, having a new consumer platform for videos. I like the clean minimalist design as well as the live tiles. But it's missing a tab for just the people you follow, like there isn't a way for me to easily see what new content has come up from the people I follow with making a couple of clicks. For some reason (back me up on this if anyone else feels the same way) the Theme feels a little bit like MySpace, possibly an implementation to customize your own theme would be cool. P.S. Does anyone know what Resolution the HD is on Vessel? Because LTT uploads in 4K. Maybe it's not coming till later?
  2. Eborth: LG 21:9 https://www.vessel.c...ideos/G-DUjgUyY Crazy Server https://www.vessel.c...ideos/LCoY5zfFf
  3. Eborth is my name, loving vessel, it feels nice to get away from Youtube. I hope Vessel will focus on user feedback and keeps imroving their site. I'm happy to be able to support you guys as you move forward. Although I have one gripe... no app? They need to get on this, as I consume a majority of my content on a tablet, but maybe it's a good thing that I will be forced to start to use my desktop more. LG 21:9 https://www.vessel.com/videos/G-DUjgUyY Crazy Server https://www.vessel.com/videos/LCoY5zfFf
  4. Especially at 2 videos a week with a team, you would expect better/relevent content.
  5. I just got a shield tablet with a 64GB Micro SD and, the cover cost under $500, the cover is a must unless your keyboard has a stand.
  6. I am officially going to go get irl help. Thanks everyone.
  7. yea i don't plan on using that code. just confused me more, I think I missed something in the teachings . I would be asking my instructor but he's on holidays which sucks.
  8. Ok so is there anyway to put the Getinstance in the constructor?
  9. hmm, yea I want to do it that way, but my teacher's instructions are: Implement a class called RandomArray, which has an integer array. The constructor receives the size of the array to be allocated, then populates the array with random numbers from the range 0 through the size of the array. Methods are required that return the minimum value, maximum value, average value, and a string representation of the array values. Include the output for several different test runs that shows the array with its minimum, maximum, and average values.
  10. Ok I changed it to public double getAverage(int ... result) { double avg = 0; if (result.length != 0) { int sum = 0; for (int list : result) sum = sum + list; avg = (double)sum / size; } return avg; For the constructor the last loop is to run through the array i think, but when I run getAverage() the output is just whatever I initialize sum to be.
×