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
Alexvaris Thompsonweather | |
Alexius Thompsonberry | |
Alexaquan Thompsonington | |
Alexarius Thompsonberry | |
Alexatro Thompsoniums | |
Alexvaris Thompsonington | |
Alexarius Thompson-Wallace | |
Alexvaris Thompsonington | |
Alexvaris Thompsonington | |
Alexmerius Thompsonington |
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
Jonvaris Bolligerberry | |
Jonmerius Bolligerington | |
Jonvaris Bolliger IV | |
Jonatro Bolliger-Lamar | |
Jonaris Bolliger-Lamar | |
Jonmerius Bolliger V | |
Jonius Bolligerweather | |
Jonatro Bolligerumz | |
Jonaquan Bolliger IV | |
Jonmerius Bolliger III |
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
Dervaris Peck IV | |
Deratro Peckweather | |
Derius Peck-Wallace | |
Deratro Peckumz | |
Deratro Peckiums | |
Dermerius Peckiums | |
Derius Peck V | |
Dervaris Peck-Wallace | |
Derion Peck V | |
Deraris Peck III |
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
MessageData { | |
MessageWrapper data { | |
Message message { | |
boolean readAt | |
} | |
} | |
String channel; | |
} | |
Message message |
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
package com.mydietitian.mobilerd.activities; | |
import android.app.ProgressDialog; | |
import android.graphics.Bitmap; | |
import android.os.Bundle; | |
import android.webkit.WebView; | |
import android.webkit.WebViewClient; | |
import com.mydietitian.mobilerd.utils.Network; | |
import com.mydietitian.mobilerd.R; |
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
class MockContest { | |
var title:String? | |
var subTitle:String? | |
var image:String? | |
init(title: String, subTitle: String, image: String){ | |
self.title = title | |
self.subTitle = subTitle | |
self.image = image |
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
extension Int { | |
var days: NSTimeInterval { | |
let DAY_IN_SECONDS = 60 * 60 * 24 | |
var days:Double = Double(DAY_IN_SECONDS) * Double(self) | |
return days | |
} | |
} | |
let date = NSDate() | |
let twoDaysAgo = NSDate(timeInterval: -3.days, sinceDate: date) |
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
private func heightCalculation(indexPath:NSIndexPath) -> CGFloat{ | |
let cell = tableView.cellForRowAtIndexPath(indexPath) as UITableViewCell | |
layoutCell(cell) | |
let size = cell.contentView.systemLayoutSizeFittingSize(UILayoutFittingCompressedSize) | |
return size.height + 2 | |
} |
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
. | |
├── core | |
│ └── date_helper.swift | |
├── data | |
│ └── models | |
│ ├── PFContest.swift | |
│ └── ParseObjectLoader.swift | |
├── network | |
│ ├── ParseContestRequests.swift | |
│ ├── ParseRequestCaller.swift |
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
let HEADERS:[String] = [ | |
"FULL NAME", | |
"USERNAME", | |
"PASSWORD", | |
"DOB", | |
"ZIPCODE", | |
"PHONE NUMBER" | |
] | |
let ROWS:[UITableViewCell] = [ |