Jump to content

RaidenLeeChin

Member
  • Posts

    119
  • Joined

  • Last visited

Awards

This user doesn't have any awards

About RaidenLeeChin

  • Birthday June 24

Profile Information

  • Gender
    Male
  • Location
    Trinidad and Tobago
  • Interests
    Software development, Research, Robotics, Computer Mods, etc.
  • Biography
    B.Sc. Computer Science, M.Sc. Computer Science (Currently)
  1. I agree, maybe the way i said it really looks like a LOL content . However, I really do want to see a video on water cooled Antminers, detailed ones like linus videos, so i can attempt to do it myself. Dissipating heat using the built in fans is not enough.
  2. Who wants to see Linus liquid mod an Antminer . Maybe only i do!
  3. I know the feeling. They don't have time to train you and give you little information to work with. This happens mainly because the boss wants the manager to still do all his tasks and train someone. My advice is try to create a play environment that has the same files and dig deep into the code. I figure they are using MS products.
  4. Php and database schema are the same. I am using the codeigniter framework so when a form gets submitted the code is executed directly on the db. So there is nothing wrong with the code?
  5. At the moment no. Just need someone to see if the sytax is correct.
  6. I am using it on a client server and he insists that it does not stay for 6 hrs and 10 min but i tested it on my local server and it works. I just want someone to review it and see if the syntax is correct.
  7. Hey all, I tested this and i believe it works but i think it may be wrong. Can anyone skilled in creating events help me correct the code. Thanks! What i want to achieve: It updates a field (flag) in a table (mytable) with a value of 0 after a certain time (6 hours and 10 minutes from when it was created) then removes itself from the scheduler. So i click a button, it creates the event and after 6 hours and 10 minutes the event sets flag = 0 and removes itself. Code: CREATE EVENT myevent ON SCHEDULE EVERY 6 HOUR STARTS CURRENT_TIMESTAMP + INTERVAL 6 HOUR + INTERVAL 10 MINUTE ENDS CURRENT_TIMESTAMP + INTERVAL 6 HOUR + INTERVAL 11 MINUTE DO UPDATE mytable SET flag = 0
  8. Hmm thanks for the replies, the correct term was supposed to use was Marketplace templates. Will check out those!
  9. Hello everyone, Simple question, does anyone know of a CMS type website template that allows users to register and sell their items? Basically like how Ebay works. Or if you know of plugins for Wordpress, Joomla, Drupal or Magento that does the above. Thanks!
  10. LOL first time i got this "problem" i was pulling my hair out! That pesky INSERT key.
  11. kichilron is right, i do this all the time. Just be sure that you either create the main database manually first or you have a create database statement at the top of your exported sql statements because sometimes it does not put it in for you. I don't think you need authentication if you have direct access to the server, You can do either one: 1. You can copy and paste the exported code in the file into the script editor in 2008 and run it or 2. Find an option to load the exported file and run it.
  12. As far as i know you need to do an import of a package to get process ids, most are work arounds. So much easier in C http://maxrohde.com/2012/12/13/java-get-process-id-three-approaches/ http://www.wikihow.com/Get-Pid-in-Java http://boxysystems.com/index.php/java-tip-find-process-id-of-running-java-process/ http://www.golesny.de/p/code/javagetpid http://stackoverflow.com/questions/35842/how-can-a-java-program-get-its-own-process-id
×