Lonnie Knows Everything

Author Archive

Oneduality is proud to introduce Event Horizon 2.0

by Lonnie on Apr.06, 2011, under Music, Uncategorized

Amazon: click here

Event Horizon 2.0

iTunes: click here

The new album features 25 tracks, including 12 songs off of the original album and 13 brand new songs to expand on the experience.

Event Horizon takes place in a dark dystopian future where freedom is a thing of the past. A dark force is hunting down the last remnants of individuality to destroy any resistance in its path.

This album is designed to provide an atmosphere so not all of the tracks are musical in nature, some of them are there to expand on the story as it unfolds in your imagination.

Listen now, buy links are at the top of this post :)

VN:F [1.9.3_1094]
Rating: +2 (from 2 votes)
1 Comment more...

Greg Geraldo – A bit late to the game

by Lonnie on Mar.25, 2011, under Uncategorized

You know, when I found out Greg died I was very seriously bummed because while I may not have known him as a stand up, he really did light up the roasts. His talent at the celebrity roasts really stood out and shown through, but I never knew him as a person and never really got to see much beyond a few specials.

So who is this guy? He’s a man who was born in December back in 1965, so if he didn’t have enough to complain about .. being buck naked mid december is certainly one of them.. but I digress..

Greg was born and raised in the queens, he certainly had a lot of things to tap into for his talent and ther’es no doubt that a successful self defence is picking on others.. Greg is amazing in that regard..

The thing I admire most about Greg and really the thing I’ll mis most about his loss is his quick wit and willingness to say things regardless.. he may not have been a widely known comedian, but he had balls of steel and he was all too happy to show it off .. Greg, you will be missed.. I know how late I am but really I am a guy with no voice any way so it doesn’t matter..  all too fitting that a man who is unknown salutes you ;)

VN:F [1.9.3_1094]
Rating: +1 (from 1 vote)

Incoming search terms:

  • the game with the guy who knows everything
Leave a Comment more...

Post to twitter using PHP without using oauth or the API

by Lonnie on Mar.15, 2011, under Geek Stuff, Nerd Stuff, Programming

So you want to post twitter updates and perhaps follow people using PHP but you’re annoyed with that oauth implementation because it makes life difficult? no problem

I’ve constructed a class that implements two functions, posting a status update and following an author .. This is purely for educational purposes and is intended to demonstrate the art of page scraping as well as the use of CURL for posting and retrieving data, I would of course never personally recommend using the code because I’m sure it’s some sort of violation of their TOS ;) so yeah.. don’t do it! ;) ;)

Some important things to note:

1. This will break if twitter changes their html up too much
2. This is probably a violation, so if you do use it, use it reasonably .. don’t submit a million requests per second, throttle it down =)
3. You’re using it at your own risk
4. It will post status updates as if you posted from a mobile device ( Ie. Mobile Web )

DOWNLOAD: Click to download example and class file

USAGE:

include(“tweeter.php”);

$tweeter = new tweeter();
$tweeter->login($username,$password);
$tweeter->post_tweet(“Hey, this is cool!”);
$tweeter->folllow(“oneduality”);

Contents of tweeter.php:

class tweet {
    var $user;
    var $token='';
    var $ch='';
    var $action='';

    // Logs in to twitter
    function login($user,$pass) {
        $this->user = $user;

        // Initialize CH
        if (!function_exists("curl_init")) die("This requires the CURL module, please install CURL for php.");
        $this->ch = curl_init();

        // Parse the login form
        curl_setopt($this->ch, CURLOPT_URL, "https://mobile.twitter.com/session/new");
        curl_setopt($this->ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($this->ch, CURLOPT_FAILONERROR, 1);
        curl_setopt($this->ch, CURLOPT_FOLLOWLOCATION, 1);
        curl_setopt($this->ch, CURLOPT_RETURNTRANSFER,1);
        curl_setopt($this->ch, CURLOPT_TIMEOUT, 5);
        curl_setopt($this->ch, CURLOPT_COOKIEJAR, $this->user . ".txt");
        curl_setopt($this->ch, CURLOPT_COOKIEFILE, $this->user . ".txt");
        curl_setopt($this->ch, CURLOPT_USERAGENT, "Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en) AppleWebKit/420+ (KHTML, like Gecko) Version/3.0 Mobile/1A543a Safari/419.3 ");
        $page = curl_exec($this->ch);

        $page = stristr($page, "

VN:F [1.9.3_1094]
Rating: +1 (from 1 vote)

Incoming search terms:

  • curl login to twitter without Oauth
  • php post to twitter 2011
  • tweeter api php oauth
  • post to twitter without oauth
  • twitter php api
  • Posting to Twitter using PHP
  • post to twitter php 2011
  • php post twitter without api
  • How to post to twitter with php and Curl without oAuth
  • post twitter via php 2011
Leave a Comment :, , , more...

Big news coming concerning the Brennan Eden accident

by Lonnie on Feb.17, 2011, under Uncategorized

I’m not sure what all I’m allowed to say right now but I will say stay tuned for some cool news about the situation and how I’m involved in this news.. Check back in a few weeks for details.

- Lonnie

VN:F [1.9.3_1094]
Rating: 0 (from 0 votes)

Incoming search terms:

  • brennan eden 2011
  • Brennan Eden accident in 2011
  • brennan eden Lonnie crash
Leave a Comment more...

Another reason to avoid MOM / Dydacomp

by Lonnie on Feb.10, 2011, under Uncategorized

Our client has been with Dydacomp for nearly four years now and have paid thousands of dollars for a support contract annually… But the support practically non-existant.

  1. When contacting support by phone, you can spend 30-60 minutes on the line and get someone who knows very little about the issue.
  2. If you e-mail about a problem, you face not getting a response at all, often when we contacted support via e-mail it would take 3-4 follow ups and a “Is anyone alive?” type message to even get a response at all, and then after that, more ignoring.
  3. If you have any opened issues they are working on and your support contract expires? they will slam the door shut until you renew.. ( our client has had one issue open since 2008, and another critical issue opened for weeks.. support contract ended and they stopped talking ).

So when I followed up asking about a pending issue despite our contract having ended .. I was told

“[name witheld] has been directed to not continue with this research until support renewal is in place.”

Our client’s perspective is “Why should we pay you another several grand to help us when you’ve not solved our issues? what are we paying for?”

Dydacomp’s Perspective “I can’t respond till you give us more money… and once you do, we’ll most likely ignore you again until renewal time comes up” ..

If you’ve had similar issues, lets hear it … and what, if anything… can we do about this?

VN:F [1.9.3_1094]
Rating: 0 (from 0 votes)

Incoming search terms:

  • Dydacomp
  • everything t
Leave a Comment more...



Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!

Visit our friends!

A few highly recommended friends...