Jump to content

JohnQ

Member
  • Posts

    63
  • Joined

  • Last visited

Awards

This user doesn't have any awards

1 Follower

About JohnQ

  • Birthday Mar 26, 1989

Profile Information

  • Gender
    Male
  • Location
    Brunei Darussalam
  • Interests
    Everything Information Technology & Astrophysics
  • Occupation
    Student

System

  • CPU
    i7-4770K
  • Motherboard
    Z97 Sabertooth Mark 1
  • RAM
    Corsair Vengeance Pro 16GB 1866 MHz
  • GPU
    MSI Twin Frozr GTX 760 2 GB
  • Case
    Corsair
  • Storage
    256 GB Samsung Evo 840 SSD , WD 1TB Black, WD 2 TB GREEN
  • PSU
    Corsair CS750 ( Gold rated )
  • Display(s)
    Samsung 27 inch 60Hz & Acer 23 Inch IPS
  • Cooling
    H80i Closed loop
  • Keyboard
    Razer Ultimate Mechanical keyboard
  • Mouse
    Logitch G400s
  • Sound
    Creative 2.1
  • Operating System
    Windows 8.1

Recent Profile Visitors

623 profile views
  1. Ok I don't know if my title makes sense , but here's my arduino sketch. https://jpst.it/FsoH If I boot up the Yun and just call arduinoyun.local/data/get I only get this *{"value":[],"response":"get"}* Nothing, eventhough I've coded in the Bridge.put already. BUT once I run the serial on Arduino's software http://imgur.com/NAqIfHe . It Gives out the reading as intended. When I enter the arduinoyun.local/data/get THEN it will have the data that I needed. That is: *{"value":{"date":"Fri Feb 12 02:08:22 SGT 2016\u000a","cm":"6","inches":"2"},"response":"get"}* I can't seem to just call the /data/get without starting the serial monitor on Arduino's. I've been stuck for days. Help? Is there a special command I need to get it to turn on without using the Arduino's Serial monitor first?
  2. Hi, it's for this Research Methodologies workshop I have to attend this week. Apparently we have to submit some data by the end of this week and deduce the data received
  3. https://docs.google.com/forms/d/1bX7aGvKSobLxAufP-0w4ML-4qou6mhsF2Zidy6KtVM4/viewform Appreciate your reply!
  4. I prefer a smaller seperate keyboard since I travel with my laptop alot. Having a quick PC-ish setup with a bigger monitor and a small keyboard like the vortex Pok3r is nice. Can fit in my travel bag too!
  5. Lol spot on! 1.4 Million! Anyways Congratulations LMG. You guys deserved it. Anyone noticed the video had luke and edzel neck on neck about something? hahhaa
  6. How much was it? lol. I would like to see the Titan X SLI in 5k?
  7. Here's Part one. XMLHttpRequest Response What is XMLHttpRequest? XMLHttpRequest is an API provided by most browsers which allows client-scripting language such as Javascript to use for making requests to a server. It handles both the request to a server and response from the server. We use Javascript to create XMLHttpRequest objects. Summary: - XMLHttpRequest is an API provided by most browsers - Handles both request/response from the server - Javascript is used to create XMLHttpRequest objects A request from an XMLHttpRequest object can be sent to a URL via a GET or POST method ( click here for in depth GET or POST methods ) . The requests can also be set to an asynchronous or synchronous connection. An asynchronous connection means that , while waiting for the response from the particular server, the page in the particular Javascript segment can multitask. EG, writing a new email on the gmail interface. The response from the server can be fetched from the XMLHttpRequest object upon receipt of the response message, response can either be fetched as TEXT or XML. The text response can contain unstructured plain text or structured HTML text ( which means you can create your own RSS Feeds, now thats another tutorial for another time ) Summary: - XMLHttpRequest can be sent to a URL via GET or POST - Request can be set to asynchronous or synchronous connection ( one way/ two way ) - Response from server can be fetched from the XMLHttpRequest object - Can either be fetched as TEXT or XML Illustration: We can get the response status sent from the server by using several events associated with an XMLHttpRequest object: readState status onreadystatechange The readyState event provides the states (i.e. progress) of the HTTP request made by an XMLHttpRequest object. When sending an HTTP request message to the server, the states of the message can change from 0 to 4. The states are: 0: Request not initialised 1: Server connection established 2: Request received by server 3: Request being processed by server 4: Request is finished and response is ready The status of response messages from the server can be checked using the status event. The status of the response can be: 200: Request was completed and response given. 204: Request received but no response. 404: File/Resource not found. 400: Bad Request with the URL. 401: Not authorised to the file/resource. 403: Forbidden to access the file/resource. The onreadystatechange event is used to bind a function that will be called automatically when the readyState of an AJAX connection changes from 0.The function binded to the onreadystatechange event is usually responsible in deciding what to do with the progress of the connection and how to handle the response. Sorry it's abit wordy. But I promise the next post will be more practical! Next : Implementing AJAX in a web system
  8. Yes it is solved. I posted it here not for help but to share the link I posted
  9. In this case it wasn't the ISP, it was my apartment that was running the internet service. It's free, but they only provided me with one login tied to my room number. The apartment is running its own server to control the internet users. Also, there were no RJ-45 jacks in my room.
  10. So eversince I moved to my new apartment abroad ( Away from home for 6 months, work related ) . The internet was only limited to one device ONLY. I was frustrated but doesn't matter, bought a sim card for my phone and used the cellular data for a few days. Found out a few days later that the data charges for the particular Mobile Service provider was a tad expensive. So I tried EVERYTHING ..from spoofing MAC addresses to bridging my connection, trying to login to the MySQL server to 'inject' another user for my other devices . It was some local made software that controls the internet. Couldn't find anything on it on the net. ...Except for this. I knew at the back of my head it was possible but didn't know how so I surfed the web , read up all the forums out there and found THIS. http://tipsandtricksforum.com/thread-210.html And it WORKS. Enjoy
×