Jump to content

Newbie_Gamerz

Member
  • Posts

    39
  • Joined

  • Last visited

Reputation Activity

  1. Informative
    Newbie_Gamerz reacted to Sacriledgy in Help me clarify regarding the ASUS laptops...   
    Well TUF does have a worse thermals compared to Strix. 
     
    But they are reliable. Me and my friends been using them for 2 years now
  2. Like
    Newbie_Gamerz got a reaction from Wh0_Am_1 in Help me pick a laptop from these 2 options   
    @Wh0_Am_1 @Jayzer @boggy77 @Dumb guy Thanks bros! I heard that the options I mentioned had weak thermals... So I waited and saved some bucks and bought a Legion 5 with R5-4600H and a GTX1650 with 256GB SSD + 1TB HDD storage
  3. Like
    Newbie_Gamerz got a reaction from boggy77 in Help me pick a laptop from these 2 options   
    @Wh0_Am_1 @Jayzer @boggy77 @Dumb guy Thanks bros! I heard that the options I mentioned had weak thermals... So I waited and saved some bucks and bought a Legion 5 with R5-4600H and a GTX1650 with 256GB SSD + 1TB HDD storage
  4. Informative
    Newbie_Gamerz reacted to Wh0_Am_1 in Help me pick a laptop from these 2 options   
    It's good enough, not spectacular like some Clevo designs. Generally it performs about average in cooling for a laptop of this price point, save for the fact that they skimped a little on the cooling for the VRMs so for best result please use this on a table when you are pushing the laptop. 
     
    In this particular laptop they actually skimped on the VRMs (which is why there is an intake vent on the back of the laptop below the display.) So if you use one of those cooling pads it will lead to positive air pressure right in front of the fans, leading to them accepting the fresh air rather than pulling air past the VRMs cooling them down, leading to the VRMs overheating, leading to throttling which reduces voltage to the CPU and thereby performance. In the end due the thermal design decisions with this laptop, it is best just to plop it on a level surface and let it do it's thing. 
  5. Informative
    Newbie_Gamerz reacted to Jayzer in Help me pick a laptop from these 2 options   
    Laptops at that price point should have decent cooling, but if you're worried about it getting too hot, you can get one of those laptop fans and put your laptop on top of it.
  6. Informative
    Newbie_Gamerz reacted to Wh0_Am_1 in Help me pick a laptop from these 2 options   
    Now if you want the screen and the 4600h I would heavily recommend going with the successor to the ASUS TUF FX505 and go for the TUF506 AKA TUF A15 for ₹ 65,990.00.
     
    EDIT: the advantage of the newer one, is if you are willing to upgrade the SSD and take out the HDD later on you can toss a 90WH battery in there.
  7. Informative
    Newbie_Gamerz reacted to Jayzer in Help me pick a laptop from these 2 options   
    Although the ASUS laptop has very slow RAM, in my opinion, it's the better one out of the two options.
    And despite the ASUS one having GDDR5, the GDDR6 1650 is about 6% faster, which would be like, 3 to 5 frames? (estimation)
    And you made a typo, the ASUS one has a Ryzen 7 3750H.
     
    So I'd say go with the ASUS.
  8. Informative
    Newbie_Gamerz reacted to Dumb guy in Help me pick a laptop from these 2 options   
    i think the asus laptop is a better deal 
  9. Informative
    Newbie_Gamerz reacted to Ivorz in Help me clarify regarding the ASUS laptops...   
    rog is not too hot if daily using but when playing game the fan can be loud, not only asus but every laptop
    tuf is a budget line-up from asus gaming line-up so the thermal will not be good as the other competitor or the rog
    but if you want the coolest, you can watch more review and see the temperature while playing game

     
  10. Informative
    Newbie_Gamerz reacted to pythonmegapixel in Help me clarify regarding the ASUS laptops...   
    Every laptop is weak in thermals compared to a similarly specced desktop. It's the trade-off you make to squeeze an extremely powerful piece of equipment into a box only a few centimetres thick - the airflow is always going to be pretty poor.
     
    For many people that trade-off is worth it, but if thermals are your concern, it might not be.
  11. Informative
    Newbie_Gamerz reacted to M1novsky in Help me clarify regarding the ASUS laptops...   
    The Legion 5 is a good choice, I was also looking for Legion before I buy my ROG. If you can find the specs you want on sale, just go for it!
    I think a TUF gaming laptop with Ryzen 4000 mobile is the A15 (see below), which have a bad airflow. So avoid buying it. I love the subtle design of A15 since it doesn't really scream gaming laptop. But after watching the review, I would never look for A15 again.
    But its successor, the TUF Dash F15, is very good though. One reviewer, I think it was Dave 2D, said it was very good. But the Dash F15 is powered by Ryzen 5000, so it would be more expensive.

  12. Like
    Newbie_Gamerz reacted to boggy77 in Help me pick a laptop from these 2 options   
    the r5 4600h is much better than the r7 3750h.
    given that everything else is the same in the two laptops (apart from screen refresh rate), i'd go with the r5 4600h laptop
  13. Like
    Newbie_Gamerz got a reaction from RandleMcmurphy in Need help for this easily fixable C program   
    This is my C program for reading and displaying flight ticket details...

    Pls compile and see the errors then help me fix it.... I am blankly saying this bcoz IDK how to explain my issue....
     
    I promise this will be easier to fix than my last code..........
     
    There are some pointer errors that's what I need to fix... 
     
    Thanks BTW

     
    #include <stdio.h> typedef struct { int ptickno; char pname[100]; char flightname[100]; char fdate[100]; char fltime[100]; char class[100]; char gate[100]; char seat[100]; char from[100]; char to[100]; }passenger; void input_output(passenger p1[100]) { int i=0; int n; int *ticket; ticket=&p1->ptickno; char *passname, *airplanename, *airdate, *airtime, *flclass, *airgate, *airseat, *flyfrom, *flyto; passname=p1->pname; airplanename=p1->flightname; airdate=p1->fdate; airtime=p1->fltime; flclass=p1->class; airgate=p1->gate; airseat=p1->seat; flyfrom=p1->from; flyto=p1->to; printf("ENTER THE NUMBER OF TICKETS YOU WANT TO ENTER : "); scanf("%d",&n); for(i=0;i<n;i++) { printf("\n********************************************"); printf("\nENTRY FOR PASSENGER %d :", i+1); printf("\n\nEnter ticket number : "); scanf("%d",&p1[i](*ticket)); printf("Enter name of passenger : "); scanf("%s",p1[i](passname)); printf("Enter name of flight : "); scanf("%s",p1[i](airplanename)); printf("Enter date of flight : "); scanf("%s",p1[i](airdate)); printf("Enter time of flight : "); scanf("%s",p1[i](airtime)); printf("Enter class : "); scanf("%s",p1[i](flclass)); printf("Enter gate : "); scanf("%s",p1[i](airgate)); printf("Enter seat : "); scanf("%s",p1[i](airseat)); printf("Enter from : "); scanf("%s",p1[i](flyfrom)); printf("Enter to : "); scanf("%s",p1[i](flyto)); printf("********************************************\n"); } for(i=0;i<n;i++) { printf("\n********************************************"); printf("\nTICKET DETAILS OF PASSENGER %d",i+1); printf("\n\nTICKET NUMBER : %d",p1[i](*ticket)); printf("\nNAME OF PASSENGER : %s",p1[i](passname)); printf("\nNAME OF FLIGHT : %s",p1[i](airplanename)); printf("\nDATE OF FLIGHT : %s",p1[i](airdate)); printf("\nTIME OF FLIGHT : %s",p1[i](airtime)); printf("\nCLASS : %s",p1[i](flclass)); printf("\nGATE : %s",p1[i](airgate)); printf("\nSEAT : %s",p1[i](airseat)); printf("\nFROM : %s",p1[i](flyfrom)); printf("\nTO : %s",p1[i](flyto)); printf("\n********************************************"); } } int main() { passenger p[100],*pptr; pptr=&p[0]; input_output(pptr); return 0; }  
  14. Like
    Newbie_Gamerz got a reaction from Jiehfeng in I bought two separate RAM sticks, help please.   
    You said you bought the SAME RAM stick again and you told that the MODEL NUMBERS MATCH.... Practically you have a x2 kit in your hand rn... So you are good to go and there will be no problems!!!!

    BTW if you have timing doubts check the label on the boxes... It will be mentioned there....
     
    Grand Admiral Thrawn explained it in short you can refer him....
  15. Like
    Newbie_Gamerz reacted to thepoorgamer in Need to pick one of these laptops ASAP.... Please help me out   
    Cool! Hope you can upgrade it successfully. One thing to watch out for is if your 8gb stick of RAM is DDR3, if it is it will not work in the new laptop. 
     
    P.S 
    Your English is very good. Have fun with your new laptop when you get it! 
  16. Like
    Newbie_Gamerz reacted to Jake_1209 in Computer will post wont boot.   
    Thank you, I never wiped the ssd im using so it still has the old files on it. What the plan was to wipe it after booting using the windows media tool when I was going to reinstall windows. Also, I tried getting it to the bios without any drive in it and it still wouldn't post using the GPU display output. Thank you for your reply. 
  17. Informative
    Newbie_Gamerz reacted to aisle9 in Help needed to upgrade my very old PC   
    Where are you located? Apologies if you’ve already said. If you’re in the US, it might cost a little more, but it would be much more cost effective to but an Optiplex 390 off of eBay for $80 or so. A Pentium 4 won’t get you anywhere in 2020. Spend a little more now or your parents spend a lot more later IMO. 
     
    Hell, even an Optiplex 780 SFF that can be found locally for under $50 in the US would be better. Most sellers will try to pair it with a BS monitor and e-waste peripherals so they can slap a $100 price tag on it, but if you find someone selling just the PC and can talk them under $40 for a working unit with a 250GB HDD and at least 4GB of RAM, taking it the rest of the way should cost about $20.
     
     But at that point, why not just buy the 390? IMO, nothing you can do to ancient hardware will be as effective or as value-friendly as a 390 SFF with 8GB of RAM and a 250GB+ HDD or SSD.
  18. Informative
    Newbie_Gamerz reacted to jaslion in Help needed to upgrade my very old PC   
    It won't work for that. It is simply too old. It's either going to be beyond slow, just not work or give hardware unsupported errors. It's far beyond it's use nowadays and it simply needs to be replace. A used i5 office dell would be an amazing cheap replacement (especially with a cheap ssd in it) but this p4 machine is simply not up to the tasks you want it too do no matter how simple they are.
     
    The upgrades will literally cost more than the machine is worth and probably be on par price wise as a 20x better dell i5 office machine. Even max upgrades it will still be a big pile of crap that would barely be able to run word if at all. Just windows 10 would be a big feat for it
  19. Informative
    Newbie_Gamerz reacted to Naijin in Regarding HDD - Weird sounds....   
    An SSD "clicking" or ticking is usually a sound that the HDD is almost breaking down. Make sure you get a backup asap. If it's still under warranty, do an HDD sector test. If there are bad sectors, you can submit an RMA.
  20. Informative
    Newbie_Gamerz reacted to Vishera in Help needed to upgrade my very old PC   
    Some variants of this board support the Core 2 Quad Q6600 which is a huge upgrade,
    The question is what chipset do you have?,check that with CPU-Z.
  21. Agree
    Newbie_Gamerz reacted to Jeppes in Help needed to upgrade my very old PC   
    Not worth to upgrade unless you get the parts for 10 dollars total.
  22. Funny
    Newbie_Gamerz reacted to jaslion in Help needed to upgrade my very old PC   
    Replace it? Any money invested in this is wasted as this system is never gonna be more than a very slow office machine if it is even good enough for that anymore.
     
    Is this a for fun project maybe? If so we need more specs than a motherboard
  23. Informative
    Newbie_Gamerz reacted to aisle9 in Help needed to upgrade my very old PC   
    The absolute best CPU would be a Pentium 4 Extreme Edition 3.4GHz, but that would be an insane amount of money. Your best bet is just to find any other 800 MHz LGA 775 Pentium 4 in an e-waste BIN and see if it works.
     
    It uses DDR RAM rated up to 400 MHz, so, again, e-waste.
     
    It has a PCI-E x16 slot, so RTX 3090 I guess.
×