# Buttplug
> Spec and developer guide for Buttplug.io
This file contains links to documentation sections following the llmstxt.org standard.
## Additional Resources
- [STPIHKAL - Device Protocol Documentation](https://buttplug.io/llms-stpihkal.txt): Protocol reverse-engineering docs for supported hardware devices
- [Dev Blog](https://buttplug.io/llms-blog.txt): Development blog posts and project updates
## Table of Contents
- [Architecture](https://buttplug.io/docs/spec/architecture.md): The goals of the Buttplug Protocol are fairly simple:
- [Spec Changelog](https://buttplug.io/docs/spec/changelog.md): - Nomenclature change: Standard -> API
- [Deprecated Messages](https://buttplug.io/docs/spec/deprecated.md): The following messages are considered deprecated, either because they've been duplicated by new
- [Device Discovery Messages](https://buttplug.io/docs/spec/device_discovery.md): Messages relating to finding and getting information about devices connected to the system.
- [Device Information Messages](https://buttplug.io/docs/spec/device_information.md): Messages that convey information about devices currently connected to the system. All of the following messages are sent Server -> Client, either i...
- [Connection Messages](https://buttplug.io/docs/spec/identification.md): Messages used for client/server connection lifecycle, including handshake and disconnection.
- [The Buttplug Intimate Device Control Protocol](https://buttplug.io/docs/spec/index.md): Buttplug Protocol Specification v4
- [InputCmd, InputReading, and InputType](https://buttplug.io/docs/spec/input.md): Getting data from devices is done via InputCmd. Within this message we encode all possible input information, making it simple to add new functiona...
- [Messages](https://buttplug.io/docs/spec/messages.md): Messages are the core object for Buttplug communication.
- [OutputCmd and OutputType](https://buttplug.io/docs/spec/output.md): Controlling devices is done via OutputCmd. Within this message we encode all possible output information, making it simple to add new functionality.
- [Status Messages](https://buttplug.io/docs/spec/status.md): Messages relaying different statuses, including communication statuses, connection (ping), log
- [Stop Messages](https://buttplug.io/docs/spec/stop.md): Possibly the most important messages in the system, stop messages stop connected devices from doing
- [Foreword](https://buttplug.io/docs/dev-guide/foreword.md): A few words from the author of this guide and architect of Buttplug.
- [Quick Start](https://buttplug.io/docs/dev-guide/getting-started.md): As a potential Buttplug Developer, the first thing you should do is...
- [Buttplug Developer Guide](https://buttplug.io/docs/dev-guide/index.md): Buttplug Developer Guide v4
- [Butts Are Difficult](https://buttplug.io/docs/dev-guide/intro/buttplug-ethics.md): > "… Society has put a lot of evils in our brains that we need to transcend before we make out."
- [Getting Help](https://buttplug.io/docs/dev-guide/intro/getting-help.md): If you have any questions about Buttplug that aren't answered by this guide, or if there's something you don't understand, please feel free to reac...
- [About This Guide](https://buttplug.io/docs/dev-guide/intro/how-to-read.md): The Buttplug Developer Guide covers a few different topics.
- [Welcome to the Buttplug Dev Guide!](https://buttplug.io/docs/dev-guide/intro/introduction.md): Welcome to the Buttplug Developer Guide, your guide to developing applications with the Buttplug Intimate Hardware Control Library.
- [Client Devices](https://buttplug.io/docs/dev-guide/architecture/client-device-in-depth.md): When a Client is notified by the server that a device has connected, it will create a Client Device instance. These instances are accessible by dev...
- [Client Architecture](https://buttplug.io/docs/dev-guide/architecture/client-in-depth.md): 
- [The Intiface Ecosystem](https://buttplug.io/docs/dev-guide/architecture/intiface.md): Intiface® is the official name for the application system built on top of Buttplug by Nonpolynomial
- [Introduction](https://buttplug.io/docs/dev-guide/architecture/intro.md): In this section, we'll cover Buttplug's core protocol and architectures. Getting familiar with the terms here is important, as they will be used th...
- [Buttplug Protocol](https://buttplug.io/docs/dev-guide/architecture/protocol-in-depth.md): At the core of Buttplug is the Buttplug Protocol. This protocol is defined in the [Buttplug API Spec](https://buttplug-spec.docs.buttplug.io).
- [Server Architecture](https://buttplug.io/docs/dev-guide/architecture/server-in-depth.md): 
- [Buttplug Sessions and Components](https://buttplug.io/docs/dev-guide/architecture/sessions-and-components.md): 
- [Glossary](https://buttplug.io/docs/dev-guide/architecture/terms.md): Just in case you don't want to go digging through the architecture section again, here's a quick list of common terms.
- [API Basics](https://buttplug.io/docs/dev-guide/writing-buttplug-applications/api-basics.md): Assuming you're using a client written by the Buttplug Core Team, client implementations in Buttplug
- [Example Application](https://buttplug.io/docs/dev-guide/writing-buttplug-applications/application.md): Now that we've covered most of the basics of Buttplug, here's an example of a simple application. This application provides a simple interfaces for...
- [Connecting to a Buttplug Server](https://buttplug.io/docs/dev-guide/writing-buttplug-applications/connecting.md): Once you've created a connector, it's time to connect to a server!
- [Connectors](https://buttplug.io/docs/dev-guide/writing-buttplug-applications/connectors.md): The first thing to do when writing a Buttplug application is figuring out how to talk to a Buttplug
- [Device Control](https://buttplug.io/docs/dev-guide/writing-buttplug-applications/device-control.md): We've connected, we've enumerated, now it's time for the important stuff. Device Control!
- [Device Enumeration](https://buttplug.io/docs/dev-guide/writing-buttplug-applications/device-enum.md): Once the client and server are connected, they can start communicating about devices.
- [What Do Devices Do?](https://buttplug.io/docs/dev-guide/writing-buttplug-applications/device-info.md): We now know that devices are connected to the client, but how do we figure out what we can do with
- [Writing Buttplug Applications](https://buttplug.io/docs/dev-guide/writing-buttplug-applications/intro.md): Enough talk, let's get to Buttplugging!
- [A Cookbook for Your Butt](https://buttplug.io/docs/dev-guide/cookbook/intro.md): Now that you know the basics of Buttplug, it's time to move on to more advanced topics.
- [Logging](https://buttplug.io/docs/dev-guide/cookbook/logging.md): Buttplug exposes a few methods to receive log messages from the internal Rust library. These
- [Privacy Models](https://buttplug.io/docs/dev-guide/cookbook/privacy-models.md): The architecture of Buttplug strives to provide privacy for whomever may be running the server side of the software in remote connection situations...
- [Adding a New Buttplug Message](https://buttplug.io/docs/dev-guide/inflating-buttplug/adding-new-messages.md): Adding a New Buttplug Message
- [Adding to Buttplug](https://buttplug.io/docs/dev-guide/inflating-buttplug/intro.md): This section covers development on extension to the Buttplug ecosystem, including:
- [The History of Buttplug](https://buttplug.io/docs/dev-guide/appendices/history-of-buttplug.md): * 2007: _An Idea in a Presentation_
- [STPIHKAL Protocol Documentation Template Standardization](https://buttplug.io/docs/design-plans/2026-02-28-stpihkal-template-standardization.md): Standardize STPIHKAL protocol documentation into a brand-directory structure with structured YAML BLE profile blocks, auto-injected device config d...
- [Embedding](https://buttplug.io/docs/dev-guide/cookbook/connections/embedding.md): The Application Guide portion of this document focuses solely on connecting to Intiface Central in
- [Buttplug Client/Server Ping](https://buttplug.io/docs/dev-guide/cookbook/connections/ping.md): Ping timing is a property of a Buttplug session negotiated when a client connects to a server. Ping
- [Devices and Commands](https://buttplug.io/docs/dev-guide/cookbook/devices-and-commands/intro.md): In this section, we'll be covering how device command and control works. While this was mentioned briefly in the [Your First Buttplug App section](...
- [Buttplug and Games](https://buttplug.io/docs/dev-guide/cookbook/games/intro.md): This section will give an overview of integrating Buttplug with various game engines, or via mods to games. Every game is unique, so the amount of ...
- [Buttplug and Unity](https://buttplug.io/docs/dev-guide/cookbook/games/unity.md): This will be a relatively short chapter for now, because:
- [Buttplug and Unreal](https://buttplug.io/docs/dev-guide/cookbook/games/unreal.md): Buttplug support for Unreal Engine is provided by the community. The [List of Awesome Buttplug Projects](https://github.com/buttplugio/awesome-butt...
- [Adding a New Device Comm Manager](https://buttplug.io/docs/dev-guide/inflating-buttplug/devices/adding-device-comm-managers.md): Adding a New Device Comm Manager
- [Adding a New Device Protocol](https://buttplug.io/docs/dev-guide/inflating-buttplug/devices/adding-device-protocols.md): Adding a New Device Protocol
- [Device Configuration](https://buttplug.io/docs/dev-guide/inflating-buttplug/devices/device-configuration-file.md): When run with no configuration, Buttplug has no information about any devices and won't actually do anything. As this is a device control library, ...
- [Adding Devices Overview](https://buttplug.io/docs/dev-guide/inflating-buttplug/devices/intro.md): Devices are by far the most common addition to Buttplug. Between new devices that've just
- [Websocket Device Manager](https://buttplug.io/docs/dev-guide/inflating-buttplug/devices/websocket-device-manager.md): :::caution Feature Not Standardized
- [Adding New Programming Language Implementations via FFI](https://buttplug.io/docs/dev-guide/inflating-buttplug/implementations/adding-new-ffi-implementations.md): Adding New Programming Language Implementations via FFI
- [Writing a Buttplug Client](https://buttplug.io/docs/dev-guide/inflating-buttplug/implementations/writing-new-clients.md): Writing a Buttplug Client
- [Writing a Buttplug Server](https://buttplug.io/docs/dev-guide/inflating-buttplug/implementations/writing-new-servers.md): Writing a Buttplug Server
- [Client Architecture](https://buttplug.io/docs/dev-guide/inflating-buttplug/writing-new-clients/client-architecture.md)
- [Client Devices](https://buttplug.io/docs/dev-guide/inflating-buttplug/writing-new-clients/client-devices.md)
- [Intro](https://buttplug.io/docs/dev-guide/inflating-buttplug/writing-new-clients/intro.md)
- [Buttplug Development Docs](https://buttplug.io/docs/index.md): - [Buttplug Developer Guide](dev-guide/)
- [Plans for the future](https://buttplug.io/blog/2017-03-10-plans/index.md): So maybe you're wondering why I started a patreon now, well after that bandwagon has already set down the highway at full speed? Like I said in the...
- [Fleshlight Launch and Vorze A10 Cyclone on the Way](https://buttplug.io/blog/2017-03-14-fleshlight-launch-and-vorze-a10-cyclone-on-the-way/index.md): I now have a Kiiroo/Fleshlight Launch and a Vorze A10 Cyclone on there way to do. I have a feeling the Launch will just be the Kiiroo protocol as i...
- [Sex Toy Reverse Engineering Update](https://buttplug.io/blog/2017-03-15-sex-toy-reverse-engineering-update/index.md): A public patreon update, just to give everyone an idea of the kind of work that patreon dollars fun! (Well and also because this is a [metafetish.c...
- [Vorze Arrives Today!](https://buttplug.io/blog/2017-03-20-vorze-arrives-today/index.md): My Vorze ([http://vorzeinteractive.com)](http://vorzeinteractive.com)) arrives today! Mostly hacking this one due to interest from the RealTouchScr...
- [Well That Didn't Take Long!](https://buttplug.io/blog/2017-03-20-well-that-didnt-take-long/index.md): The problem with most sex toys is that no one is really trying to hide protocols these days, so once I get the hardware, this takes maybe half an h...
- [Defeat of the Battleship Cockrobot](https://buttplug.io/blog/2017-03-21-defeat-of-the-battleship-cockrobot/index.md): Reverse engineering and teardown of the Fleshlight Launch
- [Fleshlight Launch Shimming](https://buttplug.io/blog/2017-03-22-fleshlight-launch-shimming/index.md): So, after talking to some people about the Fleshlight Launch hacking last night, I realized that the Launch really could work with almost any ona-h...
- [The Yak Factory](https://buttplug.io/blog/2017-03-26-the-yak-factory/index.md): New blog post going up on buttplug.io tomorrow, but you get to read it first!--
- [New Toy](https://buttplug.io/blog/2017-03-30-new-toy/index.md): That's actually not mine (forwarding it to Internet of Dongs) but hey I can grab protocols before I reship. Vibratissimo Sette. Germany "underwear"...
- [Filming Wrapped for ButtPlugin with QDot Episode 001](https://buttplug.io/blog/2017-04-03-filming-wrapped-for-buttplugin-with-qdot-episode-001/index.md): Finally decided to stop waiting for all of the equipment I'd ordered to film, and just filmed yesterday. Did an unboxing-ish thing (since I unboxed...
- [Filming continues](https://buttplug.io/blog/2017-04-10-filming-continues/index.md): Re-filming the Fleshlight launch teardown since I wasn't really happy with the first run thru. Looks like it'll end up being nearly an hour when I'...
- [Buttplug with QDot Episode 0001 - Fleshlight Launch Unboxingish Analysis](https://buttplug.io/blog/2017-04-16-buttplugin-with-qdot-episode-0001-fleshlight-launch-unboxingish-analys/index.md): Oh my fucking god, I thought I was never going to get this finished. 43 minutes of hardcore buttplug engineering analysis about the Fleshlight Laun...
- [Buttplugin with qDot Now Available on Internet Archive](https://buttplug.io/blog/2017-04-19-buttplugin-with-qdot-now-available-on-internet-archive/index.md): For those that don't want to watch via Youtube, Buttplugin' with qDot is now available for download on Internet Archive! [https://archive.org/detai...
- [Metafetish Dev Log - Week of 2017-04-24](https://buttplug.io/blog/2017-04-26-metafetish-dev-log-week-of-2017-04-24/index.md): I just posted the first edition of my new weekly open source sex tech development log! Read all about what the open source buttplug development com...
- [Coming Soon - An Application I Have Yet to Name But That Involves the Buttplug](https://buttplug.io/blog/2017-04-30-coming-soon-an-application-i-have-yet-to-name-but-that-involves-the-buttplug/index.md): Last week, after 4+ years of trying to figure out some completely cross platform solution before even starting to build my sex toy server applicati...
- [Still Buttpluggin](https://buttplug.io/blog/2017-05-09-still-buttplugin/index.md): The code binge to get C#/Win10 buttplug out the door continues, and it's going really well! Support for the Fleshlight Launch, Vibrating Lovense To...
- [Artifact Builds of Buttplug C# for Win10 Now Available](https://buttplug.io/blog/2017-05-14-artifact-builds-of-buttplug-c-for-win10-now-available/index.md): I have set up the Appveyor CI to output ButtplugGUI installers on every build I make now. If you go to[https://ci.appveyor.com/project/qdot/buttpl...
- [State Of The Buttplugs 2017 05 22](https://buttplug.io/blog/2017-05-23-state-of-the-buttplugs-2017-05-22/index.md): First off, Hello new patrons! Thanks for the donations! They will be used for new buttplugage assuming I don't die from burnout soon.Now then, movi...
- [Buttplugin Away](https://buttplug.io/blog/2017-05-31-buttplugin-away/index.md): After taking a break this past long weekend (helped immensely with some of the twinges of burnout I was getting), I'm back at it on trying to get a...
- [Metafetish Now Has Discourse Forums](https://buttplug.io/blog/2017-06-03-metafetish-now-has-discourse-forums/index.md): [https://metafetish.club](https://metafetish.club)Just in case the slack, the blog, and the patreon updates weren't enough for you, now we have a D...
- [New Episode Of Buttplugin With Qdot Buttplug Software Alpha Demo](https://buttplug.io/blog/2017-06-03-new-episode-of-buttplugin-with-qdot-buttplug-software-alpha-demo/index.md): Episode 1 production time: 3 weeksEpisode 2 production time: 2 hours
- [Who Wants To Help Review The Buttplug Protocol Spec](https://buttplug.io/blog/2017-06-08-who-wants-to-help-review-the-buttplug-protocol-spec/index.md): [https://metafetish.club/t/buttplug-standard-document-review-thread/31](https://metafetish.club/t/buttplug-standard-document-review-thread/31)I jus...
- [This Is The Buttplug That Never Ends It Just Goes On And On My Friiiiends](https://buttplug.io/blog/2017-06-19-this-is-the-buttplug-that-never-ends-it-just-goes-on-and-on-my-friiiiends/index.md): We're now 8 weeks out from the first commit in the buttplug-csharp repo. Someday we'll get to a release. Someday. Since the last update:
- [New Patreon Tier Images](https://buttplug.io/blog/2017-06-29-new-patreon-tier-images/index.md): Thanks to Astolpho ([http://patreon.com/dawnchapel),](http://patreon.com/dawnchapel),) I now have awesome tier images for my Patreon page and videos!
- [Buttplug Development Update](https://buttplug.io/blog/2017-07-05-buttplug-development-update/index.md): Funny how a month can fly by without noticing. I just made a quick update on metafetish about the current state of the buttplug repos, after realiz...
- [Checking In](https://buttplug.io/blog/2017-07-14-checking-in/index.md): Hey everyone! So I just learned that Patreon has exit surveys for patrons leaving your campaign. Last month, a couple of people left citing "The cr...
- [A Launch Player While You Wait For Syncydink](https://buttplug.io/blog/2017-07-16-a-launch-player-while-you-wait-for-syncydink/index.md): Around the time I started Buttplug, I met up with someone on the Milovana web tease forums, where a good chunk of the anime Cock Hero community han...
- [Buttplug Syncydink Preview 1](https://buttplug.io/blog/2017-07-17-buttplug-syncydink-preview-1/index.md): Ok so I said I'd have it done by the end of the weekend and I did!I just finished a test of Buttplug (on windows 10) + Syncydink (on iPhone!), and ...
- [Buttplug Scriptplayer Updates](https://buttplug.io/blog/2017-07-24-buttplug-scriptplayer-updates/index.md): First off, there's now a new version of ScriptPlayer up, with more expansive Buttplug support. [https://github.com/FredTungsten/ScriptPlayer/releas...
- [More Buttplug Fox Images Stickers](https://buttplug.io/blog/2017-07-28-more-buttplug-fox-images-stickers/index.md): So I know everyone is all thinking "Hey qDot, instead of actually finishing software, why don't you just get some more stickers made."Well, you tho...
- [Qa For Real This Time](https://buttplug.io/blog/2017-08-03-qa-for-real-this-time/index.md): Hello $3+ patrons! So way back when I started this Patreon, I said I was gonna do Q&A videos, answering questions for people that paid $3 or more a...
- [Buttplug C 010 Released](https://buttplug.io/blog/2017-08-08-buttplug-c-010-released/index.md): Finally gave up polishing. Ship it.[https://github.com/metafetish/buttplug-csharp/releases/tag/0.1.0](https://github.com/metafetish/buttplug-csharp...
- [Buttplug C Syncydink Tutorials](https://buttplug.io/blog/2017-08-11-buttplug-c-syncydink-tutorials/index.md): I've written up some quick tutorials to give an overview of what's currently available in Buttplug C# 0.1.0 and Syncydink.Buttplug C# 0.1.0:
- [Buttplug Js Aka We Now Support Mac Linux Android Chromeos](https://buttplug.io/blog/2017-08-20-buttplug-js-aka-we-now-support-mac-linux-android-chromeos/index.md): As of yesterday, I managed to get the javascript web technologies version of the Buttplug Server done. This is now integrated into Syncydink:[https...
- [Vice Motherboard On Buttplug](https://buttplug.io/blog/2017-08-20-vice-motherboard-on-buttplug/index.md): We're in Vice: I've just updated the Syncydink tutorial, because thanks to some nudging from a new patreon on here, I just finished some fixes and we now work on ...
- [Buttplug Game Vibration Router](https://buttplug.io/blog/2017-08-23-buttplug-game-vibration-router/index.md): A couple of weekends ago, I got the stupid idea of "Hey. Rez Infinite came out. Wouldn't it be funny if I could make it work with the original USB ...
- [Metafetish Dev Log Week Of 2017 08 28](https://buttplug.io/blog/2017-08-28-metafetish-dev-log-week-of-2017-08-28/index.md): Just posted a new Dev Log on the blog! Now that we've got releases out, going to try to get back into a better writing cadence so we're not develop...
- [And Now We Have A Discord Server Too](https://buttplug.io/blog/2017-09-02-and-now-we-have-a-discord-server-too/index.md): Yes ok I may have a slight chat protocol hoarding problem.Invite Link: [https://discord.gg/BGNjpbf](https://discord.gg/BGNjpbf)
- [Support For New Lovense Hush Toys](https://buttplug.io/blog/2017-09-04-support-for-new-lovense-hush-toys/index.md): Just a heads up since Lovense Hush toys seem to be pretty popular.We had a user show up on the Discord today reporting a Hush toy that would not co...
- [Metafetish Dev Log For The Week Of 2018 09 05](https://buttplug.io/blog/2017-09-05-metafetish-dev-log-for-the-week-of-2018-09-05/index.md): New dev log post. Nothing too exciting since I usually post most of this kinda of info to patreon for patrons in real time, but hopefully helpful: Took a bit of a diversion from buttplug/syncydink over the past few days.Having finally gotten sick of reading all of the reports of people having ...
- [Fleshlight Launch Running The Firmware Version It Shouldve Been Running All](https://buttplug.io/blog/2017-09-12-fleshlight-launch-running-the-firmware-version-it-shouldve-been-running-all/index.md):
- [Google Chrome 61 On Linux Now Works With Fleshlight Launch Lovense Hush Plug](https://buttplug.io/blog/2017-09-12-google-chrome-61-on-linux-now-works-with-fleshlight-launch-lovense-hush-plug/index.md): I just updated to Chrome 61 on my Debian box, and whatever bug was holding up bluetooth usage on Chrome on Linux is fixed! The Fleshlight Launch no...
- [September Qa](https://buttplug.io/blog/2017-09-13-september-qa/index.md): It's time for this month's Q&A post! I keep saying these are going to be videos, but has yet to happen, so this month I think I'll be a bit more re...
- [Buttplug C V011 Released](https://buttplug.io/blog/2017-09-15-buttplug-c-v011-released/index.md): Buttplug C# 0.1.1 is out! Get it at[https://github.com/metafetish/buttplug-csharp/releases/tag/0.1.1](https://github.com/metafetish/buttplug-csharp...
- [Buttplug C V012 Released](https://buttplug.io/blog/2017-09-16-buttplug-c-v012-released/index.md): Our first emergency bugfix! Found an issue in the updater right after I released v0.1.1, fixed that and pushed out v0.1.2 shortly afterward last ni...
- [Buttplug Playground Aka The Launch Manual Control App Everyone Wanted](https://buttplug.io/blog/2017-10-02-buttplug-playground-aka-the-launch-manual-control-app-everyone-wanted/index.md): [https://buttplug.world/playground](https://buttplug.world/playground)So far, all of the applications for Buttplug has been about outside media. Mo...
- [October Qa](https://buttplug.io/blog/2017-10-02-october-qa/index.md): It's time for this month's Q&A! If you've got any questions for me about Metafetish, Buttplug, Sex Tech, Me, The Universe, etc..., post them in the...
- [Buttplug Update](https://buttplug.io/blog/2017-10-11-buttplug-update/index.md): Ok, time to make an "I'm not dead" update.I'm not dead.
- [Standalone Haptic Playback And Toy Simulator In Syncydink](https://buttplug.io/blog/2017-10-15-standalone-haptic-playback-and-toy-simulator-in-syncydink/index.md): In lieu of video recording, I guess my brain decided it wasn't done futzing with web programming. I ended up making improvements to the syncydink h...
- [Buttpluggin With Qdot Windows Websocket Server Tutorial](https://buttplug.io/blog/2017-10-22-buttpluggin-with-qdot-windows-websocket-server-tutorial/index.md): SEE I TOLD YOU I'D GET BACK TO MAKING VIDEOS.Even if they are pretty spectacularly boring.
- [Survey What Would You Like To Improve On Current Software](https://buttplug.io/blog/2017-10-25-survey-what-would-you-like-to-improve-on-current-software/index.md): While filming the Buttplug Websocket tutorial, I realized how painful it is to do the first SSL setup in the websocket server. On top of that, we'r...
- [Update On Windows 7 Support](https://buttplug.io/blog/2017-10-26-update-on-windows-7-support/index.md): Ok, the survey has only been up a day, but the Windows 7 community has definitely been vocal. :)I've created a github issue for possible Windows 7 ...
- [Ok Fine](https://buttplug.io/blog/2017-10-27-ok-fine/index.md): Taking a shot at Win 7 support. Don't get too excited, it may take a while to make this anywhere near user friendly.
- [Luxuria Suburbia Buttplug](https://buttplug.io/blog/2017-10-28-luxuria-suburbia-buttplug/index.md): Holy shit, the first Buttplug based stunt hack that didn't come from our own dev channels!A developer I used to work with on Rez Trancevibrator stu...
- [The Shit I Do For You People Win7 Launch Control Demo](https://buttplug.io/blog/2017-10-29-the-shit-i-do-for-you-people-win7-launch-control-demo/index.md): There ya go. Proof of concept demo using the Launch with Win 7 on a laptop. No VM, no tricks, this is just normal ol' Windows 7 on a normal ol' lap...
- [November Qa](https://buttplug.io/blog/2017-11-09-november-qa/index.md): Ok. Time for that part of the month where you ask questions and I answer.ASK.
- [Buttplug Win7 Bluetooth Le Server Alpha 1](https://buttplug.io/blog/2017-11-12-buttplug-win7-bluetooth-le-server-alpha-1/index.md): Here we go.[https://ci.appveyor.com/api/buildjobs/3lohva12t662uun2/artifacts/ButtplugNodeServer-1.0.9.7z](https://ci.appveyor.com/api/buildjobs/3lo...
- [New Scriptplayer V103 Release Now With Whirligig Support](https://buttplug.io/blog/2017-11-12-new-scriptplayer-v103-release-now-with-whirligig-support/index.md): [https://github.com/FredTungsten/ScriptPlayer/releases](https://github.com/FredTungsten/ScriptPlayer/releases)ScriptPlayer 1.0.3 was released this ...
- [Buttplug Development Updates](https://buttplug.io/blog/2017-11-21-buttplug-development-updates/index.md): It's been a little quiet around here lately, so I figured I'd share what's going on in development.- ET-312 Estim serial protocol support is now in...
- [December Qa](https://buttplug.io/blog/2017-12-04-december-qa/index.md): Another month, another Q&A. Roping in the $1 tier for this month because it's Christmas.So, if you got questions about metafetish/buttplug/life/etc...
- [Patreon Fee Model Etc](https://buttplug.io/blog/2017-12-11-patreon-fee-model-etc/index.md): Just wanted to say, anyone that does not want to deal with the new Patreon fee model, no hard feelings if you stop support for my campaign. What I ...
- [Patreon No Longer Implementing Fee Change](https://buttplug.io/blog/2017-12-13-patreon-no-longer-implementing-fee-change/index.md): Yet another quick non-buttplug-related update, but it's important.[https://blog.patreon.com/not-rolling-out-fees-change/](https://blog.patreon.com/...
- [December Buttplug Update](https://buttplug.io/blog/2017-12-26-december-buttplug-update/index.md): Thanks to the holidays I've been rather quiet, but that doesn't mean work isn't happening!However, that also doesn't mean the work is very interest...
- [2018 Year Of The Buttplug](https://buttplug.io/blog/2018-01-02-2018-year-of-the-buttplug/index.md): I mean, 2017 was too, but nothing saying that we can't have multiple years with that as the theme.Working on lots of documentation right now, as we...
- [January Qa](https://buttplug.io/blog/2018-01-12-january-qa/index.md): Just realized I forgot to post a Q&A at the beginning of the month, so if you've got any questions, as usual, feel free to post them here.
- [Buttplug C 020 And Buttplug Js 050 Released](https://buttplug.io/blog/2018-01-22-buttplug-c-020-and-buttplug-js-050-released/index.md): Fucking. Finally.It's been 4 months since the last release of the C# applications and library, which is just way the fuck too long for a small proj...
- [Buttplug Development Video Update](https://buttplug.io/blog/2018-01-29-buttplug-development-video-update/index.md): Here's a quick update about what's going on around Buttplug HQ (aka my office in my house)We released Buttplug C# 0.2 and Buttplug-js 0.5 last week...
- [Buttplug Tutorial Beta Now Live Buttplug Js V060 Released](https://buttplug.io/blog/2018-02-05-buttplug-tutorial-beta-now-live-buttplug-js-v060-released/index.md): [https://metafetish.github.io/buttplug-tutorial](https://metafetish.github.io/buttplug-tutorial)Been spending the last few weeks putting this toget...
- [Buttplug Interactive Tutorial Released](https://buttplug.io/blog/2018-02-17-buttplug-interactive-tutorial-released/index.md): [https://buttplug.world/tutorial](https://buttplug.world/tutorial)Calling the first version done, 'cause otherwise it's never gonna be. I suspect m...
- [Game Vibration Router Tutorial Demo Video](https://buttplug.io/blog/2018-02-18-game-vibration-router-tutorial-demo-video/index.md): Here's an unlisted version of the GVR Tutorial. Trying to get some feedback before I mark it public, so let me know what you think!
- [Buttplug Win7 Server Alpha 2](https://buttplug.io/blog/2018-02-19-buttplug-win7-server-alpha-2/index.md): [https://ci.appveyor.com/api/buildjobs/f54kxtmhtmprm62n/artifacts/ButtplugNodeServer-1.0.10.7z](https://ci.appveyor.com/api/buildjobs/f54kxtmhtmprm...
- [Gvr Tutorial Video Update](https://buttplug.io/blog/2018-02-19-gvr-tutorial-video-update/index.md): Re-did the responsibilities part of the video, shaved a good 30 seconds off of it and took a bit less combative tone. Good chance this will be the ...
- [Blooper Reel Qdot Being A Dumbass With Buttplugs](https://buttplug.io/blog/2018-02-23-blooper-reel-qdot-being-a-dumbass-with-buttplugs/index.md): YES. I HAVE SHIPPED A TIER REWARD THAT IS SOMETHING OTHER THAN Q&A.Here's some no-context b-roll from an upcoming Will It Buttplug video. Enjoy.
- [Gvr Tutorial Now Live](https://buttplug.io/blog/2018-02-23-gvr-tutorial-now-live/index.md): Tutorial video is up! Only announcing it here and in chat groups for now, as I'm working on the Will It Buttplug episode for Rez Infinite that will...
- [Will It Buttplug Trailer](https://buttplug.io/blog/2018-02-24-will-it-buttplug-trailer/index.md): I decided to make a trailer for my new Video Game Review series. Lemme know what you think!
- [Will It Buttplug Rez Infinite](https://buttplug.io/blog/2018-02-26-will-it-buttplug-rez-infinite/index.md): The first episode of Will It Buttplug is done! Covers Rez Infinite and getting it connected to the Rez Trancevibrator.Next up, a teardown video of ...
- [Gvr On Vice Motherboard](https://buttplug.io/blog/2018-03-01-gvr-on-vice-motherboard/index.md): The Will It Buttplug video made it on Vice!More videos coming soon. :D
- [Buttplug C V021 And Buttplug Js V061 Released](https://buttplug.io/blog/2018-03-09-buttplug-c-v021-and-buttplug-js-v061-released/index.md): Software update time! Just released a new version of Buttplug C# with some bugfixes, toy support additions, and upgraded Game Vibration Router.[htt...
- [New Metafetish Discord Invite Link](https://buttplug.io/blog/2018-03-09-new-metafetish-discord-invite-link/index.md): [https://discord.gg/t9g9RuD](https://discord.gg/t9g9RuD)Our old invite link was set to kick people who didn't say anything if they disconnected, bu...
- [Yiffspot Teledildonics Via Buttplug](https://buttplug.io/blog/2018-03-17-yiffspot-teledildonics-via-buttplug/index.md): If nothing else, you're paying me for these post titles, right? :)Well, this is definitely not how I planned on spending the past couple of weeks, ...
- [New Easy To Remember Urls For Buttplug Stuff](https://buttplug.io/blog/2018-03-29-new-easy-to-remember-urls-for-buttplug-stuff/index.md): Finally spent some time learning to make subdomain redirects in AWS, so now we have:Discord: [https://discord.buttplug.io](https://discord.buttplug...
- [New Buttplug Website In Beta](https://buttplug.io/blog/2018-04-02-new-buttplug-website-in-beta/index.md): [https://io.buttplug.world](https://io.buttplug.world)After spending most of GDC going "Yeah I make some sex toy software but don't look at the web...
- [Project Updates And April Qa](https://buttplug.io/blog/2018-04-02-project-updates-and-april-qa/index.md): Welp, we've now reached me being on patreon for a whole year! Thanks to everyone for sticking with me so far.Trying to get back in the swing of doi...
- [Buttplug Android App Yes Really](https://buttplug.io/blog/2018-04-22-buttplug-android-app-yes-really/index.md): I'm as shocked as you are. Someone just showed up to our discord server, mentioned trying to build an android app, and then all of the sudden it wa...
- [New Buttplug Website Is Up](https://buttplug.io/blog/2018-04-25-new-buttplug-website-is-up/index.md): [https://buttplug.io](https://buttplug.io)After 1.5 months or so of work, the new, simpler, cleaner Buttplug website is live. Hopefully this will b...
- [Buttplug And Oculus Go](https://buttplug.io/blog/2018-05-02-buttplug-and-oculus-go/index.md): I picked up an Oculus Go yesterday, and will be spending the next while testing it with Buttplug. The Go runs android, and has a built in browser b...
- [New Version Of Buttplug Playground Is Live](https://buttplug.io/blog/2018-05-03-new-version-of-buttplug-playground-is-live/index.md): [https://buttplug.world/playground](https://buttplug.world/playground)Finally finished overhauling Playground with Typescript 2.8, Vuetify, Webpack...
- [Nipple Blenders Are Hopefully On The Way](https://buttplug.io/blog/2018-05-07-nipple-blenders-are-hopefully-on-the-way/index.md): Since you're all paying me, here's a bit of pre-release info, and also some information about what the money gets used for.!!!!! I FINALLY FOUND A ...
- [Nippleblenders Have Arrived](https://buttplug.io/blog/2018-05-14-nippleblenders-have-arrived/index.md): AAAAAHHHHHH I FINALLY HAVE A VORZE UFO SA
- [Buttplug C 023 Released](https://buttplug.io/blog/2018-05-24-buttplug-c-023-released/index.md): [https://github.com/metafetish/buttplug-csharp/releases/tag/0.2.3](https://github.com/metafetish/buttplug-csharp/releases/tag/0.2.3
Big)
- [Translating Buttplug](https://buttplug.io/blog/2018-05-24-translating-buttplug/index.md): Now that the Buttplug website is in order and I have some vague ideas about software direction, I'm looking at getting translation work done. I *th...
- [Vorze Ufo Sa Video Blooper](https://buttplug.io/blog/2018-05-30-vorze-ufo-sa-video-blooper/index.md): I'm currently filming the Buttpluggin' with qDot UFO SA overview video. I was trying to record some of the movies that came on the demo disc, but I...
- [What The Hell Do Yall Want Anyways](https://buttplug.io/blog/2018-05-30-what-the-hell-do-yall-want-anyways/index.md): It's been another crazy month of patrons joining, leaving, and shifting levels, so let's see what the temperature is here.What would you like to se...
- [Buttpluggin With Qdot Unboxing And Analysis Vorze Ufo Sa Nippleblender](https://buttplug.io/blog/2018-05-31-buttpluggin-with-qdot-unboxing-and-analysis-vorze-ufo-sa-nippleblender/index.md): Finally, patrons actually getting a prerelease of a video!Video is done but I'm still working on the description and stuff, so you get a whole 12+ ...
- [What's qDot Up To This Week? (2018-06-08 Edition)](https://buttplug.io/blog/2018-06-08-whats-qdot-up-to-this-week-2018-06-08-edition/index.md): Ok, gonna try a new thing. Weekly updates! Just so you have some idea what's going on, since you're like, you know, paying me.These will probably g...
- [What's qDot Up To This Week? (2018-06-15 Edition)](https://buttplug.io/blog/2018-06-15-whats-qdot-up-to-this-week-2018-06-15-edition/index.md): Dear god, if I never talk about web browsers again it will be too soon.Too bad that's my dayjob. >.>
- [Automated Motion Analysis Research](https://buttplug.io/blog/2018-06-19-automated-motion-analysis-research/index.md): Fun new toy showed up today, as there are lots of computer vision papers and tools coming out of a big CV conference this week: Ok, guess we're sticking to Fridays for weekly updates. Or maybe Saturdays, as is the case now.First off... If you ever wonder what I'm doing with ...
- [What's qDot Up To This Week? (2018-06-29 Edition)](https://buttplug.io/blog/2018-06-29-whats-qdot-up-to-this-week-2018-06-29-edition/index.md): Javascript, javascript, and more javascript. Well, ok, it's actually all Typescript. But you get the idea.buttplug-js has been lagging behind our C...
- [Syncydink Beta](https://buttplug.io/blog/2018-06-30-syncydink-beta/index.md): [https://beta.syncydink.buttplug.world](https://beta.syncydink.buttplug.world)Here's the URL for the beta of the upgraded Syncydink. Outside of the...
- [Syncydink Beta One Extra Thing](https://buttplug.io/blog/2018-06-30-syncydink-beta-one-extra-thing/index.md): You can hit Escape on a keyboard to open and close the side panel now. This will be extremely important if you have a movie that's larger than the ...
- [Syncydink V003 Is Now Live](https://buttplug.io/blog/2018-07-04-syncydink-v003-is-now-live/index.md): May god have mercy on us all.Syncydink v0.0.3 is now live, making it the first major update of Syncydink since December 2017. There's still not muc...
- [Totos Africa Played On A Bluetooth Speaker Onahole](https://buttplug.io/blog/2018-07-07-totos-africa-played-on-a-bluetooth-speaker-onahole/index.md): Your patreon dollars, hard at work.My bluetooth speaker onahole arrived.
- [What's qDot Up To This Week? (2018-07-06 Edition)](https://buttplug.io/blog/2018-07-08-whats-qdot-up-to-this-week-2018-07-06-edition/index.md): A couple of days late, but I'll blame that on the Steam sale selling me Metal Gear Solid 5 for cheap and getting me addicted to it. Sure.*attaches ...
- [Youtube Access In Syncydink Beta](https://buttplug.io/blog/2018-07-10-youtube-access-in-syncydink-beta/index.md): [https://beta.syncydink.buttplug.world/](https://beta.syncydink.buttplug.world/)Below the file entry on the syncydink side panel, there is now a pl...
- [What's qDot Up To This Week? (2018-07-13 Edition)](https://buttplug.io/blog/2018-07-15-whats-qdot-up-to-this-week-2018-07-13-edition/index.md): A rather quiet week due to some personal stuff getting in the way, but still got some work done!Youtube Embeds are still in beta on Syncydink. The ...
- [Buttpluggin With Qdot Will It Buttplug Crimsonland](https://buttplug.io/blog/2018-07-21-buttpluggin-with-qdot-will-it-buttplug-crimsonland/index.md): Yay, a Buttpluggin' with qDot video made in an evening instead of multiple weeks! A review of how well 10tons Ltd's Crimsonland (which I randomly p...
- [Poll Phasing Out The Kiiroo Emulator](https://buttplug.io/blog/2018-07-21-poll-phasing-out-the-kiiroo-emulator/index.md): Most of the crash reports we get from Buttplug C# these days have to do with the Kiiroo Emulator. For those not aware, this application simulates t...
- [What's qDot Up To This Week? (2018-07-20 Edition)](https://buttplug.io/blog/2018-07-22-whats-qdot-up-to-this-week-2018-07-20-edition/index.md): Videos and toy support!We had a couple of questions about toy support this week that we're now getting filled in. Turns out the Kiiroo Onyx 1 was n...
- [What's qDot Up To This Week? (2018-07-27 Edition)](https://buttplug.io/blog/2018-07-30-whats-qdot-up-to-this-week-2018-07-27-edition/index.md): As the weekly updates drift farther from the date they're supposed to be on...This week has mostly been working with some other developers on what ...
- [August Monthly Qdot Qa](https://buttplug.io/blog/2018-08-02-august-monthly-qdot-qa/index.md): I haven't sent out an official one of these in a while, so it's time to get started again as I try to vaguely adhere to my own tier rewards.Anyone ...
- [What's qDot Up To This Week? (2018-08-03 Edition)](https://buttplug.io/blog/2018-08-06-whats-qdot-up-to-this-week-2018-08-03-edition/index.md): When it rains, it pours.Even though no one may really notice. >.>
- [What's qDot Up To This Week? (2018-08-10 Edition)](https://buttplug.io/blog/2018-08-12-whats-qdot-up-to-this-week-2018-08-10-edition/index.md): It's been a week of me being angry at me from a year ago, mostly.Work on cleaning the Buttplug C# codebase continues. I'm currently trying to get a...
- [The End Of The 268 Teledildonics Patent](https://buttplug.io/blog/2018-08-16-the-end-of-the-268-teledildonics-patent/index.md): I took a break from being productive on Buttplug to write a long, rambling blog post about the expiration of the 268 Teledildonics patent, which ha...
- [Qdot Bbc 5live Interview On Teledildonics](https://buttplug.io/blog/2018-08-19-qdot-bbc-5live-interview-on-teledildonics/index.md): I did a quick interview with BBC 5Live. At 3:45am UK time, heh. Luckily it was 7:45pm for me. Above link is my recording of it, please don't redist...
- [Whats Qdot Up To This Week 2018 08 17 24 Edition](https://buttplug.io/blog/2018-08-26-whats-qdot-up-to-this-week-2018-08-17-24-edition/index.md): Well at least I have a good excuse for the first 2 week gap I've had in these updates, heh.As you are probably aware because I haven't (been allowe...
- [What's qDot Up To This Week? (2018-08-31 Edition)](https://buttplug.io/blog/2018-08-31-whats-qdot-up-to-this-week-2018-08-31-edition/index.md): An update! On time!If you guessed that I don't have much to say, congratulations, you're right!
- [What's qDot Up To This Week? (2018-09-07 Edition)](https://buttplug.io/blog/2018-09-10-whats-qdot-up-to-this-week-2018-09-07-edition/index.md): Being in pain, mostly. But in a good way. But not in THAT good way.When I started working on Buttplug in earnest back in April 2017, I kinda figur...
- [What's qDot Up To This Week? (2018-09-21 Edition)](https://buttplug.io/blog/2018-09-21-whats-qdot-up-to-this-week-2018-09-21-edition/index.md): Wow. Completely flaked on an update last week. I blame Yakuza 0.The good news is, I have finished Yakuza 0 and resumed doing other things with my l...
- [What's qDot Up To This Week? (2018-09-28 Edition)](https://buttplug.io/blog/2018-10-02-whats-qdot-up-to-this-week-2018-09-28-edition/index.md): Well I've got one hell of a code katamari going on here.Buttplug C# 0.3.0 continues to trudge slowly toward release, gaining more features and fixe...
- [What's qDot Up To This Week? (2018-10-12 Edition)](https://buttplug.io/blog/2018-10-14-whats-qdot-up-to-this-week-2018-10-12-edition/index.md): Yeah ok at this point it's just time to admit I didn't know what I was doing with C# a year ago and now I'm basically rewriting half of the project...
- [What's qDot Up To This Week? (2018-10-26 Edition)](https://buttplug.io/blog/2018-10-29-whats-qdot-up-to-this-week-2018-10-26-edition/index.md): Being an old man that yells at clouds, mostly.For some reason I decided to go all "IT'S TIME FOR SOME GAME THEORY" on twitter this weekend which en...
- [Buttplug C 030 Released](https://buttplug.io/blog/2018-11-03-buttplug-c-030-released/index.md): You ever see someone do something dumb and be all "oh yeah I'd never do that thing" then you totally do that thing?I did that thing.
- [What's qDot Up To This Week? (2018-11-09 Edition)](https://buttplug.io/blog/2018-11-11-whats-qdot-up-to-this-week-2018-11-09-edition/index.md): Well, after releasing Buttplug C# 0.3.0, someone found a bug, so I released 0.3.1 this week! Yay releases that take less than 5 months!I'm also tal...
- [What's qDot Up To This Week? (2018-11-23 Edition)](https://buttplug.io/blog/2018-11-25-whats-qdot-up-to-this-week-2018-11-23-edition/index.md): Surviving. Barely.SLSA in Toronto went great. It was my first humanities conferences and I only barely embarrassed myself like, 3 or 4 times, max. ...
- [What's qDot Up To This Week? (2018-11-30 Edition)](https://buttplug.io/blog/2018-12-03-whats-qdot-up-to-this-week-2018-11-30-edition/index.md): The end of the maintenance period is in sight! I think! Maybe!buttplug-js 0.9.0 went out this weekend, putting the JS codebase in line with Buttplu...
- [Where the Hell is qDot? (2018-12-14 Edition)](https://buttplug.io/blog/2018-12-16-where-the-hell-is-qdot-2018-12-14-edition/index.md): Burnt out, apparently.Not a lot to update on at the moment. I seem to have hit a burnout wall pretty hard a couple of weeks ago and am working my w...
- [Buttpluggin With Qdot Qdot Speaks Arse Elektronika 2007](https://buttplug.io/blog/2018-12-21-buttpluggin-with-qdot-qdot-speaks-arse-elektronika-2007/index.md): One of the things I've been horrible about is archiving my past presentation work. Now that I've got a youtube channel, I'm aiming to both fix that...
- [Buttpluggin With Qdot Live Mk312 Build](https://buttplug.io/blog/2018-12-30-buttpluggin-with-qdot-live-mk312-build/index.md): I'm trying to build an MK312 on livestream. Come check it out! I will probably burn myself on live video!
- [More Mk312 Bt Building Live](https://buttplug.io/blog/2019-01-02-more-mk312-bt-building-live/index.md): Populating board with capacitors. Come check it out!
- [Mk312 Construction Streaming Live](https://buttplug.io/blog/2019-01-05-mk312-construction-streaming-live/index.md): More MK-312 Builds happening now!
- [Does qDot Even Still Post Weekly Updates? (2019-01-04 Edition)](https://buttplug.io/blog/2019-01-07-does-qdot-even-still-post-weekly-updates-2019-01-04-edition/index.md): Ostensibly, yes.
- [What's qDot Up To This Week? (2019-01-21 Edition)](https://buttplug.io/blog/2019-01-21-whats-qdot-up-to-this-week-2019-01-21-edition/index.md): New year, new post day because I do most of my work on weekends so doing updates on Mondays seems a little better.
- [What's qDot Up To This Week? (2019-01-28 Edition)](https://buttplug.io/blog/2019-01-28-whats-qdot-up-to-this-week-2019-01-28-edition/index.md): Ok yeah Monday works out much better for newsletters. Less panicking about what I'll get done on the weekend after writing it, more panicking about...
- [What's qDot Up To This Week? (2019-02-04 Edition)](https://buttplug.io/blog/2019-02-04-whats-qdot-up-to-this-week-2019-02-04-edition/index.md): BUTT SABER
- [What's qDot Up To This Week? (2019-02-11 Edition)](https://buttplug.io/blog/2019-02-11-whats-qdot-up-to-this-week-2019-02-11-edition/index.md): I wish I had another Butt Saber to talk about here but nope, we're back to library updates.
- [What's qDot Up To This Week? (2019-02-25 Edition)](https://buttplug.io/blog/2019-02-25-whats-qdot-up-to-this-week-2019-02-25-edition/index.md): Being sick for at least half of it. :(
- [What's qDot Up To This Week? (2019-03-04 Edition)](https://buttplug.io/blog/2019-03-06-whats-qdot-up-to-this-week-2019-03-04-edition/index.md): AHHHH I LEAVE FOR CMU IN 2 WEEKS AHHHHHHHHHHH
- [Intiface Desktop 001](https://buttplug.io/blog/2019-03-16-intiface-desktop-001/index.md): Welp. Here we go:
- [Intiface Desktop 001 Maybe Wait On That](https://buttplug.io/blog/2019-03-16-intiface-desktop-001-maybe-wait-on-that/index.md): Ok well it turns out the code signing thing is going to be a bigger problem than I thought on Mac and Windows. My initial tests worked because I wa...
- [What's qDot Up To This Week? (2019-03-18 Edition)](https://buttplug.io/blog/2019-03-20-whats-qdot-up-to-this-week-2019-03-18-edition/index.md): I'm in Pittsburgh! Got in on Sunday. Spending the week working on my new sex tech workshop curriculum, then getting back to unfucking Intiface once...
- [Apologies To Everyone Who Just Got Force Joined On Discord](https://buttplug.io/blog/2019-03-25-apologies-to-everyone-who-just-got-force-joined-on-discord/index.md): I was updating the tiers for this patreon campaign and didn't realize that if I change the patreon rewards, the bot will force-join everyone curren...
- [What's qDot Up To This Week? (2019-03-25 Edition)](https://buttplug.io/blog/2019-03-25-whats-qdot-up-to-this-week-2019-03-25-edition/index.md): Survived Pittsburgh. Now back at home and trying to make body adjust back to my normal timezone.
- [What's qDot Up To This Week? (2019-04-01 Edition)](https://buttplug.io/blog/2019-04-01-whats-qdot-up-to-this-week-2019-04-01-edition/index.md): Another week of Buttpluggin' updates!
- [Intiface V7 Win 10 Only Released And Updates On Projects](https://buttplug.io/blog/2019-04-09-intiface-v7-win-10-only-released-and-updates-on-projects/index.md): The newest version of Intiface for Windows 10 is now ready to download at
- [What's qDot Up To This Week? (2019-04-08 Edition)](https://buttplug.io/blog/2019-04-09-whats-qdot-up-to-this-week-2019-04-08-edition/index.md): Ok, well, I'm a day late this time, but I have a good excuse because...
- [Intiface V11 Win10 Only Released](https://buttplug.io/blog/2019-04-10-intiface-v11-win10-only-released/index.md): [https://github.com/intiface/intiface-desktop/releases/tag/v11.0.0](https://github.com/intiface/intiface-desktop/releases/tag/v11.0.0)
- [Intiface V13 Released Mac Linux Support Returns](https://buttplug.io/blog/2019-04-20-intiface-v13-released-mac-linux-support-returns/index.md): After much wailing and gnashing of teeth, I got Mac/Linux support back into Intiface. MacOS seems to work fine, Linux takes a little extra work (se...
- [Buttplug Put To Good Use](https://buttplug.io/blog/2019-04-24-buttplug-put-to-good-use/index.md): This is what happens when I get bored. Connected a bluetooth bouncy ball to Buttplug.
- [Buttplug Ios Sorta Dont Get Too Excited](https://buttplug.io/blog/2019-04-28-buttplug-ios-sorta-dont-get-too-excited/index.md): Someone poked me on twitter about trying Buttplug using an iOS app that polyfills WebBluetooth:
- [What's qDot Up To This Week? (2019-04-29 Edition)](https://buttplug.io/blog/2019-04-29-whats-qdot-up-to-this-week-2019-04-29-edition/index.md): Been a while since I've given a weekly update, mostly because I've been giving piecemeal project updates, so, without further ado...
- [What's qDot Up To This Week? (2019-05-06 Edition)](https://buttplug.io/blog/2019-05-07-whats-qdot-up-to-this-week-2019-05-06-edition/index.md): Getting a new job!
- [Intiface Desktop V14 Released](https://buttplug.io/blog/2019-05-09-intiface-desktop-v14-released/index.md): Managed to break through my coding block a bit to get the new version of Intiface Desktop out.
- [What's qDot Up To This Week? (2019-05-20 Edition)](https://buttplug.io/blog/2019-05-20-whats-qdot-up-to-this-week-2019-05-20-edition/index.md): I'm jobless! Now working on Buttplug/Intiface full time! For a whole week! Then I have another job!
- [Intiface Game Haptics Router V0 Released](https://buttplug.io/blog/2019-05-22-intiface-game-haptics-router-v0-released/index.md): It... basically works. Sometimes. And only for certain games, and only via steam games right now. But it worked enough to make a video!
- [Qdots Cmu Lecture Is Now Online](https://buttplug.io/blog/2019-05-30-qdots-cmu-lecture-is-now-online/index.md): My artist lecture as part of my March 2019 residency at Carnegie Mellon University is now online (and captioned)!
- [What's qDot Up To This Week? (2019-05-27 Edition)](https://buttplug.io/blog/2019-05-30-whats-qdot-up-to-this-week-2019-05-27-edition/index.md): Well, I'm definitely not jobless anymore.
- [June 2019 Qa 3 Tier Perk](https://buttplug.io/blog/2019-06-11-june-2019-qa-3-tier-perk/index.md): I haven't done a Q&A in a while, so if you've got any questions, ask away in the comments to this post!
- [What's qDot Up To This Week? (2019-06-10 Edition)](https://buttplug.io/blog/2019-06-11-whats-qdot-up-to-this-week-2019-06-10-edition/index.md): Somehow still managing to work on shit!
- [Early Access Youou Av Vibrator Unboxing Video](https://buttplug.io/blog/2019-06-16-early-access-youou-av-vibrator-unboxing-video/index.md): Hey I finally remembered to do early access on a video for once! Here's the new Youou AV Vibrator Unboxing video I just made, completely with spiff...
- [Video Prepost Apathetic Handjob Part 1](https://buttplug.io/blog/2019-06-23-video-prepost-apathetic-handjob-part-1/index.md): Before the world gets to see it! Whether this is a good thing, I don't know.
- [What's qDot Up To This Week? (2019-06-24 Edition)](https://buttplug.io/blog/2019-06-24-whats-qdot-up-to-this-week-2019-06-24-edition/index.md): So remember when I was all "Wow I can still code during new job! I can't believe I haven't hit a wall yet!"
- [Apathetic Handjob Video Preview With Correct Link](https://buttplug.io/blog/2019-06-25-apathetic-handjob-video-preview-with-correct-link/index.md): (Sent the wrong link in the last post, sorry about that)
- [Sex Toy Video Sync 101 Video Preview](https://buttplug.io/blog/2019-06-25-sex-toy-video-sync-101-video-preview/index.md): I've still gotta finish up the funscript for Apathetic Handjob, but here's the version of the Sex Toy Video Sync 101 episode. It's 22 minutes and.....
- [Video Sync Tutorial Episodes Are Live With Funscript](https://buttplug.io/blog/2019-06-26-video-sync-tutorial-episodes-are-live-with-funscript/index.md): Tutorial Video: [https://www.youtube.com/watch?v=qgdk77C5SFc](https://www.youtube.com/watch?v=qgdk77C5SFc)
- [Intiface Mobile More Likely Than You Or I Think](https://buttplug.io/blog/2019-06-29-intiface-mobile-more-likely-than-you-or-i-think/index.md): Earlier this weekend, someone submitted a pull request to Buttplug C# to add Xamarin support for Bluetooth. Xamarin is basically a way to run C# co...
- [Buttpluggin With Qdot Vamlaunch Demo](https://buttplug.io/blog/2019-07-07-buttpluggin-with-qdot-vamlaunch-demo/index.md): I've been getting requests to get hardware support into VirtAMate ([https://patreon.com/meshvr)](https://patreon.com/meshvr)) for a long time, but ...
- [Buttpluggin With Qdot Virtamate Vamlaunch Demo Nsfw Pornhub Edition](https://buttplug.io/blog/2019-07-07-buttpluggin-with-qdot-virtamate-vamlaunch-demo-nsfw-pornhub-edition/index.md): New NSFW version of the VAMLaunch demo video! I actually refilmed the last portion of the VAMLaunch demo since I didn't have to put the work into c...
- [What's qDot Up To This Week? (2019-07-08 Edition)](https://buttplug.io/blog/2019-07-08-whats-qdot-up-to-this-week-2019-07-08-edition/index.md): Dear god why do people keep coming to me with interesting projects when I have so much boring work to do!
- [What's qDot Up To This Week? (2019-07-22 Edition)](https://buttplug.io/blog/2019-07-22-whats-qdot-up-to-this-week-2019-07-22-edition/index.md): Organization, and even more new projects!
- [Intiface Game Haptics Router In Model Content](https://buttplug.io/blog/2019-07-26-intiface-game-haptics-router-in-model-content/index.md): It's no longer just me using the GHR in videos!
- [Intiface Game Haptics Router V3 Released](https://buttplug.io/blog/2019-07-26-intiface-game-haptics-router-v3-released/index.md): [https://github.com/intiface/intiface-game-haptics-router/releases](https://github.com/intiface/intiface-game-haptics-router/releases)
- [What's qDot Up To This Week? (2019-08-05 Edition)](https://buttplug.io/blog/2019-08-05-whats-qdot-up-to-this-week-2019-08-05-edition/index.md): You get a release, and you get a release, and everybody gets a release!
- [What's qDot Up To This Week? (2019-08-12 Edition)](https://buttplug.io/blog/2019-08-12-whats-qdot-up-to-this-week-2019-08-12-edition/index.md): Writing tweets that should really be blog posts, apparently.
- [What's qDot Up To This Week? (2019-08-26 Edition)](https://buttplug.io/blog/2019-08-26-whats-qdot-up-to-this-week-2019-08-26-edition/index.md): PENS.
- [What's qDot Up To This Week? (2019-09-02 Edition)](https://buttplug.io/blog/2019-09-02-whats-qdot-up-to-this-week-2019-09-02-edition/index.md): OMFG.
- [Buttplug Python 002](https://buttplug.io/blog/2019-09-05-buttplug-python-002/index.md): [https://pypi.org/project/buttplug/](https://pypi.org/project/buttplug/)
- [Buttplug Py 010 Released](https://buttplug.io/blog/2019-09-07-buttplug-py-010-released/index.md): [https://pypi.org/project/buttplug](https://pypi.org/project/buttplug)
- [Buttplug Python Documentation](https://buttplug.io/blog/2019-09-07-buttplug-python-documentation/index.md): By no means complete, but getting there:
- [What's qDot Up To This Week? (2019-09-16 Edition)](https://buttplug.io/blog/2019-09-16-whats-qdot-up-to-this-week-2019-09-16-edition/index.md): More than usual, less than I want.
- [What's qDot Up To This Week? (2019-09-30 Edition)](https://buttplug.io/blog/2019-10-01-whats-qdot-up-to-this-week-2019-09-30-edition/index.md): Crap when did it become Tuesday.
- [What's qDot Up To This Week? (2019-10-07 Edition)](https://buttplug.io/blog/2019-10-07-whats-qdot-up-to-this-week-2019-10-07-edition/index.md): Rust. That's it. Just rust.
- [Github Sponsors Patreon And The Basically Same Future](https://buttplug.io/blog/2019-10-12-github-sponsors-patreon-and-the-basically-same-future/index.md): tl;dr: I'm now using 2 funding platforms, but there will be no fundamental changes due to this. Unless you want the gritty details of what it's lik...
- [New Patreon Perk Qdot Reviews Sex Tech Porn](https://buttplug.io/blog/2019-10-17-new-patreon-perk-qdot-reviews-sex-tech-porn/index.md): Earlier this week, someone sent me some furry porn that involved the use of VR (as in the character in the picture was using VR. This is surprising...
- [What's qDot Up To This Week? (2019-10-28 Edition)](https://buttplug.io/blog/2019-10-28-whats-qdot-up-to-this-week-2019-10-28-edition/index.md): Enjoying having electricity again!
- [Buttpluggin With Qdot Lelo F1s Unboxing](https://buttplug.io/blog/2019-10-29-buttpluggin-with-qdot-lelo-f1s-unboxing/index.md): After a year of waiting my Lelo F1s showed up today. I did a super quick unboxing video because, well, it comes with masturbation racing gloves! Ho...
- [What's qDot Up To This Week? (2019-11-04 Edition)](https://buttplug.io/blog/2019-11-04-whats-qdot-up-to-this-week-2019-11-04-edition/index.md): Scrambling to finish my SLSA presentation on hidden haptics spaces in online games (aka using the GHR in online games) that I have to give on Friday!
- [What's qDot Up To This Week? (2019-11-11 Edition)](https://buttplug.io/blog/2019-11-11-whats-qdot-up-to-this-week-2019-11-11-edition/index.md): Recovering.
- [Buttplug Rs V002 Released](https://buttplug.io/blog/2019-11-21-buttplug-rs-v002-released/index.md): Buttplug Rust is actually kinda sorta maybe a thing now!
- [What's qDot Up To This Week? (2019-11-25 Edition)](https://buttplug.io/blog/2019-11-26-whats-qdot-up-to-this-week-2019-11-25-edition/index.md): Being a day late, but I hate missing more than 1 week in a row of these.
- [What's qDot Up To This Week? (2019-12-02 Edition)](https://buttplug.io/blog/2019-12-03-whats-qdot-up-to-this-week-2019-12-02-edition/index.md): Tuesday is the new Monday.
- [What's qDot Up To This Week? (2019-12-16 Edition)](https://buttplug.io/blog/2019-12-16-whats-qdot-up-to-this-week-2019-12-16-edition/index.md): A continuous stream of questionable choices.
- [What's qDot Up To This Week? (2019-12-23 Edition)](https://buttplug.io/blog/2019-12-23-whats-qdot-up-to-this-week-2019-12-23-edition/index.md): Holy shit. Rust Bluetooth works.
- [What's qDot Up To This Decade? (2020-01-06 Edition)](https://buttplug.io/blog/2020-01-06-whats-qdot-up-to-this-decade-2020-01-06-edition/index.md): Same thing we do every decade, Pinky. Try to buttplug the world.
- [What's qDot Up To This Week? (2020-01-13 Edition)](https://buttplug.io/blog/2020-01-13-whats-qdot-up-to-this-week-2020-01-13-edition/index.md): Oops I accidentally another library
- [What's qDot Up To This Week? (2020-11-20 Edition)](https://buttplug.io/blog/2020-01-20-whats-qdot-up-to-this-week-2020-11-20-edition/index.md): AGH IT'S DONE IT'S FINALLY DONE
- [What's qDot Up To This Week? (2020-01-27 Edition)](https://buttplug.io/blog/2020-01-29-whats-qdot-up-to-this-week-2020-01-27-edition/index.md): Being late to the update and not having much to say because I'm sick. Respiratory infections suck.
- [What's qDot Up To This Week? (2020-02-10 Edition)](https://buttplug.io/blog/2020-02-10-whats-qdot-up-to-this-week-2020-02-10-edition/index.md): AND WE'RE BACK
- [What's qDot Up To This Week? (2020-02-17 Edition)](https://buttplug.io/blog/2020-02-18-whats-qdot-up-to-this-week-2020-02-17-edition/index.md): Yesterday was a US Holiday so this update is happening a day late. :)
- [What's qDot Up To This Week? (2020-03-02 Edition)](https://buttplug.io/blog/2020-03-03-whats-qdot-up-to-this-week-2020-03-02-edition/index.md): Watching all of my speaking gigs disappear.
- [Covid 19 Avoidance At Buttplug Hq](https://buttplug.io/blog/2020-03-06-covid-19-avoidance-at-buttplug-hq/index.md): Stay safe everyone!
- [Nobras Silicone Dreams Twin Charger Unboxing](https://buttplug.io/blog/2020-03-20-nobras-silicone-dreams-twin-charger-unboxing/index.md): So what's worse than me forgetting to post about one live stream?
- [Teledildonics 101 Part 1 Intro To Teledildonics](https://buttplug.io/blog/2020-03-20-teledildonics-101-part-1-intro-to-teledildonics/index.md): Ok, well, somehow I managed to do a livestream and forgot to notify the people paying me to let them know when I do things. Sorry about that. :(
- [Teledildonics 101 Part 2 Livestream Tomorrow](https://buttplug.io/blog/2020-03-21-teledildonics-101-part-2-livestream-tomorrow/index.md): The next in the Teledildonics 101 series is tomorrow, Sunday, March 22nd, at 12pm Pacific! Hopefully this will be European viewers a chance to see ...
- [Teledildonics 101 Part 2 Livestreaming In 10 Min](https://buttplug.io/blog/2020-03-22-teledildonics-101-part-2-livestreaming-in-10-min/index.md): Talking about how we scope the design of a teledildonics app, and also doing an quick intro to the architecture of Buttplug!
- [Whats Qdot Up To This Week 2020 03 23 Quarantine Edition](https://buttplug.io/blog/2020-03-23-whats-qdot-up-to-this-week-2020-03-23-quarantine-edition/index.md): Not leavin' the house. That's what.
- [Teledildonics 101 Part 3 Tomorrow 2020 03 26 5pm Pacific](https://buttplug.io/blog/2020-03-25-teledildonics-101-part-3-tomorrow-2020-03-26-5pm-pacific/index.md): Time for another livestream! Finally getting into the code side of things, I'll be implementing a simple toy control app in pure HTML and Javascrip...
- [Teledildonics 101 Part 3 Going Live In 5 Minutes](https://buttplug.io/blog/2020-03-26-teledildonics-101-part-3-going-live-in-5-minutes/index.md): Come watch me code badly on stream!
- [Whats Qdot Up To This Week 2020 03 30 Isolation Edition](https://buttplug.io/blog/2020-03-30-whats-qdot-up-to-this-week-2020-03-30-isolation-edition/index.md): Well this first header is not something I would've expected to be writing last week.
- [What's qDot Up To This Week? (2020-04-13 Edition)](https://buttplug.io/blog/2020-04-14-whats-qdot-up-to-this-week-2020-04-13-edition/index.md): Coming at you a day late because...
- [What's qDot Up To This Week? (2020-04-20 Edition)](https://buttplug.io/blog/2020-04-20-whats-qdot-up-to-this-week-2020-04-20-edition/index.md): Well, I just had a weed mint, so I guess celebrating the holiday?
- [What Would You Like Me To Be Working On](https://buttplug.io/blog/2020-04-21-what-would-you-like-me-to-be-working-on/index.md): It's been a while since I've asked this and I'm curious whether my plans line up with what others are looking for from my work.
- [Teledildonics 101 Part 4 Livestream April 26 12pm Pacific](https://buttplug.io/blog/2020-04-25-teledildonics-101-part-4-livestream-april-26-12pm-pacific/index.md): Tomorrow! Noon Pacific! Hopefully an ok time for those not in the Americas!
- [What's qDot Up To This Week? (2020-05-04 Edition)](https://buttplug.io/blog/2020-05-04-whats-qdot-up-to-this-week-2020-05-04-edition/index.md): 3D Printing all the things!
- [What's qDot Up To This Week? (2020-05-11 Edition)](https://buttplug.io/blog/2020-05-11-whats-qdot-up-to-this-week-2020-05-11-edition/index.md): Dear sweet mother of god
- [What's qDot Up To This Week? (2020-05-26 Edition)](https://buttplug.io/blog/2020-05-26-whats-qdot-up-to-this-week-2020-05-26-edition/index.md): Coming in a day late because yesterday was a US holiday.
- [What's qDot Up To This Week? (2020-06-01 Edition)](https://buttplug.io/blog/2020-06-02-whats-qdot-up-to-this-week-2020-06-01-edition/index.md): A day late but with a good excuse. (and fair warning: the Buttplug Section will be EXTREMELY engineering heavy but there's a couple of things after...
- [What's qDot Up To This Week? (2020-06-08 Edition)](https://buttplug.io/blog/2020-06-08-whats-qdot-up-to-this-week-2020-06-08-edition/index.md): It's possible to feel like you're living in the future even when time has lost all meaning, I guess.
- [Buttplug Unity Is A Thing Whats Qdot Up To This Week 2020 06 15 Edition](https://buttplug.io/blog/2020-06-15-buttplug-unity-is-a-thing-whats-qdot-up-to-this-week-2020-06-15-edition/index.md): AN ACTUAL PATREON PERK: I HAVEN'T ANNOUNCED THIS ANYWHERE (BUT DISCORD) YET
- [Sneak Preview Buttpluggin With Qdot Console Ghr And Animal Crossing](https://buttplug.io/blog/2020-06-28-sneak-preview-buttpluggin-with-qdot-console-ghr-and-animal-crossing/index.md): See, sometimes being a patron pays off!
- [What's qDot Up To This Week? (2020-06-29 Edition)](https://buttplug.io/blog/2020-06-30-whats-qdot-up-to-this-week-2020-06-29-edition/index.md): Day late but HEY YOU GOT EXCLUSIVE CONTENT so I'll call it a fair trade.
- [Intiface Game Haptics Router V7 Released](https://buttplug.io/blog/2020-07-04-intiface-game-haptics-router-v7-released/index.md): [https://intiface.com/ghr](https://intiface.com/ghr)
- [What's qDot Up To This Week? (2020-07-06 Edition)](https://buttplug.io/blog/2020-07-06-whats-qdot-up-to-this-week-2020-07-06-edition/index.md): Being my own social media intern.
- [The New Buttplug Project Logo](https://buttplug.io/blog/2020-07-07-the-new-buttplug-project-logo/index.md): Say hello to the new Buttplug project logo!
- [What's qDot Up To This Week? (2020-07-13 Edition)](https://buttplug.io/blog/2020-07-13-whats-qdot-up-to-this-week-2020-07-13-edition/index.md): Gloriously boring shit!
- [New Buttplug Rust Logo](https://buttplug.io/blog/2020-07-17-new-buttplug-rust-logo/index.md): Ain't it pretty? :D
- [Sticker Update](https://buttplug.io/blog/2020-07-17-sticker-update/index.md): THEY'RE FINALLY ORDERED. I'm getting stickers of the new logo, the rust logo, and since they were on special this week, some hologram stickers of t...
- [What's qDot Up To This Week? (2020-07-20 Edition)](https://buttplug.io/blog/2020-07-20-whats-qdot-up-to-this-week-2020-07-20-edition/index.md): Learning that begging for patrons WORKS! My twitter shall now be insufferable!
- [Stickers](https://buttplug.io/blog/2020-07-22-stickers/index.md): New stickers just arrived! I'm still waiting on the hologram buttplug logo stickers, then I'll be shipping tier rewards out to everyone who has bee...
- [What's qDot Up To This Week? (2020-07-27 Edition)](https://buttplug.io/blog/2020-07-27-whats-qdot-up-to-this-week-2020-07-27-edition/index.md): SO MUCH STUFF OMFG
- [What's qDot Up To This Week? (2020-08-03 Edition)](https://buttplug.io/blog/2020-08-03-whats-qdot-up-to-this-week-2020-08-03-edition/index.md): Making up excuses because I haven't shipped any
- [Holo Stickers Have Arrived](https://buttplug.io/blog/2020-08-04-holo-stickers-have-arrived/index.md): They’re so pretty!
- [What's qDot Up To This Week? (2020-08-10 Edition)](https://buttplug.io/blog/2020-08-11-whats-qdot-up-to-this-week-2020-08-10-edition/index.md): Being a day late, but hey, at least there's
- [What's qDot Up To This Week? (2020-08-24 Edition)](https://buttplug.io/blog/2020-08-24-whats-qdot-up-to-this-week-2020-08-24-edition/index.md): Missing a week of updates, but for good reason I guess?
- [What's qDot Up To This Week? (2020-08-31 Edition)](https://buttplug.io/blog/2020-08-31-whats-qdot-up-to-this-week-2020-08-31-edition/index.md): A surprisingly busy week!
- [Intiface Desktop V17 Released](https://buttplug.io/blog/2020-09-07-intiface-desktop-v17-released/index.md): [https://intiface.com/desktop](https://intiface.com/desktop)
- [Condensed: What's qDot Up To This Week? (2020-09-07 Edition)](https://buttplug.io/blog/2020-09-09-condensed-whats-qdot-up-to-this-week-2020-09-07-edition/index.md): The last 2 days have been a sprint to fix bugs introduced in Intiface Desktop v17, of which there were (and still are) many. The biggest issue was ...
- [What's qDot Up To This Week? (2020-09-14 Edition)](https://buttplug.io/blog/2020-09-14-whats-qdot-up-to-this-week-2020-09-14-edition/index.md): Trying to figure out what's next!
- [What's qDot Up To This Week? (2020-09-21 Edition)](https://buttplug.io/blog/2020-09-21-whats-qdot-up-to-this-week-2020-09-21-edition/index.md): All the things!
- [Questions For The Teledildonticist I Need Your Help](https://buttplug.io/blog/2020-09-23-questions-for-the-teledildonticist-i-need-your-help/index.md): In order to get more videos up on the Youtube channel, I'm starting a series of shorter videos (< 10 minutes) called "Questions For The Teledildont...
- [What's qDot Up To This Week? (2020-10-12 Edition)](https://buttplug.io/blog/2020-10-12-whats-qdot-up-to-this-week-2020-10-12-edition/index.md): First newsletter in 3 weeks!
- [New Buttpluggin With Qdot Video Satisfyer One Night Stand Teardown](https://buttplug.io/blog/2020-10-27-new-buttpluggin-with-qdot-video-satisfyer-one-night-stand-teardown/index.md): Ever wondered what's in a $9, one time use sex toy?
- [What's qDot Up To This Week? (2020-11-09 Edition)](https://buttplug.io/blog/2020-11-10-whats-qdot-up-to-this-week-2020-11-09-edition/index.md): Ugh. Combination of health issues and dayjob really slowing things down, but...
- [New Buttpluggin With Qdot Video Intro To The Osr 2](https://buttplug.io/blog/2020-11-11-new-buttpluggin-with-qdot-video-intro-to-the-osr-2/index.md): Finally made my OSR-2 video! Goes over what the project is and basic usage.
- [What's qDot Up To This Week? (2020-11-16 Edition)](https://buttplug.io/blog/2020-11-16-whats-qdot-up-to-this-week-2020-11-16-edition/index.md): Preparing for a whole week off! And otherwise doing some out of the ordinary stuff.
- [Early Access Kiiroo Keon Unboxing And Analysis](https://buttplug.io/blog/2020-11-18-early-access-kiiroo-keon-unboxing-and-analysis/index.md): New video, released for patrons a day early!
- [What's qDot Up To This Week? (2020-11-23 Edition)](https://buttplug.io/blog/2020-11-24-whats-qdot-up-to-this-week-2020-11-23-edition/index.md): I'm on vacation all week! Which means...
- [End Of Syncydink Development](https://buttplug.io/blog/2020-11-28-end-of-syncydink-development/index.md): Heads up in case anyone wants to jump ship before the subscription charge date (Dec 1).
- [What's qDot Up To This Week? (2020-12-07 Edition)](https://buttplug.io/blog/2020-12-07-whats-qdot-up-to-this-week-2020-12-07-edition/index.md): Redoing shit. :(
- [Metafetishcom And Metafetishclub Shutting Down](https://buttplug.io/blog/2020-12-08-metafetishcom-and-metafetishclub-shutting-down/index.md): In my continuing goal of trying to maintain less zombie brands, I'm finally shutting down the Metafetish brand to focus on Buttplug/Intiface.
- [What's qDot Up To This Week? (2020-12-21 Edition)](https://buttplug.io/blog/2020-12-23-whats-qdot-up-to-this-week-2020-12-21-edition/index.md): DAMNIT V1 WILL HAPPEN. SOON.
- [Whats Qdot Up To This Week 2020 12 28 V1 Launch Edition](https://buttplug.io/blog/2020-12-28-whats-qdot-up-to-this-week-2020-12-28-v1-launch-edition/index.md): LAUNCHING V1. WOOOOOOOOOOOOO.
- [Software Update Blog Post](https://buttplug.io/blog/2021-01-10-software-update-blog-post/index.md): Now that Buttplug is post v1, I'm trying to be a little more public in the "what I did" stuff, so the Monday newsletter here can hopefully focus mo...
- [What's qDot Up To This Week? (2021-01-11 Edition)](https://buttplug.io/blog/2021-01-12-whats-qdot-up-to-this-week-2021-01-11-edition/index.md): Fuuuuuuuuuuck.
- [What's qDot Up To This Week? (2021-01-18 Edition)](https://buttplug.io/blog/2021-01-19-whats-qdot-up-to-this-week-2021-01-18-edition/index.md): Buttplug v2!
- [New Buttpluggin With Qdot Video Lovense Edge 2 Unboxing](https://buttplug.io/blog/2021-01-25-new-buttpluggin-with-qdot-video-lovense-edge-2-unboxing/index.md): Threw together a quick video to compare the Lovense Edge 1/2, talking about the differences in the new product. All in all, it's a pretty decent up...
- [Periodic Checkin What Do Yall Want More Of](https://buttplug.io/blog/2021-01-27-periodic-checkin-what-do-yall-want-more-of/index.md): Ok, I haven't run one of these in a while, and I'm quietly hemorrhaging patrons lately (while still getting some new ones, so hi new ones!), so:
- [What's qDot Up To This Week? (2021-01-27 Edition)](https://buttplug.io/blog/2021-01-27-whats-qdot-up-to-this-week-2021-01-27-edition/index.md): Tests!
- [What's qDot Up To This Week? (2021-02-01 Edition)](https://buttplug.io/blog/2021-02-01-whats-qdot-up-to-this-week-2021-02-01-edition/index.md): Staring at polls.
- [Blooper Reel Qdot Tries Vrchat Teledildonics](https://buttplug.io/blog/2021-02-07-blooper-reel-qdot-tries-vrchat-teledildonics/index.md): Well I promised bloopers in the tiers at one point, but the past couple of years are mostly me yelling at code so not many interesting ones have ha...
- [What's qDot Up To This Week? (2021-02-08 Edition)](https://buttplug.io/blog/2021-02-09-whats-qdot-up-to-this-week-2021-02-08-edition/index.md): Figuring out what it is I do other than library work...
- [The Handy Support Update](https://buttplug.io/blog/2021-02-12-the-handy-support-update/index.md): Yaaay, finally get to give patrons some early news before everyone else gets it! :)
- [Handy Support Now In Buttplug Intiface Desktop](https://buttplug.io/blog/2021-02-13-handy-support-now-in-buttplug-intiface-desktop/index.md): As of about an hour ago, support for The Handy stroker ([https://thehandy.buttplug.io)](https://thehandy.buttplug.io)) is now available in Buttplug...
- [Vamsync Formerly Vamlaunch V2](https://buttplug.io/blog/2021-02-15-vamsync-formerly-vamlaunch-v2/index.md): Hot of the build server, VaMSync (I renamed it because the Launch isn't a thing anymore) v2 is out. Looks exactly like the newest GHR because I rip...
- [What's qDot Up To This Week? (2021-02-15 Edition)](https://buttplug.io/blog/2021-02-15-whats-qdot-up-to-this-week-2021-02-15-edition/index.md): Being mad at The Handy?
- [Want Your Name In The Credits In My Next Youtube Video](https://buttplug.io/blog/2021-02-18-want-your-name-in-the-credits-in-my-next-youtube-video/index.md): Hello, special people in my >= $10 tiers!
- [New Tier Reward Youtube Credits At The 10 Month Level](https://buttplug.io/blog/2021-02-19-new-tier-reward-youtube-credits-at-the-10-month-level/index.md): Interested in having your name posted in my youtube videos?
- [New Video Buttpluggin With Qdot Lovense Diamo Overview](https://buttplug.io/blog/2021-02-23-new-video-buttpluggin-with-qdot-lovense-diamo-overview/index.md): Everything you ever wanted to know about Lovense's new bluetooth controllable cockring.
- [What's qDot Up To This Week? (2021-03-01 Edition)](https://buttplug.io/blog/2021-03-01-whats-qdot-up-to-this-week-2021-03-01-edition/index.md): Not much, honestly. It's been a Extremely Fucking Bad couple of weeks out in reality, so things are going very slowly right now.
- [Whats Qdot Up To This Week 2021 03 08 Update](https://buttplug.io/blog/2021-03-08-whats-qdot-up-to-this-week-2021-03-08-update/index.md): VRChat, mostly. I wasn't kidding about the virtual world obsession thing.
- [What's qDot Up To This Week? (2021-03-15 Edition)](https://buttplug.io/blog/2021-03-15-whats-qdot-up-to-this-week-2021-03-15-edition/index.md): Weird week. Weird fuckin' week.
- [What's qDot Up To This Week? (2021-03-22 Edition)](https://buttplug.io/blog/2021-03-22-whats-qdot-up-to-this-week-2021-03-22-edition/index.md): I can apparently code again!
- [Buttplug Rs V3 Released](https://buttplug.io/blog/2021-04-11-buttplug-rs-v3-released/index.md): What I thought was going to be a simple update for Unity turned into another major version release! So I wrote a blog post.
- [Buttplug Rust v3.0 Released - Less is Less](https://buttplug.io/blog/2021-04-11-buttplug-rust-v3-released-less-is-less/index.md): When I released [Buttplug Rust v1](https://buttplug.io/), I figured I’d be rolling major versions whenever we updated the [Buttplug Protocol](http:...
- [What's qDot Up To This Week? (2021-04-19 Edition)](https://buttplug.io/blog/2021-04-19-whats-qdot-up-to-this-week-2021-04-19-edition/index.md): Ok maybe if I write these in the morning I'll actually remember to send them out...
- [What's qDot Up To This Week? (2021-05-03 Edition)](https://buttplug.io/blog/2021-05-03-whats-qdot-up-to-this-week-2021-05-03-edition/index.md): Just rethinking large portions of the project. Again. :|
- [When Buttplug Wont Buttplug Part 1 Oh No](https://buttplug.io/blog/2021-05-04-when-buttplug-wont-buttplug-part-1-oh-no/index.md): New blog post! In which I explain why VR users are the worst, even though I'm racking up VRChat hours like no one's business lately.
- [Still Alive, Hoping to Resume Updates Next Week](https://buttplug.io/blog/2021-05-19-still-alive-hoping-to-resume-updates-next-week/index.md): Just realized I've missed Monday updates for a couple of weeks. I'm currently in some crunch time on a couple of projects, meaning the rest of my s...
- [What's qDot Up To This Week? (2021-05-31 Edition)](https://buttplug.io/blog/2021-05-31-whats-qdot-up-to-this-week-2021-05-31-edition/index.md): Welp, at least I managed another May update before the month was over...
- [Video Pre Release Intiface Desktop V21 Tutorial](https://buttplug.io/blog/2021-06-09-video-pre-release-intiface-desktop-v21-tutorial/index.md): Well Intiface Desktop v21 isn't out yet (hoping for this evening), but if you're curious what it's going to look like or the new features that will...
- [Intiface Desktop V21 Released](https://buttplug.io/blog/2021-06-10-intiface-desktop-v21-released/index.md): Intiface Desktop v21 is out! Now with Lovense Connect support, In-App device testing, and more! All of the new features were covered in the tutoria...
- [Intiface Desktop V22 Released](https://buttplug.io/blog/2021-06-16-intiface-desktop-v22-released/index.md): Intiface Desktop v22 is live!
- [What's qDot Up To This Week? (2021-06-14 Edition)](https://buttplug.io/blog/2021-06-16-whats-qdot-up-to-this-week-2021-06-14-edition/index.md): Other than completely losing track of what day it is...
- [What's qDot Up To This Week? (2021-06-28 Edition)](https://buttplug.io/blog/2021-06-28-whats-qdot-up-to-this-week-2021-06-28-edition/index.md): A boring but somewhat productive week in the Buttplug world...
- [What's qDot Up To This Week? (2021-07-05 Edition)](https://buttplug.io/blog/2021-07-06-whats-qdot-up-to-this-week-2021-07-05-edition/index.md): And suddenly, productivity.
- [What's qDot Up To This Week? (2021-07-26 Edition)](https://buttplug.io/blog/2021-07-26-whats-qdot-up-to-this-week-2021-07-26-edition/index.md): Too god damn much bluetooth.
- [What's qDot Up To This Week? (2021-08-09 Edition)](https://buttplug.io/blog/2021-08-09-whats-qdot-up-to-this-week-2021-08-09-edition/index.md): A line of yaks stretching as far as the eye can see...
- [What's qDot Up To This Week? (2021-08-16 Edition)](https://buttplug.io/blog/2021-08-16-whats-qdot-up-to-this-week-2021-08-16-edition/index.md): The pre-release slog continues...
- [What's qDot Up To This Week? (2021-08-30 Edition)](https://buttplug.io/blog/2021-08-30-whats-qdot-up-to-this-week-2021-08-30-edition/index.md): Releases!
- [New Youtube Video Ask A Teledildonticist](https://buttplug.io/blog/2021-09-13-new-youtube-video-ask-a-teledildonticist/index.md): After threatening for the better part of 2 years, I've finally kicked off the Ask A Teledildonticist video series!
- [What's qDot Up To This Week? (2021-09-13 Edition)](https://buttplug.io/blog/2021-09-13-whats-qdot-up-to-this-week-2021-09-13-edition/index.md): Watching the bugs roll in...
- [Sneak Peak Ask A Teledildonticist Why Do You Use The Term Buttplug So Ofte](https://buttplug.io/blog/2021-09-18-sneak-peak-ask-a-teledildonticist-why-do-you-use-the-term-buttplug-so-ofte/index.md): Hey look, a patron perk!
- [What's qDot Up To This Week? (2021-09-27 Edition)](https://buttplug.io/blog/2021-09-27-whats-qdot-up-to-this-week-2021-09-27-edition/index.md): Rewrites!
- [What's qDot Up To This Week? (2021-10-04 Edition)](https://buttplug.io/blog/2021-10-04-whats-qdot-up-to-this-week-2021-10-04-edition/index.md): Intiface Desktop!
- [What's qDot Up To This Week? (2021-10-11 Edition)](https://buttplug.io/blog/2021-10-11-whats-qdot-up-to-this-week-2021-10-11-edition/index.md): New features! Finally!
- [Coming Soon Diamo Modding Video](https://buttplug.io/blog/2021-10-25-coming-soon-diamo-modding-video/index.md): Oh yeah, forgot to put this in the weekly update:
- [What's qDot Up To This Week? (2021-10-25 Edition)](https://buttplug.io/blog/2021-10-25-whats-qdot-up-to-this-week-2021-10-25-edition/index.md): It's ADHD time, apparently...
- [What's qDot Up To This Week? (2021-11-15 Edition)](https://buttplug.io/blog/2021-11-15-whats-qdot-up-to-this-week-2021-11-15-edition/index.md): Uh....
- [What's qDot Up To This Week? (2021-11-21 Edition)](https://buttplug.io/blog/2021-11-22-whats-qdot-up-to-this-week-2021-11-21-edition/index.md): More than last week! (An admittedly low bar.)
- [What's qDot Up To This Week? (2021-12-13 Edition)](https://buttplug.io/blog/2021-12-13-whats-qdot-up-to-this-week-2021-12-13-edition/index.md): AND WE'RE BACK.
- [New Youtube Video Bluetooth Buttplug Blowout](https://buttplug.io/blog/2021-12-16-new-youtube-video-bluetooth-buttplug-blowout/index.md): Watch me talk about bluetooth buttplugs for 20 whole ass minutes! Includes overviews of the new Lovense Hush 2 series! The 2.25" is really big!
- [What's qDot Up To This Week? (2021-12-20 Edition)](https://buttplug.io/blog/2021-12-20-whats-qdot-up-to-this-week-2021-12-20-edition/index.md): So damn close...
- [New Youtube Video Modifying The Lovense Diamo For Size And Comfort](https://buttplug.io/blog/2021-12-23-new-youtube-video-modifying-the-lovense-diamo-for-size-and-comfort/index.md): Ever wonder what your patreon dollars go toward?
- [Intiface Desktop Rust Egui Alpha 1](https://buttplug.io/blog/2021-12-27-intiface-desktop-rust-egui-alpha-1/index.md): In lieu of a weekly update, here's what y'all actually pay me for: A chance to be the first to test my extremely alpha software! Isn't paying to be...
- [Intiface Desktop Rust Egui Alpha 2](https://buttplug.io/blog/2021-12-27-intiface-desktop-rust-egui-alpha-2/index.md): That was quick.
- [Intiface Desktop Rust Egui Alpha 3](https://buttplug.io/blog/2021-12-27-intiface-desktop-rust-egui-alpha-3/index.md): No alpha survives first contact with users.
- [What's qDot Up To This Week? (2022-01-03 Edition)](https://buttplug.io/blog/2022-01-03-whats-qdot-up-to-this-week-2022-01-03-edition/index.md): Back to the dayjob...
- [Intiface Desktop Egui Beta 1 V10999](https://buttplug.io/blog/2022-01-04-intiface-desktop-egui-beta-1-v10999/index.md): Next version is ready to go! Tons of updates and bugfixes since the alphas last week. Still needs basic documentation and all that, but the repo is...
- [What's qDot Up To This Week? (2021-01-17 Edition)](https://buttplug.io/blog/2022-01-17-whats-qdot-up-to-this-week-2021-01-17-edition/index.md): One more featuring myself to death...
- [Intiface Desktop Beta 2](https://buttplug.io/blog/2022-01-25-intiface-desktop-beta-2/index.md): Intiface Desktop Rust/egui Beta 2 is out!
- [Intiface Desktop Beta 2 First Run Experience Broken](https://buttplug.io/blog/2022-01-25-intiface-desktop-beta-2-first-run-experience-broken/index.md): Welp so much for that.
- [Intiface Desktop Beta 2 Fixed](https://buttplug.io/blog/2022-01-26-intiface-desktop-beta-2-fixed/index.md): Fixed the first run experience, so now you can give the new application a shot!
- [What's qDot Up To This Week? (2022-01-31 Edition)](https://buttplug.io/blog/2022-01-31-whats-qdot-up-to-this-week-2022-01-31-edition/index.md): v6 begins.
- [What's qDot Up To This Week? (2022-02-07 Edition)](https://buttplug.io/blog/2022-02-07-whats-qdot-up-to-this-week-2022-02-07-edition/index.md): A short one because...
- [What's qDot Up To This Week? (2022-02-21 Edition)](https://buttplug.io/blog/2022-02-21-whats-qdot-up-to-this-week-2022-02-21-edition/index.md): Same as it ever was...
- [Elden Ring And Haptics Rerouting](https://buttplug.io/blog/2022-03-01-elden-ring-and-haptics-rerouting/index.md): The weekly update would consist of one project this week, so I'll just post the project itself.
- [What's qDot Up To This Week? (2022-03-14 Edition)](https://buttplug.io/blog/2022-03-14-whats-qdot-up-to-this-week-2022-03-14-edition/index.md): Our long national nightmare is... well, not exactly *over*, but...
- [What's qDot Up To This Week? (2022-04-18 Edition)](https://buttplug.io/blog/2022-04-18-whats-qdot-up-to-this-week-2022-04-18-edition/index.md): Being very tired.
- [What's qDot Up To This Week? (2022-05-09 Edition)](https://buttplug.io/blog/2022-05-09-whats-qdot-up-to-this-week-2022-05-09-edition/index.md): Family emergency over, finally, and slowly but surely returning to life as normal...
- [Where the Fuck is qDot? (2022-06-06 Edition)](https://buttplug.io/blog/2022-06-07-where-the-fuck-is-qdot-2022-06-06-edition/index.md): Been a while since I've dropped off updates for a whole ass month.
- [What's qDot Up To This Week? (2022-06-27 Edition)](https://buttplug.io/blog/2022-06-27-whats-qdot-up-to-this-week-2022-06-27-edition/index.md): ALL HAIL SCALARCMD
- [What's qDot Up To This Week? (2022-07-17 Edition)](https://buttplug.io/blog/2022-07-18-whats-qdot-up-to-this-week-2022-07-17-edition/index.md): Oh so that's what Dart looks like
- [What's qDot Up To This Week? (2022-08-01 Edition)](https://buttplug.io/blog/2022-08-01-whats-qdot-up-to-this-week-2022-08-01-edition/index.md): DONE! SORTA!
- [Whats Qdot Up To This Week 2022 08 151 Edition](https://buttplug.io/blog/2022-08-17-whats-qdot-up-to-this-week-2022-08-151-edition/index.md): Paying for my sins!
- [Buttplug V6 Its Like Firefox V4 For Your Butt](https://buttplug.io/blog/2022-08-29-buttplug-v6-its-like-firefox-v4-for-your-butt/index.md): Ugh. Ok. v6.0.0 is as done as it's gonna get.
- [What's qDot Up To This Week? (2022-09-12 Edition)](https://buttplug.io/blog/2022-09-12-whats-qdot-up-to-this-week-2022-09-12-edition/index.md): BLoCs!
- [What's qDot Up To This Week? (2022-09-19 Edition)](https://buttplug.io/blog/2022-09-19-whats-qdot-up-to-this-week-2022-09-19-edition/index.md): APPS
- [Cbat By Hudson Mohawke Trombone Champ Interactive Fleshlight](https://buttplug.io/blog/2022-09-24-cbat-by-hudson-mohawke-trombone-champ-interactive-fleshlight/index.md): The things I do when taking a break from working on Intiface Central. :|
- [Intiface Central Desktop V001](https://buttplug.io/blog/2022-10-16-intiface-central-desktop-v001/index.md): [https://github.com/intiface/intiface-central/releases/tag/v0.0.1](https://github.com/intiface/intiface-central/releases/tag/v0.0.1)
- [Whats Qdot Up To This Week 2022 10 24 Edition And Also Intiface Central](https://buttplug.io/blog/2022-10-24-whats-qdot-up-to-this-week-2022-10-24-edition-and-also-intiface-central/index.md): Oof.
- [Intiface Central V003 For Win Macos Android](https://buttplug.io/blog/2022-11-07-intiface-central-v003-for-win-macos-android/index.md): Intiface Central v0.0.3 is out, with tons of bugfixes/updates over the past couple of weeks. I'll go into the specifics in the Weekly Update tomorr...
- [What's qDot Up To This Week? (2022-11-14 Edition)](https://buttplug.io/blog/2022-11-14-whats-qdot-up-to-this-week-2022-11-14-edition/index.md): SO CLOSE TO DONE
- [Intiface Central Desktop V004 Released](https://buttplug.io/blog/2022-11-15-intiface-central-desktop-v004-released/index.md): Ok took me an extra night but
- [New Buttplugio And Intiface Support Forum](https://buttplug.io/blog/2022-12-17-new-buttplugio-and-intiface-support-forum/index.md): I decided to set up a Discourse forum for support questions about Buttplug and Intiface. While I'll be keeping the discord, we tend to repeat infor...
- [Where the Hell is qDot? (2022-12-19 Edition)](https://buttplug.io/blog/2022-12-19-where-the-hell-is-qdot-2022-12-19-edition/index.md): Oops.
- [What's qDot Up To This Week? (2023-01-30 Edition)](https://buttplug.io/blog/2023-01-30-whats-qdot-up-to-this-week-2023-01-30-edition/index.md): First newsletter of the year! At the end of the first month of the year. >.>
- [What's qDot Up To This Week? (2023-02-20 Edition)](https://buttplug.io/blog/2023-02-20-whats-qdot-up-to-this-week-2023-02-20-edition/index.md): All the things, slowly...
- [Does qDot Even Exist Anymore? (2023-04-10 Edition)](https://buttplug.io/blog/2023-04-10-does-qdot-even-exist-anymore-2023-04-10-edition/index.md): Oof. Not particularly the past while. Life is getting in the way of Buttplug work. That said...
- [What's qDot Up To This Week? (2023-04-17 Edition)](https://buttplug.io/blog/2023-04-17-whats-qdot-up-to-this-week-2023-04-17-edition/index.md): Oops more platform support?
- [Wheres Qdot 2023 06 05 Edition](https://buttplug.io/blog/2023-06-05-wheres-qdot-2023-06-05-edition/index.md): Ok, short one for this week because it's been ~7 weeks since the last update, but there's good reason for that.
- [What's qDot Up To This Week? (2023-06-26 Edition)](https://buttplug.io/blog/2023-06-26-whats-qdot-up-to-this-week-2023-06-26-edition/index.md): Still bein' a nurse...
- [What's qDot Up To This Week? (2023-08-07 Edition)](https://buttplug.io/blog/2023-08-07-whats-qdot-up-to-this-week-2023-08-07-edition/index.md): Life can really just stop it at any point now.
- [What's qDot Up To This Week? (2023-08-28 Edition)](https://buttplug.io/blog/2023-08-28-whats-qdot-up-to-this-week-2023-08-28-edition/index.md): Annnnnnnnd that's it. Life continues to be rough due to personal/medical issues, but managing to get stuff done here and there.
- [Whats Qdot Up To This Week A Lot 2023 09 11 Edition](https://buttplug.io/blog/2023-09-11-whats-qdot-up-to-this-week-a-lot-2023-09-11-edition/index.md): Ok well I guess I'm back on the development wagon.
- [What's qDot Up To This Week? (2023-10-09 Edition)](https://buttplug.io/blog/2023-10-10-whats-qdot-up-to-this-week-2023-10-09-edition/index.md): Playing Cyberpunk 2077 so much that I forget it's Monday and therefore write my update on Tuesday. :|
- [Intiface Central Coming To Steam](https://buttplug.io/blog/2023-10-19-intiface-central-coming-to-steam/index.md): Finally got through the store page part of the process, now just gotta get a build up and a trailer made. Aiming for Steam release early November.
- [What's qDot Up To This Week? (2023-11-06 Edition)](https://buttplug.io/blog/2023-11-06-whats-qdot-up-to-this-week-2023-11-06-edition/index.md): So much for that Quiet End Of The Year wish.
- [What's qDot Up To This Week? (2023-11-27 Edition)](https://buttplug.io/blog/2023-11-27-whats-qdot-up-to-this-week-2023-11-27-edition/index.md): Scrubbing away technical debt
- [Does qDot Even Exist Anymore? (2024-02-12 Edition)](https://buttplug.io/blog/2024-02-12-does-qdot-even-exist-anymore-2024-02-12-edition/index.md): Sorta?
- [What's qDot Up To This Week? (2024-03-11 Edition)](https://buttplug.io/blog/2024-03-11-whats-qdot-up-to-this-week-2024-03-11-edition/index.md): Simplifying!
- [What's qDot Up To This Week? (2024-03-25 Edition)](https://buttplug.io/blog/2024-03-25-whats-qdot-up-to-this-week-2024-03-25-edition/index.md): I think I'm gonna be recovering from GDC for at least twice as long as I was there...
- [What's qDot Up To This Week? (2024-04-22 Edition)](https://buttplug.io/blog/2024-04-22-whats-qdot-up-to-this-week-2024-04-22-edition/index.md): Starting to think I've built a complicated platform...
- [What's qDot Up To This Week? (2024-05-06 Edition)](https://buttplug.io/blog/2024-05-06-whats-qdot-up-to-this-week-2024-05-06-edition/index.md): Short weekly update 'cause I'm working on stuff, but:
- [Weird Dicked Bear Unboxing Vod](https://buttplug.io/blog/2024-06-15-weird-dicked-bear-unboxing-vod/index.md): After a *very* rough couple of weeks I've finally managed to get time to edit and post the Lurevibe Weird Dicked Bear unboxing stream I did a coupl...
- [What's qDot Up To This Week? (2024-06-24 Edition)](https://buttplug.io/blog/2024-06-24-whats-qdot-up-to-this-week-2024-06-24-edition/index.md): Mostly trying to figure out what I should be up to. :|
- [Qdot On Projekt Melody Lewdcast At 6pm Ct 4pm Pt Today](https://buttplug.io/blog/2024-08-05-qdot-on-projekt-melody-lewdcast-at-6pm-ct-4pm-pt-today/index.md): I'm doing Projekt Melody's Lewdcast today at 4pm!
- [What's qDot Up To Lately? (2024-08-12 Edition)](https://buttplug.io/blog/2024-08-12-whats-qdot-up-to-lately-2024-08-12-edition/index.md): Dropping the idea that I'm gonna be doing this weekly again any time soon...
- [Buttplugio Is Now On Twitch](https://buttplug.io/blog/2024-09-04-buttplugio-is-now-on-twitch/index.md): In an effort to get over my procrastination about making more videos, I'm going to see if I can go the route of "streaming then cutting it down for...
- [New Youtube Video Testing Rump With My New Vtuber Av](https://buttplug.io/blog/2024-09-09-new-youtube-video-testing-rump-with-my-new-vtuber-av/index.md): Ok well as usual I'm horrible about remembering to announce streams here, but I did an impromptu stream last night showing off Renpona's new RUMP t...
- [What's qDot Up To This Week? (2024-09-09 Edition)](https://buttplug.io/blog/2024-09-09-whats-qdot-up-to-this-week-2024-09-09-edition/index.md): Too much stuff!
- [Lets Talk Tube Movers On Twitch 8pm Pt Tonight](https://buttplug.io/blog/2024-09-10-lets-talk-tube-movers-on-twitch-8pm-pt-tonight/index.md): TUNE IN TO TWITCH AT 8PM PACIFIC TIME TONIGHT TO GET THE LOW DOWN ON THE LOVENSE SOLACE PRO.
- [Going Live To Reverse Engineer The Solace Pros Linearcmd Support](https://buttplug.io/blog/2024-09-14-going-live-to-reverse-engineer-the-solace-pros-linearcmd-support/index.md): Streaming me trying to reverse engineer a device! How poorly could it possbily go?!
- [Going Live 3 30pm Pt Today 30 Min From Now To Continue Reverse Engineer](https://buttplug.io/blog/2024-09-15-going-live-3-30pm-pt-today-30-min-from-now-to-continue-reverse-engineer/index.md): Oh god if what I figured out is true I'm gonna have to turn on profanity warnings on my stream.
- [Streaming More Lovense Solace Pro Reverse Engineering On Twitch](https://buttplug.io/blog/2024-09-18-streaming-more-lovense-solace-pro-reverse-engineering-on-twitch/index.md): Please god let this stream be the end of this stupid project.
- [Live On Twitch Probably Not Doing Much Hardware Related This Time](https://buttplug.io/blog/2024-09-21-live-on-twitch-probably-not-doing-much-hardware-related-this-time/index.md): Just need to test my audio changes and build some new streaming screens. But feel free to come say hi, happy to answer Buttplug related questions w...
- [Obs Visualizer For Buttplug Stream](https://buttplug.io/blog/2024-10-04-obs-visualizer-for-buttplug-stream/index.md): Streaming at 2pm today (30 minutes from now) to work on OBS Browser visualizers for Buttplug devices!
- [Installing A Buttkicker On Twitch](https://buttplug.io/blog/2024-10-05-installing-a-buttkicker-on-twitch/index.md): Just got my buttkicker bass rumbler, time to attach it to my chair!
- [What's qDot Up To This Week? (2024-10-21 Edition)](https://buttplug.io/blog/2024-10-21-whats-qdot-up-to-this-week-2024-10-21-edition/index.md): Unemployment! Unless you count my own company, too bad that doesn't pay very well.
- [Live On Twitch Soldering Together Some Haptics](https://buttplug.io/blog/2025-01-01-live-on-twitch-soldering-together-some-haptics/index.md): Putting together tundra tracker haptics on twitch, in order to get back into the swing of streaming!
- [Streaming More Haptics Building On Twitch](https://buttplug.io/blog/2025-01-04-streaming-more-haptics-building-on-twitch/index.md): Finishing out building my tracker haptics!
- [Streaming Balatrobuzz The New Vibrator Mod For Balatro](https://buttplug.io/blog/2025-01-08-streaming-balatrobuzz-the-new-vibrator-mod-for-balatro/index.md): Mod is at [https://github.com/a-e-m/BalatroBuzz/](https://github.com/a-e-m/BalatroBuzz/)
- [Qdot On Techovertea Podcast Youtube](https://buttplug.io/blog/2025-01-31-qdot-on-techovertea-podcast-youtube/index.md): I'm on Brodie Robertson's TechOverTea Podcast/Youtube this week!
- [Does qDot Even Exist Anymore? (2025-02-17 Edition)](https://buttplug.io/blog/2025-02-17-does-qdot-even-exist-anymore-2025-02-17-edition/index.md): Sorta.
- [Streaming As Part Of The Romchip Fundraiser Today At 3pm Pt 6pm Et](https://buttplug.io/blog/2025-02-22-streaming-as-part-of-the-romchip-fundraiser-today-at-3pm-pt-6pm-et/index.md): I'll be on the ROMChip game histories journal fundraiser stream today at 3pm PT/6pm ET showing off one of my favorite games, Cubivore!
- [What's Up With qDot? (2025-05-05 Edition)](https://buttplug.io/blog/2025-05-05-whats-up-with-qdot-2025-05-05-edition/index.md): What once was a weekly newsletter is quickly turning bi-annual heh.
- [What's qDot Up To This Week? (2025-06-16 Edition)](https://buttplug.io/blog/2025-06-16-whats-qdot-up-to-this-week-2025-06-16-edition/index.md): Bringing about a world where buttplug doesn't suck to use...
- [What's qDot Up To This Week? (2025-06-23 Edition)](https://buttplug.io/blog/2025-06-23-whats-qdot-up-to-this-week-2025-06-23-edition/index.md): Updates two weeks in a row! A christmas miracle!
- [What's qDot Up To This Week? (2025-07-07 Edition)](https://buttplug.io/blog/2025-07-07-whats-qdot-up-to-this-week-2025-07-07-edition/index.md): Edging ever closer to the v4 release...
- [What's qDot Up To This Week? (2025-07-28 Edition)](https://buttplug.io/blog/2025-07-28-whats-qdot-up-to-this-week-2025-07-28-edition/index.md): Exciting new features!
- [What's qDot Up To This Week? (2025-09-01 Edition)](https://buttplug.io/blog/2025-09-02-whats-qdot-up-to-this-week-2025-09-01-edition/index.md): Maybe I'll win the powerball so I can work on this fulltime...
- [Buttplug V10b2 And Intiface Central V3b2 Released](https://buttplug.io/blog/2025-10-19-buttplug-v10b2-and-intiface-central-v3b2-released/index.md): The time has come!
- [What's qDot Up To This Week? (2025-12-01 Edition)](https://buttplug.io/blog/2025-12-01-whats-qdot-up-to-this-week-2025-12-01-edition/index.md): omfg buttplug spec v4 might be out before the end of the year
- [Merry Christmas, I got you a new Buttplug.io website!](https://buttplug.io/blog/2025-12-25-merry-christmas-i-got-you-a-new-buttplugio-website/index.md): Because why spend the holiday with friends and family when you can spend it debugging docusaurus.
- [Intiface Central v3 Beta 4 Live](https://buttplug.io/blog/2025-12-29-intiface-central-v3-beta4-live/index.md): Small update that still means a breaking change!
- [What's qDot Up To This Week? (2026-01-19 Edition)](https://buttplug.io/blog/2026-01-19-whats-qdot-up-to-this-week/index.md): So much for that end of the year buttplug v4 release
- [Buttplug v10/Intiface Central v3 Released!](https://buttplug.io/blog/2026-02-01-buttplug-v10-intiface-central-v3-released/index.md): It happened! It finally happened! 3.5 years of work, now released!
- [There will be no official Buttplug related memecoin](https://buttplug.io/blog/2026-02-13-there-will-be-no-official-buttplug-memecoins/index.md): Was wondering when this particular bit of stupidity would come for me, and here we are.
- [Intiface Game Haptics Router v20 Released!](https://buttplug.io/blog/2026-02-16-intiface-game-haptics-router-v20-released/index.md): [Intiface Game Haptics Router v20 is live!](https://github.com/intiface/intiface-game-haptics-router/releases/tag/v20)
- [Intiface Central v3.0.3 Released](https://buttplug.io/blog/2026-03-14-intiface-central-v3.0.3-released/index.md): It's that time again. We're releasing Intiface Central 3.0.3. This is an exciting release with a lot of bug fixes. Not so much in the way a new fea...