Skip to content

Instantly share code, notes, and snippets.

View adjmedina's full-sized avatar

Antonio de Jesús Medina adjmedina

View GitHub Profile
@Klerith
Klerith / instalaciones-javascript-curso.md
Last active July 1, 2024 03:13
Instalaciones recomendadas - Curso de JavaScript
@danielquisbert
danielquisbert / Key_starUML.md
Last active June 21, 2024 22:43
Key para starUML
from django.db import models
import ParsePy
ParsePy.APPLICATION_ID = ""
ParsePy.MASTER_KEY = ""
class ParseObject(models.Model):
objectdId = models.CharField(max_length=100, null=True, blank = True)
class Meta:
abstract = True
anonymous
anonymous / gist:2472974
Created April 23, 2012 18:42
UIColors usando RGB en Objective C
#define UIColorFromRGB(rgbValue) [UIColor \
colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \
green:((float)((rgbValue & 0xFF00) >> 8))/255.0 \
blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]