Skip to content

Instantly share code, notes, and snippets.

View ginniecodes's full-sized avatar
🌴
Working from home

Ginnie ginniecodes

🌴
Working from home
View GitHub Profile

Keybase proof

I hereby claim:

  • I am jhia on github.

  • I am ginnie (https://keybase.io/ginnie) on keybase.

  • I have a public key ASB0qe18XI4BDNo9BMG0n41UrENDntrXofWiUZ8THI07Ugo

@ginniecodes
ginniecodes / zoo.cpp
Created July 28, 2017 17:04
4 a girl I admire...
#include <iostream>
#include <cstring>
using namespace std;
/****** Taxonomia Animal ***************
*
* Ciencia que estudia la clasificacion
* de los seres vivos.
*
@ginniecodes
ginniecodes / linearicons.md
Last active June 30, 2017 20:56
List of linearicons inside Sand UI

Linearicons Names

Just put one of this name as prop on the Icon component and you will have an icon ❤️

  • alarm
  • apartment
  • arrow-down-circle
  • arrow-down
  • arrow-left-circle
  • arrow-left
  • arrow-right-circle
@ginniecodes
ginniecodes / ionicons.js
Created May 26, 2017 19:51
JS object of Ionicons SVG format
const ionicons = {
'alert-circled': {
unicode: '&#xf100;',
source: 'M476.7,422.2L270.1,72.7c-2.9-5-8.3-8.7-14.1-8.7c-5.9,0-11.3,3.7-14.1,8.7L35.3,422.2c-2.8,5-4.8,13-1.9,17.9\
c2.9,4.9,8.2,7.9,14,7.9h417.1c5.8,0,11.1-3,14-7.9C481.5,435.2,479.5,427.1,476.7,422.2z M288,400h-64v-48h64V400z M288,320h-64\
V176h64V320z',
properties: {}
},
alert: {
unicode: '&#xf101;',
//Hola! :) este es un comentario de una linea
/*Y este
es
un
comentario
de varias
lineas
(y tetrico) */
//crear una variable
#Rounded Glass Theme by CassidyJames
#Forked by jhia
[PlankTheme]
#The roundness of the top corners.
TopRoundness=40
#The roundness of the bottom corners.
BottomRoundness=1
#The thickness (in pixels) of lines drawn.
LineWidth=1
@ginniecodes
ginniecodes / full-screen.js
Created April 17, 2016 21:38
Full Screen a part of the site.
module.exports= function (_) {
var element = document.querySelector(_);
var requestMethod = element.requestFullScreen || element.webkitRequestFullScreen || element.mozRequestFullScreen || element.msRequestFullScreen;
requestMethod.call(element);
}
@ginniecodes
ginniecodes / voice.py
Created October 13, 2015 14:20
First time using eSpeak was...
import os
os.system("espeak -vmb-en1+0.5 'Hello world. I am Matthew! How are you?'")