-
Instalar Node Sitio oficial de node
-
Instalar VSCode Editor Visual Studio Code
-
Instalar Google Chrome Google Chrome
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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] |