Jump to content

SheepForest

Member
  • Posts

    40
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Recent Profile Visitors

579 profile views

SheepForest's Achievements

  1. Add ekwb heatspreaders and watercool the ram!
  2. This is my traceroute Tracing route to google.com [216.58.218.142] over a maximum of 30 hops: 1 <1 ms <1 ms <1 ms suddenlink.net [192.168.0.1] 2 * * * Request timed out. 3 21 ms 11 ms 15 ms 173-219-229-76.suddenlink.net [173.219.229.76] 4 14 ms 16 ms 18 ms 173-219-152-250.suddenlink.net [173.219.152.250] 5 14 ms 17 ms 12 ms 72.14.202.216 6 * * * Request timed out. 7 18 ms 14 ms 16 ms 108.170.238.227 8 14 ms 12 ms 20 ms dfw25s08-in-f14.1e100.net [216.58.218.142] Trace complete.
  3. I'll just ping google.com over a period of like 3 minutes and other sites as well.
  4. I have currently a Hitron Technologies CGN, but before I had a basic Doscis 3.0 Modem and and Cisco Linksys E2500
  5. I have a coax line going into my apartment, from there it goes into a modem/router combo from Suddenlink (had my own but swapped out to see if my hardware was bad) into ethernet to the computer.
  6. Hello, for the past two weeks my internet has been terrible. I have done everything from power cycles to changing hardware. I experience packet loss and have high ping a majority of the time. I called Suddenlink (the main(only) provider of internet in my city) and they said that the line to our house looked fine. Recently some new apartments were built and they use Suddenlink. Can these new apartments be causing my internet to experience difficulties? The Suddenlink engineering that came by suggested upgrading speed. Would this solve my problems?
  7. I have most of the program done, just that I need it to print out the individual coins for example, quarters x 3, pennies x 1. Instead of just 4 coins for 76 cents. Also don't know if format is right. import java.util.Scanner; public class Money { public static void main(String args[]) { int[] coins = { 1, 5, 10, 25}; Scanner scan = new Scanner(System.in); System.out.print("Enter Change (In Cents): "); int sum = scan.nextInt(); int counter1 = 0; int counter2 = 0; int counter3 = 0; int counter4 = 0; String quarter = ""; Money minCoin = new Money(); System.out.println(minCoin.findMinCoins(coins, sum, counter1, counter2, counter3, counter4)); System.out.println(counter4); } private int findMinCoins(int[] coins, int sum, int counter1, int counter2, int counter3, int counter4) { if (sum <= 0 || coins.length == 0) { return 0; } for (int i = coins.length - 1; i >= 0; i--) { if(coins == 1 && coins != 5) { counter1++; } if(coins == 5) { counter2++; } if(coins == 10) { counter3++; } if(coins == 25) { counter4++; } if (coins <= sum) { System.out.println("Pennies: " + counter1); System.out.println("Nickels: " + counter2); System.out.println("Dimes: " + counter3); System.out.println("Quarters: " + counter4); return 1 + findMinCoins(coins, sum - coins, counter1, counter2, counter3, counter4); } } return 0; } }
  8. Ok, thanks for the advice, was kind of worried but not anymore!
  9. So, I just plug it in and change its priority?
  10. I just installed a new ssd. I still want to use my old hard drive. I didn't clone it, its a fresh install. The ssd only has one account so far, the hdd has multiple. Any way to use my old hard drive without deleting the information it contains?
  11. Tried going cheap, mentioned also that I'm willing to take offers, not really asking much.
  12. I've been trying to sell my razer deathstalker ultimate forever now. Tried ebay, craiglist, reddit hardwareswap, but nothing has worked. Any tips to help me sell it? (Brand new unopened)
×