#buddycloud
Explore tagged Tumblr posts
Text
So, buddycloud (beta.buddycloud.org) now has topics that can be created to post to, and images/videos are embedding. I wonder where it will go? I must admit, I do like the look of the project. Like a brighter, friendlier twitter/chat something. You can even change your status etc now. though my avatar is still a funny looking gravatar, lol. It's still exciting to see these projects grow and develop. #buddycloud . Does anyone know what the possibility of #federation will be with their particular platform?
15 notes
·
View notes
Text
50¢ user testing
It's painful to realise the harsh difference between:
"I think I know how people use our website"
and
"Why is he clicking there? Can't he see you have to click on the follow button before you can post? Aaaarch!"

User testing is painful: it shows up your false assumptions. The great news is that the sooner you know, the sooner you can begin sanding off the rough edges in your product.
There are some user testing services that charge $39 per test. This approach will cost you 50¢ per test and give you a video of a complete newbie using your website.
The trick is a combination of Amazon's Mechanical Turk and Screencast-o-matic.
Here are the steps to begin testing:
Sign up and create a HIT (Human Intelligence Tasks) in Mechanical Turk. For simplicity click on Create Hit Individually The other forms are too complicated for our needs.
When creating your HIT, in Answer Format, select: File upload. Our users are going to upload their screencast here.
Provide detailed instructions. Here's a current test that we are running at buddycloud:
Go to http://screencast-o-matic.com/ and hit "start recording".
Go to https://beta.buddycloud.org and hit register.
(screencast-o-matic will record your voice) tell us about what you see and how you find the registration process.
Log in at https://beta.buddycloud.com
Tell us what you think of buddycloud. What is your first impression of buddycloud?
Follow a channel on the buddycloud website.
How could we could improve this sign-up service.
Go back to your screencast-o-matic screen and stop the recording.
Upload your screencast-o-matic recording to this Mechanical-turk HIT's upload box.
Have a lovely day!
Set a rate per HIT. 50¢ per test gets a good response rate.
Mechanical Turk will email you when a new file is uploaded. Download and share with your team. And don't forget to approve the HIT so that your worker gets paid.
I hope this helps you with your user testing. It's helping us find out where we can improve at buddycloud.
Happy testing

5 notes
·
View notes
Text
Simon Tennant at Realtime Conf Europe
Simon is a good friend of ours and we share the same hope about an decentralised open social web. His effort, [Buddycloud](http://buddycloud.com/) relies on the XMPP realtime protocol to let friends share and interact online. When I asked about the details of his talks, he came up with this: > Everything you need to know to build your own distributed, federated social network. With working examples, code and realtime demo.
0 notes
Text
Google sponsors two great developers to work on buddycloud
buddycloud is really proud to be working with two great students from Google's Summer of Code program.
Denis Washington will be building an HTTP API to buddycloud.
buddycloud has an event driven architecture (everything in buddycloud is realtime and events can happen on any domain that runs buddycloud).
Soon, developers who want to extend buddycloud will benefit from the new HTTP API: Denis's HTTP API will give developers a nice way to plug existing JSON-based queries into buddycloud's realtime architecture. buddycloud users will still have the "ooooh this is fast and nice" experience.
Rodrigo Duarte will be building a buddycloud media server (GSOC proposal).
The buddycloud media server makes it so simple to drag and drop media into a channel and chat message. Media is magically permissioned to the person you are talking with or the followers of your channel. But simple-to-use will mean that Rodrigo will be working hard on a design that removes all user confusion and "just works".
I'm really looking forward to working with Rodrigo and Denis and to using their code in production.
Also, a huge thanks to Kev for coordinating and organising the Google summer of code. Without him, none of this would be possible. Thanks Kev.
Welcome Google summer of code programmers!
5 notes
·
View notes
Text
Using Docker with Github and Jenkins for repeatable deployments
Docker helps us deploy to Buddycloud’s testing and production environments. We use Docker to run Buddycloud’s hosted environment. And deploy after every commit to our testing and production Git branches.
Again and again.
Automatically.
Background: we’re holded up in the Austrian mountains working on the new Buddycloud hosting platform. We need to be able to reliably test and deploy code. What generally happens is that, unless servers are completely rebuilt between test or production, they slowly degrade over time. A new library here, a config change there. And soon your tests are no longer against a vanilla environment.

Also, we want to be testing on exactly the same environment that we are running in production.
Core services and Docker deployments
What services should be run under docker and what are “core” services that other apps use?
We separate core services like databases, DNS and LDAP (for server authentication) from services that are updated and managed by Docker. These is is our plumbing - it’s just got to be there.
This has the knock on effect that when we do deployments to services that use a database: the deployed service or the application MUST take care of ensuring that the database is at the correct schema version.
This is a good thing: it keeps us honest about upgrades working smoothly. And catching failures before they hit production.
By default docker exposes no ports. We need to expose some ports to the outside world, and some ports to localhost so that processes can intercommunication. For example our Apache instances run a reverse proxy back to the buddycloud-http-api. The ports are exposed using the docker startup commands.
For example Apache uses
docker run -d --name=apache -h=si.buddycloud.com -P -p 80:80 -p 443:443 -t apache
So we have designed the following code flow that takes code from a developers laptop to SI and if that’s passing, we manually make a call to push to production.
We ended up with the following code > deployment flow:
Developer checks out https://github.com/buddycloud/hosting.git works on their change or feature branch.
when they are ready to test in a system integration environment they commit back to the dev-candy branch
Github triggers a Jenkins hook that fires off the scripts from https://github.com/buddycloud/buddycloud-package/tree/master/projects/hosting/docker
Jenkins tries to build the project
If successful Jenkins calls the docker scripts that deploy to either production or system integration environments
the service is started and visible on https://hosting.buddycloud.com
Buddycloud helps you quickly add communication to your app. If you would like to try it out see Buddycloud Getting Started page.
4 notes
·
View notes
Text
Learn Coffeescript with an expert (and hack on the buddycloud webclient)
Dodo has kindly offered a repeat of his popular Coffeescript intro course.
His session will get you ramped up with the fundamentals of coffeescript and he'll do a code walkthrough of the buddycloud webclient code.
To join, add your name to this Doodle form: http://www.doodle.com/khnd7kwwe5rc65nt
We'll do this through a Google hangout - so leave your contact details on the Doodle and we'll email you when we fire up the hangout.
Your host. (photo taken by ft at the last bc hackerthon)
3 notes
·
View notes
Video
youtube
Last week we presented at FOSDEM, under the theme of: Secure, Federated Communication. Here's the video.
0 notes