Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am juliaguar on github.
  • I am mokus (https://keybase.io/mokus) on keybase.
  • I have a public key whose fingerprint is B2B9 C537 03CF 8BA2 AFAB 2D48 472A 43A0 20C4 7ACC

To claim this, I am signing this object:

@juliaguar
juliaguar / index.html
Created July 3, 2014 13:20
trying to get iOS to play audio and video simultaniously
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function playVid() {
var myAudio = document.getElementsByTagName('audio')[0];
var myVideo = document.getElementsByTagName('video')[0];
myVideo.play();
// var mediaCrtl = new MediaController();
// myAudio.controller = mediaCrtl;
@juliaguar
juliaguar / rgsoc_conclusion
Created October 8, 2013 11:05
RGSOC conclusion
When Autumn comes, it means the summer is over, so we can say with it the Rails Girls Summer of Code.
But things must be closed and one of the best ways to do it, is to share the experience, so we will try to do that.
First we will explain the context in which we participated, how it developed and with whom and things that were great and the ones that can be improved.
The context was a bit exceptional, Rails Girls Summer of Code, an initiavive that was more or less improvised after one of the Rails Girls workshops, all the positive energy received during those workshops and the great feedback from the women made it possible.
**The set up that we had,
Project that we selected: Diaspora - free social network
Do pair programing - TeamD-github
Have a coach
Have another coach to understand the sysadmin insides of D*
@juliaguar
juliaguar / gist:6061489
Last active December 20, 2015 03:09
diaspora layout_helper
# Copyright (c) 2010-2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file.
# These helper methods can be called in your template to set variables to be used in the layout
# This module should be included in all views globally,
# to do so you may need to add this line to your ApplicationController
# helper :layout
module LayoutHelper
include ApplicationHelper