Jump to content

Tocsin_786

Member
  • Posts

    1,705
  • Joined

  • Last visited

Awards

This user doesn't have any awards

About Tocsin_786

  • Birthday October 8

Contact Methods

  • Steam
    tocsin_khan_786
  • Origin
    tocsin_khan_786
  • PlayStation Network
    tocsin_khan_786
  • Twitch.tv
    http://www.twitch.tv/xXTocsinXx
  • Twitter
    https://twitter.com/xXTocsinXx
  • Website URL

Profile Information

  • Gender
    Male
  • Location
    The moon drinking beer
  • Occupation
    Astronaut
  • Member title
    I have explored the 7 realms.

System

  • CPU
    core i7 2600
  • Motherboard
    asus p8z77-V pro
  • RAM
    8 gigs Kingston hyper X blue
  • GPU
    Gigabyte GTX 970 G1
  • Case
    Phanteks Enthoo Luxe
  • Storage
    250GB 850 EVO, 1 TB black drive, 2TB and 3TB HDD
  • PSU
    XFX XTR 750w
  • Display(s)
    Asus 1080p
  • Cooling
    NZXT Kraken X61
  • Keyboard
    Logitech G710
  • Mouse
    Logitech G502
  • Operating System
    Windows 10 Pro

Recent Profile Visitors

7,373 profile views
  1. Can you link where you found this? There was no defaults or full factory reset options in the CE menu.
  2. Getting this weird error on my printer upon bootup. Error code: 003-356; Code:0000000ah I have scoured the internet, and multiple LLMs and can't seem to find a solution for this. I will list some steps I have taken below. 1. Ink - All new print cartridges from 123Inkjet - I have booted up the printer without cartridges and then it proceeds to tell me to insert them, which is a good sign and lets me know that the printer is still in tact in terms of the OS. - I have cleaned the cartridge slots with a dry micro fiber. - I have emptied the waste toner etc.. 2. Software - I was able to get into the CE menu by pressing 4,5,6 on the num pad and power button > entering code 225 for the password. In this menu, I pressed the 'initialize vram emmc' option as well as initialized job and other resets on that sub menu. No luck! - I was able to see that the network was still working on the printer as my pc was able to detect it, I proceeded to update to the latest firmware via a USB cable.. No luck. Any and all help would be great! Printer always worked fine and got this issue out of nowhere.
  3. I recently purchased a Mac Mini M4 and have two displays that I want to connect to both the Mac and my laptop (which has a Thunderbolt 3 port). The displays are a 4K and a 1080p, so resolution compatibility isn’t an issue. I’m looking for a reliable KVM switch that allows me to easily switch between devices at the press of a button while using the same peripherals. Reliability in switching is crucial, as I’ve noticed many reviews mention issues with this functionality breaking. Does anyone have recommendations?
  4. Barely use those keys, eventually I'll order them custom with correct size. Ty for the help!
  5. I got the keyboard for $10 so any add on to it is worth it right now. But yes, I do see how unorthodox the key placements are. I also found this one but would like your opinion on its compatibility. https://www.amazon.com/gp/product/B08LZ71MYY/ref=ppx_yo_dt_b_asin_title_o01_s00?ie=UTF8&th=1
  6. Hello, Just got a Epomaker TH96 Pro that I must build myself. I can't seem to find the actual key caps for it. It's a 95% keyboard so the right shift key is shorter, the num pad "+" key is also a standard size vs being elongated vertically, and some other keys are smaller and more crammed together. But I have checked all over Amazon, Mechanical Keyboards and google to see if I can find backlit keycaps. I will link the keyboard and a Reddit post that is of no help but has a picture of the key layout and the color scheme (of orange and white/black) I was aiming for. Please suggest me some key caps. Keyboard in question (mine came without keys because I want back lit and not the stock that the key board comes with) : https://www.amazon.com/EPOMAKER-TH96-Mechanical-South-Facing-Enlightenment/dp/B0B8CS66NR/ref=sr_1_3?crid=17SETS3HNEZQ8&keywords=epomaker%2Bth96&qid=1697762527&sprefix=epomaker%2Bth96%2Caps%2C75&sr=8-3&ufe=app_do%3Aamzn1.fos.18ed3cb5-28d5-4975-8bc7-93deae8f9840&th=1 Reddit Post that has the keys but no links on where to purchase: https://www.reddit.com/r/MechanicalKeyboards/comments/op3tpa/epomaker_96s_customized/
  7. And not the organic Turkey
  8. So I figured it out on my part... apparently I had two steam accounts forever. I used my Gmail for my actual steam account, and Yahoo for the one that I got spammed about. I never realize this cuz I barely get steam notifications on gmail. So I just deleted the un-used steam account and have not gotten any more messages. There deff was a data breach, I never get emails on my gmail cuz thats the account I changed the pw for multiple times.
  9. I've been having the same issues with Steam honestly. Changed the pw 3 times and I always get the notification. Nothing changes internally on my account. I always get 2FA emails, so I just made my email account much more protected. Idk what to do about steam honestly.
  10. that finally makes some sense. This was related to my class im taking and unfortunately all my hw is due on Codelab which doesnt explain anything like you just did. Thanks!
  11. I'm super confused by this. my very first test was a user input, compiled correctly but didn't sprint anything out. So I wanted to hard code in some values and see if that would work, but it just made things much worse. import java.util.Scanner; public class lastNameTest { public static String lastFirst() { Scanner sc = new Scanner(System.in); String First,Last; First = sc.next(); Last = sc.next(); return Last + ", " + First; } public static void main(String [] args) { lastFirst(); } }
  12. I'm trying to better understand static methods by coding testing out code. In this case I want to print last name first... Ex: "Gates, Bill". Can't seem to figure out what I'm doing wrong. public class lastNameTest { public static String lastFirst(String first, String last) { first = Paul; last = Walker; System.out.println(last + ", " + first); } public static void main(String [] args) { lastFirst(); } }
  13. Yea its a conditional statement, kinda like an If statement but condensed. So in this case the n input is either being subtracted or added by either 1 or 2. How would I change it so it does it in intervals automatically? like what if I want to count every second odd number or something like that?
  14. This has been puzzling me for a month. All my HW is due on codelab and so it has to be very specific in what its asking. I dont conceptually understand how I can have a user input a number, and then have Java count up or down to the next odd number... or just count in odds or even in general. The code I have provided is from Chegg, but they failed to explain anything, and so I'm lost. * keep in mind, I can't use arrays, or if statements because we havent learned that yet.* Heres the code so you can copy and paste. import java.util.Scanner; public class OddPredecessor { public static void main(String [] args) { Scanner scan = new Scanner(System.in); int n = scan.nextInt(); System.out.println((n-1 % 2==1) ? n -1 : n -2); } }
  15. So I will be starting a class soon where the prof will basically send 20 emails a week. I made a folder labeled for the specific class. I basically want to make Windows Mail automatically populate that folder from the sender. Is this possible?
×