Jump to content

Lenidar

Member
  • Posts

    283
  • Joined

  • Last visited

Awards

This user doesn't have any awards

3 Followers

About Lenidar

  • Birthday Sep 21, 1991

Profile Information

  • Gender
    Not Telling
  • Location
    Philippines
  • Occupation
    Programmer

System

  • CPU
    i7-6700k
  • Motherboard
    MSI Z170A Krait Gaming
  • RAM
    Corsair Vengeance LPX 4x4gb
  • GPU
    ZOTAC 1070 AMP Extreme
  • Case
    Some random white case from a company you probably never heard of
  • Storage
    Samsung 860 EVO 1TB, 2 TB WD Green + 2 more hdds
  • PSU
    Antec HCG-620M
  • Display(s)
    Seasonic 24"
  • Cooling
    Cooler Master Hyper 212x
  • Keyboard
    Logitech G610
  • Mouse
    Logitech G502
  • Operating System
    Windows 10 Pro N

Recent Profile Visitors

1,064 profile views
  1. Update It just crashed again: Here are the post crash events... I really need your help...
  2. Windows Memory Diagnostics says that my RAM is fine. This is my event manager The critical events just said the PC just stopped responding, crashed or lost power. This is one of the errors - <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"> - <System> <Provider Name="VSS" /> <EventID Qualifiers="0">13</EventID> <Version>0</Version> <Level>2</Level> <Task>0</Task> <Opcode>0</Opcode> <Keywords>0x80000000000000</Keywords> <TimeCreated SystemTime="2021-04-16T12:29:43.3366883Z" /> <EventRecordID>7472</EventRecordID> <Correlation /> <Execution ProcessID="0" ThreadID="0" /> <Channel>Application</Channel> <Computer>DESKTOP-HTG106F</Computer> <Security /> </System> - <EventData> <Data>{4e14fba2-2e22-11d1-9964-00c04fbbb345}</Data> <Data>CEventSystem</Data> <Data>0x8007045b, A system shutdown is in progress.</Data> <Data /> <Binary>2D20436F64653A20575254575254494330303030343932332D2043616C6C3A20575254575254494330303030343931362D205049443A202030303030343036342D205449443A202030303031333039322D20434D443A2020433A5C57494E444F57535C73797374656D33325C737663686F73742E657865202D6B204E6574776F726B53657276696365202D70202D732043727970745376632D20557365723A204E616D653A204E5420415554484F524954595C4E4554574F524B20534552564943452C205349443A532D312D352D3230</Binary> </EventData> </Event> This is another one - <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"> - <System> <Provider Name="Microsoft-Windows-Kernel-EventTracing" Guid="{b675ec37-bdb6-4648-bc92-f3fdc74d3ca2}" /> <EventID>28</EventID> <Version>0</Version> <Level>2</Level> <Task>3</Task> <Opcode>25</Opcode> <Keywords>0x8000000000000a20</Keywords> <TimeCreated SystemTime="2021-04-16T12:48:52.1528124Z" /> <EventRecordID>64</EventRecordID> <Correlation /> <Execution ProcessID="4" ThreadID="524" /> <Channel>Microsoft-Windows-Kernel-EventTracing/Admin</Channel> <Computer>DESKTOP-HTG106F</Computer> <Security UserID="S-1-5-18" /> </System> - <EventData> <Data Name="ProviderGuid">{8444a4fb-d8d3-4f38-84f8-89960a1ef12f}</Data> <Data Name="ErrorCode">3221225473</Data> </EventData> </Event> This is another one - <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"> - <System> <Provider Name="Application Popup" Guid="{47bfa2b7-bd54-4fac-b70b-29021084ca8f}" EventSourceName="Application Popup" /> <EventID Qualifiers="49156">56</EventID> <Version>0</Version> <Level>2</Level> <Task>0</Task> <Opcode>0</Opcode> <Keywords>0x80000000000000</Keywords> <TimeCreated SystemTime="2021-04-16T12:48:48.1394517Z" /> <EventRecordID>4592</EventRecordID> <Correlation /> <Execution ProcessID="4" ThreadID="308" /> <Channel>System</Channel> <Computer>DESKTOP-HTG106F</Computer> <Security /> </System> - <EventData> <Data /> <Data>ACPI</Data> <Data>5</Data> <Binary>000000000300280000000000380004C000000000380004C000000000000000000000000000000000</Binary> </EventData> </Event> Any tips would really help
  3. My PC just started crashing for no reason and the event logs are pointing me to random places. No BSOD just straight up restarting. Any trouble shooting steps I can see what's wrong? Im currently running a windows memory test on the pc which is why I can't post pictures but I will when it's done. Edit: I can provide more info if necessary. It crashes when I'm just watching youtube and nothing else. I ran sfc /scannow and it crashed with the same errors. I did basic troubleshooting and nothing seem to explain things. I'm relatively new with the reading event logs. Edit 2 : Specs are in signature. Can age be already a factor, aside from the GPU which is give or take a couple years younger, my whole setup is 6+ years old. IDK if that helps. Edit 3: Some other info, I saw the SSL crash thing and one of them pointed out to spotify, I have it running up at startup along with discord, so I disabled them before the memory diagnostic run. Havent crashed since? (Still observing)
  4. I really don't know how to describe whats happening, so if there is an existing topic on this I do apologize in advance. The network connection on my desktop (wired connection) suddenly got cut off, but my mobile phone, connected on the same network, still had connection to the internet. Then I remembered that my BlueStacks emulator WAS still running and playing Azur Lane, for those not familiar, requires internet connection. Tried on my Laptop, same wired connection, same problem as the desktop. Restarted the router, both desktop and laptop, still nothing. Then it corrected itself. I just want to know what happened. I can provide screenshots if you want.
  5. WELL HOT DAMN! IT WORKED! THANKS A BUNCH! Do want to know why this is though...
  6. Sure thing, this is the version of my java... Here is my code: package testingJAR; import java.util.HashMap; import java.util.Scanner; public class JARTest {public static void main(String[] args) { // TODO Auto-generated method stub HashMap<String, Integer> wordCount = new HashMap<String, Integer>(); Scanner in = new Scanner(System.in); String input = ""; String[] words = {}; int maxWords = 0; int wordTotal = 0; System.out.println("Input paragraph:"); input = in.nextLine().toUpperCase(); words = input.split(" "); maxWords = words.length; for(String word: words) { if(wordCount.containsKey(word)) { wordCount.put(word, wordCount.get(word) + 1); } else { wordCount.put(word, 1); } } for(String k: wordCount.keySet()) { System.out.println("Word : " + k + "\t Number of Instances : " + wordCount.get(k)); wordTotal += wordCount.get(k); } System.out.println("\n\nNumber of Unique Words: " + wordCount.size() + "\nWord Count: " + maxWords + "\nTotal Instances:" + wordTotal); } }
  7. even tried making a whole new project just for this. Tried this, getting this error
  8. I have, same error... not really an error, it just cant find the main class
  9. is there any fix to it? ive tried it on 2 of my machines and im getting the same errors...
  10. I tried to get all the details in, but if it would help, this code is not yet in OOP, so its just the main class that does all the work and yes it runs in eclipse.
  11. Hello, Im kinda transitioning from C# and Python (maybe you could consider COBOL) to JAVA, so far everything has been the same except for sharing the code. Im starting with console programs to familiarize myself with how things are coded. When I tried the export > runnable java file (On eclipse using the settings below) then double click the thing nothing happens, so I thought of running it in console because unline EXE files it might not run the console natively. Getting these warnings, these are just my other programs... Here's what I get when I run it on console, same as when I compile the class files using JAVAC... If you can help me, or direct me to the answer, I would be very grateful
  12. THANK YOU SO MUCH! I didnt know what I was looking for!
  13. Im trying to make my APP write a JSON file, how do I go about this? All i could google are how to read JSON on android studio. Using JAVA BTW. Here is what I wrote so far: try(FileWriter file = new FileWriter("myJSON.json")) { System.out.println("File successfully created!"); }catch(IOException e) { System.out.println("Error Creating file!"); e.printStackTrace(); } Just a simple code, I just wanted to make sure I wrote it properly. I/System.out: Error Creating file! W/System.err: java.io.FileNotFoundException: myJSON.json (Read-only file system) And that is what I got. Is this the correct way of doing it? Or is there a more easier way?
  14. Even a point in the right direction would be appreciated.
  15. Im following https://www.pytorials.com/how-to-install-tensorflow-gpu-with-cuda-10-0-for-python-on-windows/2/ Currently at step 11: This is what is popping out. Tried entering bazel shutdown before the configure step still having the same problem. If anyone can assist, it would be greatly appreciated.
×