Jump to content

shypin

Member
  • Posts

    1,321
  • Joined

  • Last visited

Reputation Activity

  1. Funny
    shypin got a reaction from BLKBRDSR71 in Whats the longest graphics card ever?   
    found this


  2. Funny
    shypin got a reaction from BuckyJunior in Whats the longest graphics card ever?   
    found this


  3. Funny
    shypin reacted to NickB in CPU Heatsink is never warm   
    I have a Intel Core i5-4690k, with high quality thermal paste from Artic 5 (or something like that), and a Cooler Master Hyper 212 Evo CPU cooler. I touched the heatpipes that are really close to the CPU and they aren't even warm. The CPU is at 25-35C on idle and 50C at full load. 
  4. Like
    shypin got a reaction from terrytek in Surfacebook at frys   
    They wouldn't let me buy it


  5. Like
    shypin got a reaction from DigitalHermit in Surfacebook at frys   
    They wouldn't let me buy it


  6. Like
    shypin got a reaction from bily1337 in cpu overheating problem   
    try using safe mode to see if the cpu usage goes down
    and then check your startup processes
     
    if cpu still overheats when usage is low then the pump prob died
  7. Like
    shypin got a reaction from GodSpoon in Privacy monitor mod [in progress]   
    dont have any proper tools so im just scraping the glue off with a flat head screwdriver while heating it up with a hairdryer right now
     
     
    UPDATE 1: tried to remove the bezel while i was cleaning off the glue, and i think i cracked the chip in the process. grabbed another monitor and peeled off the polarized film, but was too lazy to clean the glue. wanted to test both monitors out but realized my gpu doesnt support vga. found my old geforce 220 but its dead. gonna try this again friday when i get a vga-dvi converter.

  8. Like
    shypin got a reaction from Mohenjo in Privacy monitor mod [in progress]   
    dont have any proper tools so im just scraping the glue off with a flat head screwdriver while heating it up with a hairdryer right now
     
     
    UPDATE 1: tried to remove the bezel while i was cleaning off the glue, and i think i cracked the chip in the process. grabbed another monitor and peeled off the polarized film, but was too lazy to clean the glue. wanted to test both monitors out but realized my gpu doesnt support vga. found my old geforce 220 but its dead. gonna try this again friday when i get a vga-dvi converter.

  9. Like
    shypin got a reaction from iHardware Shelden in Winter is here   
    Time for some crazy overclocks: 
     
     

  10. Like
    shypin got a reaction from Nuluvius in Java halp   
    Thanks! That is exactly what i needed. Didnt think about using regex
  11. Like
    shypin reacted to madknight3 in Java halp   
    You're not telling use what your problem is. You're telling us what the code should do, but you're not telling us what the code actually does. Also it would be helpful if you included the code you're using to test this class. That way we know what valid input should be without having to figure out your code first.
     
     
    Also consider fixing your class.
    public class Decoder { String string; String[] result; public Decoder(String data, String start[], String stop[], int divisibleBy) { string = data; } //...} In this code you're passing multiple things into the constructor, but only saving data. On top of that, data isn't even being used in your class methods. Nor is result which you've also defined for your class. All the methods in Decoder require the same arguments you already got in the constructor which is unnecessary if you saved all that data in your class. What you're doing looks like it should be a bunch of static methods instead of instance methods. You should choose one or the other.
  12. Like
    shypin reacted to Nuluvius in Java halp   
    Your attempt is overcomplicated. Here is a more concise solution... I'm sure you can extend it to work with an array of start and end strings and whatever other guff you need (we won't do all the work for you after all):
    import java.util.ArrayList;import java.util.regex.Matcher;import java.util.regex.Pattern;public class Main{ public static void main(String[] args) { for(String s : decode("AAAAAATGAAAAAAAAAAAATGAAATGAAATGAA", "ATG", "TGA")) { System.out.println(s); } } private static ArrayList<String> decode(String input, String start, String end) { ArrayList<String> result = new ArrayList<String>(); Pattern p = Pattern.compile(Pattern.quote(start) + "(.*?)" + Pattern.quote(end)); Matcher matcher = p.matcher(input); while (matcher.find()) { result.add(matcher.group(0)); } return result; }}
  13. Like
    shypin got a reaction from Bajantechnician in Need help with an OS   
    there is no reason not to upgrade to windows 10 if the drivers support it
  14. Like
    shypin got a reaction from Nonco in Drill Acrylic Waterblock to Insert LED's   
    you need a drill to use drill bits lol
     
    also i dont think drilling acrylic would be the best idea as they crack easily
     
    also some waterblock manufactuers have pre-drilled LED holes (i know that EK-supremacy does, their pump tops too)
  15. Like
    shypin got a reaction from PlayStation 2 in Need help with an OS   
    there is no reason not to upgrade to windows 10 if the drivers support it
  16. Like
    shypin got a reaction from PlayStation 2 in Computer TroubleShooting   
    power supply failure?
  17. Like
    shypin got a reaction from dschur in Future Proof gaming rig   
    nice!
    im planning on a very similar build but with an ITX board
  18. Like
    shypin got a reaction from evantheis in Needing Help Understanding a Few Things   
    you can go a slim 240 in the front with maybe a single 120 in top or rear
     
    i think you can mount a reservoir quite easily on that cable management thing
     
    maybe something like this https://shop.ekwb.com/ek-kit-l240-1
     
    if you want to add another radiator thats gonna add about $60 i think, gpu blocks costs about $120 each, gpu backplates are about $30 each
  19. Like
    shypin got a reaction from Tokui in Free computers   
    donate to a museum
  20. Like
    shypin got a reaction from Sithhy in Free computers   
    donate to a museum
  21. Like
    shypin got a reaction from ProdigyzMined in My first real custom PC   
    looking nice
    although most people wont need 32gb of ram tho
  22. Like
    shypin got a reaction from Deagon in Windows installer broken   
    if you have the key then try this http://www.microsoft.com/en-us/software-download
    download iso and boot with a flash drive
  23. Like
    shypin got a reaction from manikyath in Mini ITX...how does it go?   
    since you dont have an overclockable cpu you can save some money by going with a non-Z series board
  24. Like
    shypin got a reaction from King_Tuna in i7 4790k underclocking   
    try a stress test
     
    800mhz idle sounds normal
  25. Like
    shypin got a reaction from manikyath in i7 4790k underclocking   
    try a stress test
     
    800mhz idle sounds normal
×