Skip to content

Instantly share code, notes, and snippets.

/* ----- GENERAL ARCHITECTURE--->
not valid
<-respond with error
|
|
|
|
+------------------------------------------------------------------------+
| FFMPEG | |
@chris9753
chris9753 / CustomTheme
Created December 2, 2015 03:53 — forked from mhartington/CustomTheme
If you want to make a custom theme for ionic, and are using scss, this is a base to get you started
//Custom Theme test
// Colors
// -------------------------------
$custom: #057b6c !default;
// Buttons
// -------------------------------
$button-custom-bg: $custom !default;
@chris9753
chris9753 / UserDisplay(Based off Multiple Gender)
Last active August 29, 2015 14:14
display users( Mutual Relationship)
//
// TinderViewController.swift
// E-gnite
//
// Created by Chris Da silva on 2015-01-29.
// Copyright (c) 2015 Chris Da silva. All rights reserved.
//
import UIKit
@chris9753
chris9753 / Custom Gender
Created January 29, 2015 19:20
Custom Gender Selection(Parse)
//
// SignUpViewController.swift
// E-gnite
//
// Created by Chris Da silva on 2015-01-27.
// Copyright (c) 2015 Chris Da silva. All rights reserved.
//
import UIKit
@chris9753
chris9753 / Tinder Swipe(IOS8)
Created January 27, 2015 00:23
Tinder Swipe Effect For IOS8 (SWIFT)
//Global Variables
var alphaX : CGFloat = 0
var orgState : CGPoint = CGPoint()
override func viewDidLoad() {
super.viewDidLoad()
//Adding the Label
var label: UILabel = UILabel(frame: CGRectMake(self.view.bounds.width/2 - 100 , self.view.bounds.height/2 - 50, 200, 100))
orgState = label.center
label.text = "Drag Me!"
label.textAlignment = NSTextAlignment.Center