Jump to content

Marcus_UK

Member
  • Posts

    29
  • Joined

  • Last visited

Awards

This user doesn't have any awards

2 Followers

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

1,297 profile views
  1. Avoid all hosts owned by Endurance International Group (who also own Hostgator) Its all the same, just different names.
  2. I got the 7T Pro and I love it. Best phone I ever had.
  3. On a local fb buy/sell group, anyone know the make/model of this, being sold very cheap as new, (no packaging, but not used). Thanks in advance. :)
  4. Looking forward to seeing what you have to offer but "something RGB that no one offers yet" , Meh I have my doubts as the last time you said something similar it turned out that a few places already made/sold the same.
  5. Marcus_UK

    PUBG

    PUBG is more luck than skill I think. So many times I have dropped in a high-risk area and died because someone found a gun quicker than me, or I drop and all I find is a shotgun while someone else gets a sniper + 4x scope, its still winnable but will be hard. So games like this NO to eSports. Fun events like playing at LANs, parties, charity sure go for it, but eSports playing for real money. Nope.
  6. It was a limited edition case and given to modders to build with it and show off EK parts, it was never produced and publicly sold.
  7. I would assume that is because EK created the EK Vulture and a couple of years later ThermalTake released the View 27. Google "EK Vulture" and "Thermaltake View 27" go to images and you will see what I mean.
  8. Sorry you wont get hardly anything for them, not even a charity shop would get much for them. I work in a charity shop in my spare time, most will take the albums and sell them for £1 each, but music single and VCR's get rejected, if they are left before we can reject them, then they are simple thrown in the bin.
  9. LMAO!!! I can already see people taking time off work and queuing up to get it.
  10. Surprised no one posted this before... Its been all over Facebook tech groups for a few days. I don't think apple has much interest in gaming, if they did they would have used better GPU's by now. I wonder if VR will make them change their mind.
  11. Marcus_UK

    Virus :(

    Some programs / game mods do open up a command prompt while installing, and windows can flash open and close during an installation. Which site did you get the mod from?
  12. I am new to Arduinos and when I say new I mean I received my FIRST one today (Arduino Uno) Love it and already have another 2 on the way As I said I am new but you should be able to just do something simple like Have 3 leds connected to 3 different pins. and set each LED to start off and then to turn each LED 1 second after the other and once the last LED is on they will all stay on. The code runs every time the arduino receives power, so all it will need is a 5v power source within the computer (not the 5v that stays on) and then when you hit the on button the arduino will run its code and when done it will stay on. Could even time how long your system takes to boot up and work the LED on delay into that. So for example if your system takes 30 seconds to power on you set LED1 to flash for 10 seconds then stay on and then LED2 flashes for 10 seconds and stays on and then LED 3 flash for 10 seconds and stays on so by the time the code has finished running the system is fully booted up. This is an example I have been playing around that comes pre loaded into the Arduino desktop program. // the setup function runs once when you press reset or power the board void setup() { // initialize digital pin 13 as an output. pinMode(13, OUTPUT); } // the loop function runs over and over again forever void loop() { digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(13, LOW); // turn the LED off by making the voltage LOW delay(1000); // wait for a second } This code turns the LED connected to pin13 on for a second and then off for a second and then repeats. I have been playing around with this code for a bit. This will turn the LED1 (connected to pin13) on for half a second and then off for half a second and when it hits 10 seconds it stays on for 5 seconds. // the setup function runs once when you press reset or power the board void setup() { // initialize digital pin 13 as an output. pinMode(13, OUTPUT); } // the loop function runs over and over again forever void loop() { digitalWrite(13, HIGH); // turn the LED on delay(500); // wait for half a second digitalWrite(13, LOW); // turn the LED off delay(500); // wait for half a second digitalWrite(13, HIGH); // turn the LED on delay(500); // wait for half a second digitalWrite(13, LOW); // turn the LED off delay(500); // wait for half a second digitalWrite(13, HIGH); // turn the LED on delay(500); // wait for half a second digitalWrite(13, LOW); // turn the LED off delay(500); // wait for half a second digitalWrite(13, HIGH); // turn the LED on delay(500); // wait for half a second digitalWrite(13, LOW); // turn the LED off delay(500); // wait for half a second digitalWrite(13, HIGH); // turn the LED on delay(500); // wait for half a second digitalWrite(13, LOW); // turn the LED off delay(500); // wait for half a second digitalWrite(13, HIGH); // turn the LED on delay(500); // wait for half a second digitalWrite(13, LOW); // turn the LED off delay(500); // wait for half a second digitalWrite(13, HIGH); // turn the LED on delay(500); // wait for half a second digitalWrite(13, LOW); // turn the LED off delay(500); // wait for half a second digitalWrite(13, HIGH); // turn the LED on delay(500); // wait for half a second digitalWrite(13, LOW); // turn the LED off delay(500); // wait for half a second digitalWrite(13, HIGH); // turn the LED on delay(500); // wait for half a second digitalWrite(13, LOW); // turn the LED off delay(500); // wait for half a second digitalWrite(13, HIGH); // turn the LED on } You would just need to copy and paste the code for LED2 and change the 13 next to digitalWrite to what pin number LED2 is connected to, and then the same for LED3. I am still trying to work out how to set the above without making it loop, and I am limited to just using the LED on the board itself, still waiting on the rest of the parts to arrive, and then I can start having some fun PLEASE do not use any of the code I posted, I am still new at this and the above is to give an idea of what is need. If you use this code you cannot hold me responsible.
  13. Few years back I was co owner of a huge gaming community (mainly minecraft), and we had all our dedicated servers compromised, at the time we had 5 dedicated servers with OVH, took us a few days to fix everything and worked out how it happened, turned out that a hacker (that was known to us, and called a friend as one point) had tricked OVH customer support to change the master password on the main control panel so he could get in. A week later we left them for another host. He also hacked our website and teamspeak server a few times after that. The whole running a server in minecraft is horrible, with popularity comes ddos attacks, threats, doxing, and hacking, got to a point where I had enough and quit that community and got away from it all.
  14. Every coolant should be cleaned out every now and then, some recommend every 6 - 8 months, some say every 1 - 2 years. Distilled is just tap water with the impurities removed, but you need to add things just as anti algae and anti corrosion to the distilled water for PC cooling. Water cooling isn't something you can just add to you system and never touch it again, needs to be maintained, even if it is just a quick drain, flush/clean and refill every now and then, how long you leave it before cleaning will depend and what coolant is chosen.
×