Jump to content

Rekhyt

Member
  • Posts

    210
  • Joined

  • Last visited

Awards

1 Follower

About Rekhyt

  • Birthday Apr 06, 1993

Profile Information

  • Gender
    Male
  • Occupation
    Student
  • Member title
    Junior Member

System

  • CPU
    Intel 3930K
  • Motherboard
    Asus P9X79-E WS
  • RAM
    32 GB 1866 Dominator Platinum
  • GPU
    2-way SLI Gtx Titan
  • Case
    Fractal Design Define XL R2
  • Storage
    240 GB Samsung 840 Pro; 3 TB Seagate Barracuda
  • PSU
    Corsair AX 1200i

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. I'll allow myself to bump Daniel from singularity computers
  2. Of all the rendering styles of the AAA engines this is really my favorite. It has a crispness to it that Anvil Next, Unreal or CryEngine don't seem to have. Are they by any chance planning on licensing it? I suppose not but it would be amazing.
  3. Perfect! Cheers man, just what I wanted. I went through a bunch of similar services but they all required subscription or were insanely ugly. Just needed someone who knew where to go. Thanks again!
  4. Thanks for your reply! That's for creating a feed though; I already have that XML file from another website, and I want to integrate their feed into one of my pages and I'm looking for an easy non-ugly script to paste in
  5. Hey, I've never touched RSS feeds vefore and I gind myself needing to integrate one to a website. That is, display an existing RSS feed from an existing website on a website I'm creating, not create one. I'm looking for the simplest HTML/JS (no server-side code) solution that doesn't look like absolute balls and doesn't ask me to register or anything. I'm doing this as a favor to someone and I hate making websites, so I can't be bothered to learn how to do it or start installing JQuery or whatnot; I'd like something I can just copy/paste All suggestions welcome, Thanks!
  6. As someone who always browses english speaking/american internet, switching back to euros when I need to make an actual purchase is always a depressing experience. Right now I'm looking for a portable table saw like the deWalt 745. Currently I could one on Amazon on discount for 300$ (217€) but they would then kill it with shipping and insane import taxes.The cheapest I can get it for over here is 550€ (760$), and that's on some tacky websites I don't trust a whole lot. Big retailers list 800€ (1100$). Yay Europe.
  7. Thanks! I feel the same way about exploration; be part of the first big wave that discover jump points and mining resources, then go and do something else when it becomes too "crowded". Although the expanding universe should fight that at least to an extent I was thinking it would be loads of fun to put a group of people together whose role is to attack and board otherwise unobtainable alien ships, and bring them back intact for use/sale/salvaging. That or Escort/Mercenary missions My god this is going to be fun.
  8. Hey, I just sent my application and voted "exploration" on the poll (like everyone else ) I'm wondering however what "engineering" entails exactly, can someone enlighten me? Otherwise my ships are: Super Hornet, Constellation, 325a, and Freelancer
  9. If you look at the order of instructions in your code, you'll realize you're prompting for the username, then doing cin.get, then cin >> thepassword resulting in strange behavior (if you echo the promted password at that point you'll see it's "estPass", the first character is missing. Here's a better version of that code, using c++ variable assignment, and taking out the unnecessary steps, like repeating "TestUser". The point of variables is to use them everywhere, instead of hard coding what they contain! #include <iostream>using namespace std;int main(){ const string userName("TestUser"); const string userPass("TestPass"); string inputName; string inputPass; //Declare variables at the top, using C++ syntax for assignment cout << "Username: \n"; //Prompt User name once cin >> inputName; while(inputName != userName) { //the Whole loop will be ignored if the User name is correct cout << "Incorrect Username, try again \n Username: \n"; //If not prompt again but with error message cin >> inputName; }//Once the first looop is exited or ignored, repeat for the password cout << "Password: \n"; cin >> inputPass; while(inputPass != userPass) { cout << "Incorrect Password, try again \n Username: \n"; cin >> inputPass; }cout << "Login Succesful.";//End of Login Process}
  10. Adobe Carlson Pro, and Open Sans
  11. It's a nice camera, but for shooting quick videos and hand camming on the go, is this much better than a 700€ Sony RX-100 Mk II? I have one and I've cut it with DSLR footage a few times and it looked fine.
  12. A good red wine, a good whiskey or a good cognac. I can't stand all the cheap shit people buy so they can drink more, faster; that completely escapes my understanding. No ice in anything, it inhibits the flavors.
  13. Okay my bad, I play all the AC's all the time so I get confused... Just checked in the game and dropping is Shift (Maj), and the binding is the "Empty hand" one.
×