Jump to content

dirtbikerxz

Member
  • Posts

    58
  • Joined

  • Last visited

Awards

This user doesn't have any awards

1 Follower

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

991 profile views

dirtbikerxz's Achievements

  1. So my hope was to build a mini itx build for vr preferably in a case like the Node 202. But then I found out about the HTC vive wireless adapter: https://www.vive.com/us/wireless-adapter/. Which uses a pcie card for the to connect to the wireless adapter Are there any mini itx motherboards out there that have more then 1 pcie slot or is there a way to adapt a pcie m.2 slot to a standard pcie slot (so i could just leave the vive adapter card internally, and just run the cable for the wireless adapter out of the case with a drilled hole or something).
  2. just stick it all in pcpartpicker.com and it will tell you if its compatible or not
  3. I have a json data source as shown below. When I do =ImportJSON("*my url to the data source*", "/Schedule/Teams/teamNumber", "noHeaders") in google sheets, i only get a list of 2585, 4355. Those teams are the first "teamNumber" in each of the "Teams". How can I get the ImportJSON function in google sheets to result with all 12 team numbers, instead of just the first one in each team? { "Schedule": [ { "description": "Qualification 1 (C)", "field": "Primary", "tournamentLevel": "Qualification", "startTime": "2016-04-08T09:00:00", "matchNumber": 1, "Teams": [ { "teamNumber": 2585, "station": "Red1", "surrogate": false }, { "teamNumber": 3545, "station": "Red2", "surrogate": false }, { "teamNumber": 4610, "station": "Red3", "surrogate": false }, { "teamNumber": 3743, "station": "Blue1", "surrogate": false }, { "teamNumber": 57, "station": "Blue2", "surrogate": false }, { "teamNumber": 2950, "station": "Blue3", "surrogate": false } ] }, { "description": "Qualification 2 (C)", "field": "Primary", "tournamentLevel": "Qualification", "startTime": "2016-04-08T09:07:00", "matchNumber": 2, "Teams": [ { "teamNumber": 4355, "station": "Red1", "surrogate": false }, { "teamNumber": 6173, "station": "Red2", "surrogate": false }, { "teamNumber": 4328, "station": "Red3", "surrogate": false }, { "teamNumber": 4155, "station": "Blue1", "surrogate": false }, { "teamNumber": 5829, "station": "Blue2", "surrogate": false }, { "teamNumber": 3345, "station": "Blue3", "surrogate": false } ] } }
  4. I have a max of 400 dollars USD. What is the best monitor to buy? Minimum 24 inches, preferably 1440p but can live with 1080. preferably ips, and definitely 5ms or less response time. What is the best monitor?
  5. Amazon has cards but they are like 800 dollars.... way more expensive than it should be
  6. know a good place i can get one from? Basically EVERYTHING is out of stock in newegg
  7. What is the best gtx 1080 to buy today (I want a 2 way sli). I would also prefer something with rgb lighting. I want the asus gtx 1080 strix, but it is literally either out of stock or way to expensive
  8. I know. Thats what I did orignially (made an android app), but I was just exploring other alternatives for next year to see if there was anything better (The "game" or "purpose" of the google form/android app, changes every year, and I have limited time to make it after I find out what the new "purpose" is) :D. Thanks anyway
  9. YA, I thought about that, but its simply not reasonable with the amount of possible combinations
  10. So I am making a form on google forms. There will be five questions asking which defense is in what position. So there are 10 possible "defenses" and 5 posible "positions". So question 1 Defense is in position 1?" And will have a dropdown with all 10 defenses. Question 2 wii ask "Which defense is in position 2?" and will have a dropdown with all 10 defenses etc. And that will repeat for the next 3 questions. I want question 6 to ask (this question will be in the next "section"). How many times was *defense in position 1* breached? Is there anyway to get the info from question 1 about which defense was in position 1, and change the title of question 6 with the defense? and also where to store the answer of question 6 in the output spreadsheet? Please ask if my question was confusing, thanks in advance.
  11. The button is a link to a url "google.com/maps/search/*search term*/. I need to use an iframe, because the main page where the info needs to be shown dosent allow me to use php, only html (long story), so I basically created a page in another directory with all the php code and am using an iframe to show the php content from page 2 in page 1.
  12. How do I get a button within an iframe work outside that iframe? The button is: echo "<form action='" . $gmaps . "'><input type='submit' value='" . $events[$i]['name'] . "'></form>"; ($gmaps and $events are custom variables I'm using, dont worry about that) The button works when I click it from the page (lets call it page 1) that it is actually on, but when I use an iframe from another page (lets call it page 2) to view this page1, the button doesn't affect page2. How can I make it so that the button on page 1, works through iframe on page 2?
  13. I have a multidimensional array like so: events[0][0] = txho events[0][1] = 2016-04-27 events[0][2] = CMP events[1][0] = ONTA events[1][1] = 2016-04-12 events[1][2] = CMP1 events[2][0] = LAKE events[2][1] = 2016-07-13 events[2][2] = MER how do I get php to sort the array using the date portion of each array essentially (events[x][1]) so that the array becomes events[0][0] = ONTA ...etc (remaining two fields) events[1][0] = txho ...etc (remaining two fields) events[2][0] = LAKE ...etc (remaining two fields) thanks in advance
  14. Thanks! Will try it out as soon as I get home and let you know.
×