ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. quicky2g
    3. Posts
    • Profile
    • Following 0
    • Followers 0
    • Topics 7
    • Posts 126
    • Groups 0

    Posts

    Recent Best Controversial
    • Who's getting a new phone in 2016?

      OOOOOoooooo me!!!! lol

      Holding out for Samsung Galaxy S7+. Upgrading from Galaxy Note 3. Hoping for a 6inch screen, SnapDragon 820, 4-6GB RAM, SD card slot (Can't believe they removed it in Galaxy S6 and Note 5), plus fingerprint and iris scanner.

      Anyone get a new phone for Christmas???

      posted in IT Discussion
      quicky2gQ
      quicky2g
    • RE: Fitness and Weightloss

      My girlfriend lost 50 pounds last year in about 2 months. She cleans houses for a living so she's already very active. The difference was food prep and doing the Insanity workout. She pre-made all her meals and snacks on Sunday so during the week she had healthy stuff to eat instead of junk food. It's so easy to get busy with life and default to crappy food and eat too much of it. The food part coupled with Insanity made her shed the weight really fast. We went on runs together a few times a week too. The healthy food made my energy level go up and my heartburn went down. It's too bad her back got injured...slipped disc. Chiropractor got her better but we lost the routine and she lost motivation for the food prep.

      posted in Water Closet
      quicky2gQ
      quicky2g
    • RE: Android vs iOS

      I used iPhone and Android extensively over the years...jailbroken, rooted, etc. Hardware advantage seems to fluctuate. Apple seems to have less bloatware in general (Excluding the Nexus phones).

      I think file system management and video file playback is the biggest deal breaker for me. I just can't stand converting a video file in iTunes. Why can't I easily copy over the original video file and just play it?!

      Also love programs like FolderSync where you can backup pictures and other files to a network share on a schedule without cloud services like Dropbox or Google Drive. I even did SSH port forwarding on my router so I can sync with SFTP to my Linux server when I'm away from home.

      posted in IT Discussion
      quicky2gQ
      quicky2g
    • RE: Getting a Handle on MangoLassis Markdown Markup

      Excellent! Exactly what I was looking for! Thanks!

      posted in Announcements
      quicky2gQ
      quicky2g
    • RE: ZeroTier Review

      @scottalanmiller Thanks! Co-worker put me onto this article and seems like a pretty cool site. Might have to stick around 🙂

      posted in IT Discussion
      quicky2gQ
      quicky2g
    • RE: ZeroTier Review

      Thanks for the code snippets to create a network and authorize a client. I modified the PHP script to change a client IP. I disconnected my client and reconnected to be safe and client started using the new IP.

      <?PHP
      
      $secret=file_get_contents('authtoken.secret');
      
      echo "Connecting with secret of $secret\n\r";
      
      $networkID="aaaaaaaaaaaaaaaa";
      $memberID="bbbbbbbbbb";
      $NewIP=array("192.168.50.10/24");
      
      $url="http://localhost:9993/controller/network/$networkID/member/$memberID?auth=$secret";
      $networkOption=array(
       'ipAssignments'=>$NewIP
      );
      
      //echo json_encode($networkOption);
      
      $curl=curl_init();
      
      $curlOptions=array(
       CURLOPT_URL=>$url,
       CURLOPT_POSTFIELDS=>json_encode($networkOption),
       CURLOPT_RETURNTRANSFER=>true
      );
      
      curl_setopt_array($curl,$curlOptions);
      
      $result=curl_exec($curl);
      
      print_r($result);
      
      /*
      echo "Sent Data: \n\r";
      print_r($curlOptions);
      */
      
      posted in IT Discussion
      quicky2gQ
      quicky2g
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 7 / 7