Jump to content

noobhawkia

Member
  • Posts

    50
  • Joined

  • Last visited

Awards

This user doesn't have any awards

2 Followers

About noobhawkia

  • Birthday Aug 09, 1997

Contact Methods

  • Steam
    noob_hawkia
  • Twitter
    noobhawkia

Profile Information

  • Gender
    Male
  • Location
    In the belly of a beast

noobhawkia's Achievements

  1. Hi All, I've been facing this weird issue if I scroll my mouse wheel up/down it jumps in the other direction a lot. For example, if I scroll it 5 lines up it jumps down about 2-3 lines. Sometimes if I scroll up 10 times it doesnt even scroll once. This has been really bugging me since I'm unable to do any work on my laptop due to this It was working fine a few weeks back. The only difference now is that there was a windows update and a BIOS update. Things I've tried: Disabling the track pad when mouse is inserted Disabled the 'Enhance Pointer Precision' Setting Disabled the 'Hide pointer while typing' Setting Tried different mice (Using a corsair harpoon pro, tried a generic HP mouse and a red dragon mouse) Tried a different USB port Tried a type C port with a USB hub Uninstalling all the USB drivers I'm using a Laptop, specifically the Legion Y540-15IRH-PG0. Any help would be appreciated.
  2. Thanks for the help. Used the Samsung Migration Software to clone my disk and it works fine since the license was registered with the mobo.
  3. Oh okay So from what I searched cloning seems like the easiest option considering the key is stored on the mobo. So should I just go with that?
  4. Windows doesnt allow you to download it using a OEM key. I already tried it.
  5. My windows is the OEM version and I dont have a OEM installation media.
  6. I currently bought a SSD for my laptop. My laptop came with the OEM version of windows 10 and I cant figure out how to transfer windows from my current HDD to the SSD. Can someone help me with this?
  7. Can you tell me how to test it with multiple randomly generate strings?
  8. Okay I get that but the challenge says that the mongoose can eat only two snakes. (See example 4 in the link) btw I tried submitting the answer with the continue statement and it still showed that the answer is wrong.
  9. I tried this challenge out but keep getting an error when I submit it even tho the code runs just fine. Tried some sample inputs and some of my own inputs and I'm not getting any errors. Any reason why I'm getting an error? You can check out the challenge here >> https://www.codechef.com/problems/SNELECT import java.util.Scanner; class Exp { public static void main(String[] args) { Scanner ob=new Scanner(System.in); int t=ob.nextInt(); for (int i = 0; i <= t; i++) { String arr=new String(); arr=ob.next(); char char_arr[]=arr.toCharArray(); int count=0,count_s=0,count_m=0; for (int j = 1; j < char_arr.length; j++) { if(char_arr[j-1]=='s'&&char_arr[j]=='m') { char_arr[j-1]='*'; count++; j++; } else if(char_arr[j-1]=='m'&&char_arr[j]=='s') { char_arr[j]='*'; count++; } if(count>=2) break; } for(int z=0;z<char_arr.length;z++) { if(char_arr[z]=='s') count_s++; else if(char_arr[z]=='m') count_m++; } if(count_m>count_s) System.out.println("mongooses"); else if(count_m<count_s) System.out.println("snakes"); else System.out.println("tie"); } } }
  10. Just reset windows 10 and having problems with icons and file explorer. Icons wont show up or explorer will load the files very very slowly. Tried clearing the Icon cache and increasing the icon cache size, both of them didnt work. Any suggestions?
  11. I made a simple web crawler to download images from a website but I dont know how to have the default filename of the image that is download. I want to keep the default filename of the image any way to do that? and I also had a doubt, what if while downloading two filenames are the same? Does python replace that file or does it rename the file which is being downloaded? This is the program I made which basically downloads an image from the website and gives it a random name. [code] import requests from bs4 import BeautifulSoup import urllib.request import random def trade_spider(max_pages): page=1 while page<=max_pages: url='http://konachan.net/post?page='+str(page) source_code=requests.get(url) plain_text=source_code.text soup=BeautifulSoup(plain_text) for link in soup.findAll('a',{'class':'directlink largeimg'}): href=link.get('href') print(href) name=random.randrange(1,1001) fullname= str(name) + ".jpg" urllib.request.urlretrieve(href,fullname) for link in soup.findAll('a',{'class':'directlink smallimg'}): href=link.get('href') print(href) name=random.randrange(1,1001) fullname= str(name) + ".jpg" urllib.request.urlretrieve(href,fullname) page+=1 trade_spider(2) [/code]
  12. Thanks I`ll give it a try Yeah i`ll check that out too but I dont think it would count as me doing a project
  13. So I decided to make a my own linux distro as a project. The thing is that I dont know where to start, i`ve used linux a bit and I`m not a complete noob but yeah I`m ready to learn if needed. I need help regarding where to start. I checked this out -> http://www.wikihow.com/Build-Your-Own-Linux-Distribution Is there any other method?
  14. Nvidia Geforce Driver version 368.39 and I didnt check the temps but i`m sitting right in front of the a AC so I dont think it might be that....
  15. @don_svetlio Processor. Intel Core i7-4710HQ 2.5 GHz Graphics adapter. NVIDIA GeForce GTX 960M - 4Gb 8Gb DDR3 Ram and 1080p screen @shadowbyte Even if I run it on low it lags
×