Category Archives: javascript

I Don’t Like Being Told What I Can and Can’t Do

I was trying to update my Netflix autoplay bookmarklet since the autoplay feature that Netflix came out with is…not great. What I found was that Netflix tried to disable the console. Well, that became a more interesting problem to solve…and … Continue reading

Posted in javascript, Netflix, programming | Tagged | 3 Comments

Netflix added autoplay!

Hey I don’t need to update my bookmarklet any more. Actually, I was going to update it again, but I had an interview with them and they told me it was about to happen, so that was why I didn’t … Continue reading

Posted in javascript, Netflix | 7 Comments

Fixed Netflix Autoplay Bookmarklet!

As promised, here is the new fixed version of my bookmarklet: Please note I can no longer tell when the episode is almost over, so I am now just timing the entire length of play. You will now see a … Continue reading

Posted in javascript, Netflix, programming | 24 Comments

I Know My Netflix Bookmarklet Broken!

Yes folks, I know. I am sorry, the new player they released last week broke it. I too was sad to discover this, I mean I didn’t really make it for you all, I made it because I wanted it! … Continue reading

Posted in Geeks, javascript, Netflix, programming | 2 Comments

I Githubed myself!

(Githubbed?) Well, I finally took the time to throw my bookmarklet up on Github, I have some more projects I may add soon, but for now, if you want to fork my bookmarklet, I have it here: https://github.com/rtpmatt/Netflix-Autoplay-Bookmarklet Also, getting … Continue reading

Posted in GIT, Github, javascript, Netflix | 5 Comments

Netflix Autoplay Bookmarklet – With Multiple Season Support!

Not content to leave well enough alone, I was hacking on my bookmarklet some more. It can now handle crossing between seasons. There is also a bit less guessing going on now, so I am more confident in it. For … Continue reading

Posted in javascript, Netflix, programming | 47 Comments

Netflix Autoplay Bookmarklet!

I have updated this plugin, please use the new BETTER version – Click Here Netflix is awesome, most of the time the fact that I have to click the “Play next episode” button does not bother me, usually I am … Continue reading

Posted in javascript, Netflix, programming | 3 Comments

Cascading form require/validation

I ran into an interesting problem recently dealing with some complicated form validation. The issue was that we had several forms with fields that were required or optional based on if other inputs were filled out, with the requirements falling … Continue reading

Posted in javascript, jQuery, programming | 2 Comments

Duplicate IDs are baaaaaaaaaaaaaaad

If you are not already very aware, duplicate IDs in your markup are a very bad thing. Now, technically they will work fine in CSS, and can possibly even make it faster, BUT they WILL break your javascript. Basically when you have multiple elements with the same ID what the browser will do is unpredictable…Here is my solution to that problem. Continue reading

Posted in javascript, jQuery, programming | 4 Comments

Updates to my pub/sub

I have updated my pub/sub plugin.  The two changes are: It now uses the full words, publish, subscribe, and unsubscribe – this change was because with 1.5, jQuery now has a sub method which I do not want to overwrite. … Continue reading

Posted in javascript, jQuery, programming | Leave a comment