Jump to content

SuperJeRoT

Member
  • Posts

    166
  • Joined

  • Last visited

Reputation Activity

  1. Funny
    SuperJeRoT got a reaction from Emberstone in Raja Koduri has left AMD   
    It's because he dropped that GPU in the interview with Linus. I'm tellin' ya!
  2. Like
    SuperJeRoT got a reaction from Carcarjg in Post Linus Memes Here! << -Original thread has returned   
  3. Agree
    SuperJeRoT reacted to Ichi in MX Master decreasing battery life   
    That's probably what happen, it applies to a lot other rechargeable battery device anyway.
  4. Like
    SuperJeRoT got a reaction from Danscu in Post Linus Memes Here! << -Original thread has returned   
  5. Like
    SuperJeRoT got a reaction from Bastian in Post Linus Memes Here! << -Original thread has returned   
    Just browsing 9gag when a wild linus apears.
     

     
    Original link: http://9gag.com/gag/azVKjGp?ref=fbp
     
    EDIT: Damn it, didn't se the post that was just above mine...
  6. Like
    SuperJeRoT reacted to Nineshadow in Sorting multiple array in C   
    There are a few different ways of doing it :
     
    First, you make a backup of your to-be-sorted array. You sort the array as usual , then, for your other array , you search for the new positions of the elements in the original array and move them accordingly. Of course, this won't work if two elements in the original array have the same value in the "hash" array.
     
    Secondly, you can make an array of pairs and sort those pairs.
     
    Heck, you can even make a hash table for the values in the arrays. Basically :
    std::string keys[] = { "1", "2", "3" } ; std::string vals[] = { "a", "b", "c" } ; std::map< std::string, std::string > hash ; for( int i = 0 ; i < 3 ; i++ ) { hash[ keys[i] ] = vals[i] ; } Sort your array , then get the corresponding hash value;
    (yes, I know, std::map is technically a binary search tree , but it has the same functionality as a hash table. If you really want to use hash tables, use std::unordered_map )
     
    Or, probably the nicest way of doing it , you can make an array of structures/classes and make a custom sorting function for those.
    Here is a quick structure :
    struct t{ int x; char c; t(int _x , char _c) : x(_x) , c(_c) { }}; Now, we'll use std::vectors since we can easily use std::sort on those. Of course, this is C++.
    Example :
    vector<t> v = { t(1,'c') , t(5,'f') , t(3, '-') , t(-4 , 'x') }; Then we need to sort it using a custom function. I've used a lambda function since we have that now ( since C++11 ) .
    sort(v.begin(), v.end() , [](const t r, const t l) {return r.x < l.x;}); Basically, the third parameter is a custom function of yours which , given two parameters , should say if those are in the right order or not . Of course, we are not comparing the structure itself , that currently doesn't make any sense , we have no '<' operator or anything like that on our structure , but we are comparing the 'x' member of the structure.
    If you don't understand the lambda :
    bool f(const t r, const t l){return r.x < l.x;}/*etc...etc...*/sort(v.begin(), v.end() , f);
  7. Like
    SuperJeRoT reacted to nicklmg in Zotac ZBOX MAGNUS EN970 Giveaway   
    Interested in that sweet & sexy new all-in-one from Zotac, the ZBOX MAGNUS EN970, that Linus checked out about a month ago? Then you're in luck, because we are giving that badboy away!
     
    If you haven't seen the video yet (firstly, shame on you for not watching our videos daily JK of course, no judgement here...) you can check that out below:
     

     
    But if you're more of a spec sheet guy or gal, click here to see the full breakdown.
     
    Please keep in mind that this is a barebones kit. It does not include RAM, storage, or an OS, so the potential winner must be prepared to provide that on their own.
     
     
    Alright, that's all well and good... now how do I WIN!?

    Entry is very simple - just comment below letting us and Zotac know what makes you interested in the ZBOX when compared to a traditional desktop. And, if you're feeling appreciative, head on over to their Twitter, give them a follow, and say thanks for providing this awesome giveaway for the community!
     
     
    The one winner will be selected at random on November 25, 2015.
     
    One entry (comment) per user.

    This is a worldwide giveaway with no age restrictions.

    The winner will be contacted by me here on the forum. Disregard any messages, emails, Tweets etc. you receive from anyone other than this account here on the forum.

    Good luck all!!
     
    EDIT: We have decided to extend this giveaway until November 25. Make sure you enter before then!

    EDIT2: The winner is @willskinny
     
    EDIT3: First winner did not respond, the new winner is @JHyunS06
  8. Like
    SuperJeRoT reacted to HectiKCookiE in Samsung UD590 4K No Vesa Mount? No Problem!   
    Yeah the cables look pretty bad so tomorrow im gonna put them down inside the wall. 
  9. Like
    SuperJeRoT reacted to salecar3 in Office 365 and free Office 2013   
    I would use personal email if u fuck up your teacher doesn't get email for it
  10. Like
    SuperJeRoT reacted to LukaP in My parental units are annoying me again   
    Oh well. My parents owe me 1k. You have to remember how much they spent for you when you were a child that they couldve spent on themselves. Dont act overly entitled to anything and be glad they even let you spend their money. Is it kinda douchy they lowered the amount? yes, but you have to consider maybe they had some expenses to cover they didnt initially plan on. Be humble
  11. Like
    SuperJeRoT reacted to HoiDaniel in I don't have an SSD.   
    You can have dinner for 3 when you want to load a BF4 map
  12. Like
    SuperJeRoT got a reaction from .stormer in Will it make a difference?   
    Yeah man, go for it, or just buy 8gb. You maybe won't find that big of a difference in gaming but general use, windows and usual tasks will benefit alot.
    Buy some ram then, later just upgrade your PC one thing at a time, GPU, then motherboard and CPU, maybe go for an ssd...
  13. Like
    SuperJeRoT reacted to .stormer in Will it make a difference?   
    allready offered 16gb
  14. Like
    SuperJeRoT got a reaction from .stormer in Will it make a difference?   
    Yes but if you don't know what kind of DDR memory you have right now you should check that before you buy DDR3 ram.
    If you have DDR2 (and you probably do if you only have 2gb) then that 16gb of ram will not fit in your motherboard because the slots are not the same.
    Ask one of your friends that knows a thing or two about tech.
  15. Like
    SuperJeRoT got a reaction from Overkilled in Will it make a difference?   
    Yes but if you don't know what kind of DDR memory you have right now you should check that before you buy DDR3 ram.
    If you have DDR2 (and you probably do if you only have 2gb) then that 16gb of ram will not fit in your motherboard because the slots are not the same.
    Ask one of your friends that knows a thing or two about tech.
  16. Like
    SuperJeRoT reacted to Senzelian in Will it make a difference?   
    Upgrading your RAM to a higher capacity usually does help.
    But the performance increase also depends on the rest of your components.
  17. Like
    SuperJeRoT reacted to FatPenguin in The computers at my school made me facepalm (pictures)   
    My school has computers with xeons and quadros 
     
     
     
     
     
     
     
     
    shitty xeons and shitty quadros 
  18. Like
    SuperJeRoT reacted to Tsuki in Is installing a gpu as easy as it seems?   
    excellent! i cant wait!
  19. Like
    SuperJeRoT got a reaction from ciprian97pop in can you install windows from a sd card?   
    Romania, hello there neighbour
    Yeap, that's the best idea, just get one from a friend and do it properly.
  20. Like
    SuperJeRoT got a reaction from c0d0ps in Is installing a gpu as easy as it seems?   
    Yes, it is dead simple.
    JUST DO IT!
  21. Like
    SuperJeRoT reacted to Neftex in Save me please! Can't connect multiple devices on wifi.   
    Youre welcome, im glad we got it to work.
  22. Like
    SuperJeRoT reacted to Neftex in Save me please! Can't connect multiple devices on wifi.   
    The restart after configuration changes should be a normal thing. The Static Lease means that the specified MAC address (phone, laptop...) always gets the same specified IP, i dont think its needed. Is there anything thats not working for you yet? I think phones and laptops can now connect to wifi and internet. If it works, you can now set the password so people dont steal your connection.
  23. Like
    SuperJeRoT reacted to Gala in Unknown hardware error causing random freeze, software diagnosis?   
    Well first run Prime95 24 hours to check cpu defects
    Then, run memtes86 for 48 hours to check for ram defects
    then, run HD Tune for a full 7 hour hard drive check
    Remove any other unecessary hardware. TV Cards, external audio cards, DAC's, network drives etc.
    Alternatevly, install Linux and wait for a kernel panic and search for the error, like this one

  24. Like
    SuperJeRoT got a reaction from TeamTactical in Unknown hardware error causing random freeze, software diagnosis?   
    Could be the power suply. My pc had a similar isue. After 20-30 min after first boot it would freeze. After a restart 10 minutes, and then shorter and shorter. Then I figured out that the power suply was hotter than before.
  25. Like
    SuperJeRoT reacted to TheSLSAMG in Why Doesn't Intel Make A K Series i3?   
    It would cannibalize the i5 lineup. Near i5 performance at an i3 price, Intel aren't looking to lose a lot of money here. The G3258 was fine because it was a shit chip to start with, so overclocking is like putting whipped cream and a cherry on top of shit.
×