Skip to content

Instantly share code, notes, and snippets.

swift code:
while (counter < 50){
patientName = newPatient.patientName + String(counter)
FIRDatabase.database().reference().child("testTable").child("patient").setValue(patientName)
FIRDatabase.database().reference().child("testTable").child("patient").child(patientName).child("patient DOB").setValue(newPatient.patientDOB)
FIRDatabase.database().reference().child("testTable").child("patient").child(patientName).child("test var").setValue(newPatient.patienttest)
FIRDatabase.database().reference().child("testTable").child("patient").child(patientName).child("test var 1").setValue(newPatient.patienttest1)
counter += 1
img {
border: 0;
}
#dock-container {
position: fixed;
bottom: 0;
text-align: center;
width: 100%;
}
#dock {
img {
border: 0;
}
#dock-container {
position: fixed;
bottom: 0;
text-align: center;
width: 100%;
}
#dock {
@qHack
qHack / hw9
Last active October 16, 2016 21:33 — forked from anonymous/hw9
#include <iostream>
#include <iomanip>
using namespace std;
int SIZE;
int * arrayEx (int * array, int SIZE);
int main() {
int array[SIZE];
import random
calreadycalled = []
halreadycalled = []
computer = "O"
human = "X"
turn = "X"
lastmove = 0