Jump to content

Duke Jake Morgan

Member
  • Posts

    17
  • Joined

  • Last visited

Awards

This user doesn't have any awards

About Duke Jake Morgan

  • Birthday Oct 17, 1999

Contact Methods

  • Discord
    TheMasteredPanda | Duke | Gay#5042

Profile Information

  • Gender
    Male
  • Location
    London
  • Interests
    Coding (Java, PHP, HTML (5), Bash, Python, C+, C#, JavaScript, .NET), Photography and Hardware.
  • Biography
    I break things.
  • Occupation
    Student

Recent Profile Visitors

710 profile views

Duke Jake Morgan's Achievements

  1. Hello, I got my ModMic through the door today, opened it, set it up and plugged it into my Laptop only to find it isn't being registered! I have no idea why but, if it comes to any benefit, in my Sound > Recording tab it says the front mic isn't plugged in? I've checked the audio drivers and my laptop says they're all up to date. What in the world is causing this and how can I fix it? Thanks, Duke.
  2. Pretty mich says it all in the title. I'm going to be buying a modmic 5 and I'd like the whole set (the modmic && headphones) to come up to about 100 quid. PS: Don't necessarily mind if the headphones can be bought second hand. Thanks, Duke.
  3. Hello, I find myself spending more time in Starbucks, Costa, work and College than I do at my desk at home. I have a studio microphone that I plug my laptop into when I'm @ home, but of course, the mobility of such an item is nonexistent. So I am looking for a headset that excels in the obvious categories (microphone input quality, audio quality, and build quality) to use on a daily basis, are there any fairly priced (anything from £60>) headsets out on the market? PS: I did look into some, the one headset I have been constantly looking back on is the Corsair H2100, is this a good choice (given the microphone)? Thanks, Duke.
  4. Hello, I finished the design concept for a SQL Library I am writing for a section of a bigger library I am in the process of writing. I am stuck on one problem specifically. I'm going to use annotations to specify which field corresponds to a column parameter in a table on a database. Here is the current pseudo code I have for this. package net.zoramagic.library.manager; import lombok.Getter; import net.zoramagic.library.manager.sql.annotations.PrimaryKey; import net.zoramagic.library.manager.sql.annotations.Table; import net.zoramagic.library.manager.sql.annotations.TableParameter; import java.util.UUID; @Table(database = "testDatabase", table = "testTable") public class ConceptTableClass { @PrimaryKey @TableParameter(columnName = "uuid") private @Getter UUID playerUUID; @TableParameter(columnName = "kills") private @Getter int kills; @TableParameter(columnName = "deaths") private @Getter int deaths; @TableParameter(columnName = "balance") private @Getter double balance; } Now the current design I have for this, it allows me to use the following methods with the class that has the annotations seen above, excluding the '@Getter', like so. SQLManager manager = new SQLManager(); SQLConnection connection = new SQLConnection(); ConceptTableClass conceptTableClass = new ConceptTableClass(): UUID uuid = UUID.randomUUID(): manager.addConnection(connection); //Will automatically create the table if it doesn't exist. connection.register(conceptTableClass); //Get the result set and parse it to a map. Map map = connection.getResultSetFrom(conceptTableClass).where("uuid", uuid).asMap(MapOrder.ASCENDING).execute(); //Get the result set and pass it to the respective field with the corresponding `@TableParameter` parameter matching the column name of the of the result set. ConceptTableClass concept = connection.getResultSetFrom(conceptTableClass).where("uuid", uuid).asClass(ConceptTableClass.class).execute(); //Objects passed in the object array are inserted in the the same order, descending from the first value. connection.insert(Object.. objects).intoColumns(String... columnNames).execute(); //Like above, the columnNames are read desending from the first value, so are the objects that will replace the current ones in there. connection.update(String... columnNames).insert(Object... objects).where(String columnName, Object object).execute(); Obviously, there are much more methods than just the ones I have displayed in this example. But I am wondering if there is a better way to table the create and access of tables in a database? I had the idea of replacing the methods requiring the parameter to be a class containing the '@Table' && '@TableParameter' annotations with two strings, one with the database name and the other with the table name but I am not sure this would be the best idea in the book. Is there a better alternative for managing (accessing, handling etc) tables? Thanks, Duke.
  5. Oh dear no. That post was meant to have more content in it but I skipped a thought process and forgot to add ', the 6700k'.
  6. I was referring to the 6700K.
  7. I won't lie. The 1080Ti release reminded me of the Intel Core I7 7700K release. Not much performance difference to its predecessor and wasn't exactly big news.
  8. Ayo, I've checked my Program Files and Program Files (x86) and I only have Microsoft Visual Studio 14 in my Program Files (x86). Only thing is I don't have a /VC/ directory, at all. Could this be the problem?
  9. Hey MrKickkiller, cheers for replying back. Not that I know of. I originally had Visual Studio 2015 installed till today. I uninstalled it and installed the standalone Visual Studio Build Tools to see if it would work, But no luck, unfortunately
  10. Ayo, Now I have attempted other solutions to the problem that over people have had success in. But unfortunately, technology is not on my side today. As the title says my C++ compiler says it cannot find 'stdio.h' then leaves with error status 3, Here is the stacktrace https://gyazo.com/d26d47054ee30f7e03524b7d8c0052a8 How would I be able to resolve this? Thanks, Duke.
  11. Ayo, So my laptops barely over a month old and it's pulling bluescreens on me already! Checking the Event Viewer I see this around the time of the bluescreen. Before the bluescreen, I do get quite a few warnings too. My drivers are up to date as well. I also find that my keyboard stops responding and then shortly after my touchpad does the same. When my keyboard stops responding it won't register keystrokes or any key bindings, such as Alt + Space to run on Lenovo backlit keyboard, either. About 30 seconds after that my mouse will old go in a vertical direction and favors only 1/3 of the screen. Then 10-15 seconds after that I get a blue screen with POWER_DRIVER_STATE_FAILURE as the Error ID and with the same log in the event as the one above. How would I overcome this problem? Thanks, Duke.
  12. Pretty much says it all in the title. I have a microphone on my earphones that I use when I'm running & speaking to people over the mobile. My Laptop has a better microphone than my earphones so naturally, I'd like to use the microphone on my laptop over the one on my earphones, but I can't do that because when I do plugin in my earphones my laptop doesn't give me an option to only have them register as headphones. it only gives me the option to use the microphone or both headphones and microphone on my earphones you can see here. Any way I can fix this? Thanks & Happy New Year! Duke.
  13. So I decided to look more into the range of laptops I could get for under 1k with the same specs (give or take an ssd). I'm interested in the MSI GE62 branch of MSIs gaming laptops. Can anyone recommend me a good laptop from their range? I was going to go for the GE62 6QF but I they seem to be all sold out in UK (just my luck)
×