Jump to content

Blake Gall

Member
  • Posts

    37
  • Joined

  • Last visited

Everything posted by Blake Gall

  1. First and foremost, I got permissions from the moderators to post this thread on behalf of my community, replacing the existing one. The OP is no longer active. Hello! So you're part of the PC Master Race and are looking for people to play with? Look no further! I would like to invite you to my community known as How To Gaming. I'm a member of it and I love the experience. We're a community based in NA but we have EU and South American players as well, so if you're live in one of those areas, you're most welcome to join. The area restriction is purely for ping reasons. We use Discord. We switched to it from TeamSpeak mainly due to the chat option which is used most of the time when not gaming. There's also a mobile app available, not to mention that everything is free. Our members play a variety of games but as a community we mostly play GTA V, Rocket League, Insurgency, The Division, and Cards Against Humanity on pretendyourrexyzzy.com (free) I also would like to mention that we will be opening a FTB Infinity community server in the near future. Some other games that our members play individually: DayZ League of Legends CSGO Some potential games we'd like to play as a community as we expand: Battlefield Tabletop Simulator Requirements to join: -Working mic -Willing to be active (not required if you advise the administrators before going into a period of inactivity) -Be child-friendly (there are some young people in it) however do note that there is a NSFW channel for all your NSFW needs We do community streams whenever there a multiple people playing on Twitch. The stream is usually hosted by me and occasionally by Bloodyvalley, the founder. Join our Discord server! (You will be kicked if you disconnect from the server without having a role - so ask for one, if not, just come back later): https://discord.gg/0eHLxWh9hsPb6lzC Useful links: Steam group: http://steamcommunity.com/groups/HowToGamingSMS10X Facebook page: https://www.facebook.com/howtogamingSMS10X/ Twitch: http://www.twitch.tv/how_to_gamingsms10x YouTube: Coming soon! TL;DR: Cool community wants more people, join us with the discord link above so we can play with you. 420 friendly We also have a NSFW channel for those interested, our own news channel as well as a deals channel. There are also two Discord bots, one made by Jack, a community manager (bot name is Ava) and another one made by me (ErraticBot).
  2. Not totally sure, @Dossium is trying to get some things right so he can shoot the video for the modpack. For some reason he can't connect to any Minecraft server
  3. This is a stupid question: Does your computer actually have 10 or more GB of RAM?
  4. If we can't find one, maybe we can make it lol
  5. My rig's specs: i5 4690k@4.1GHz 16GB ddr3 2100mhz GeForce GTX 970 (EVGA ACX 2.0 FTW) Samsung 850 EVO 120GB (The rest of the specs are down in my signature)
  6. I usually type around 50 WPM when copying something, when I'm typing something in my mind, It's more like 65-75
  7. We still exist, if you want to join message "BloodyValley" on steam
  8. Factions on play.pyrostasis.com

  9. I made a guide on how to do this with javascript.... http://linustechtips.com/main/topic/473056-this-is-a-way-to-include-html-markup-from-other-files/
  10. OPTION 1: Personally I would drop the sound card. With what your budget looks like, I would drop the 6700K to a 6600K and upgrade the GPU to a 970 or maybe even a 780. OPTION 2: Drop the 32GB of RAM to 16, Somehow manage in at least a GTX 970 if your running a decent monitor like that. MY RECOMMENDATION: http://pcpartpicker.com/user/blakegall24/saved/FGpscf
  11. It wouldn't work right for what my goal was. I want to include a partial html file within a full html file and have full control over the HTML using javascript. If the header in the "file.txt" had the id "otherheader", you could still control it using Javascript. Meanwhile that wouldn't work in a iFrame. But... the iFrame does work well in some cases.
  12. Yeah, I know that would be a better approach, but I decided to refrain from using PHP for most of my project.
  13. I was looking up how to take a file with HTML markup and include it in a full HTML document. I got nowhere, so this is my guide on how to do it after a day of experimenting This is the file with our HTML markup (file.html): <h1>HELLO FROM THE OTHER FILE</h1> And this is our full html document: <html><head><title>Experiment</title></head><body><h1>Hello from this document</h1></body></html> This method will be using javascript so if your trying to avoid JS, this isn't the method for you. First, we need to add a div element. We're going to put it right below the header. <div id="container"></div> Now we need to create our script element: <script> </script> In the script, create a XMLHttpRequest var xhr = new XMLHttpRequest(); Open the XMLHttpRequest xhr.open("GET", "file.html", false); (You can set "false" to "true" if you want the request to run in async mode. I left it at false to keep this tutorial simple. Send the Request xhr.send(); Now, set the innerHTML attribute of the container div to the responseText attribute of the XMLHttpRequest document.getElementById("container").innerHTML = xhr.responseText; And that's it for the code, you should see this: Hello from this document HELLO FROM THE OT​​HER DOCUMENT And that's it. I know we probably could have used PHP, but I was trying to refrain from that in the project I'm doing. Thank you. EDIT: Also, if you want to manipulate elements in the file, you want to do it somewhere after you've set the innerHTML of the container.
  14. So soon i'm getting a hyper 212 EVO to cool a 6600K. I'm wondering how much of an overclock I should expect. If it helps any, my Case will be a NZXT H440, motherboard a Asus Z170-A ATX Board, and i'll also have a 970 Strix adding some heat to the case.
  15. You know that has to be 30 seconds max EDIT: Crap, I was talking about one of the suggested videos!
  16. Java, it also uses some xml for layout files, but all the functionallity is in java pretty much
×