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
-- this is for the Q4 of Relational Algebra Assignment for CS340 | |
group: PlayerTeamCities | |
Player = { | |
id:number, score:number, team_id:number | |
1, 100, 1 | |
2, 200, 2 | |
3, 99, 1 | |
4, 100, 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
-- this is for the Q4 of Relational Algebra Assignment for CS340 | |
group: PlayerTeamCities | |
Player = { | |
id:number, score:number, team_id:number | |
1, 100, 1 | |
2, 200, 2 | |
3, 99, 1 | |
4, 100, 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
group: q_piazza | |
student = { | |
sid:number, fname:string, lname:string | |
1,'ABC','XYZ' | |
2,'PQR','UVZ' | |
3,'AAA','BBB' | |
4,'XXX','YYY' | |
} |
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
group: auto_dealer_schema | |
Model = { | |
model_id:number, model_name:string, first_production_year:string | |
1,'Model1',"1985" | |
2,'Model2',"1987" | |
3,'2 Series',"1990" | |
4,'Focus',"1986" | |
} |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDTc3XDLlwIcQRpdwyqTaEjJLXcxyNK4HA4ywU+uj06BV+x4h6uVG0SGbVJ6ivMscPT8178Y7HiIGWwLTSmbN5cSL1R9zgUEtOlBGB4JxaWS+yXMYN2TyqxPSraqyRnFSCQhPgAaVe+VppL+ic6A9otZ20kD4jbCCXcKpGOMVBrHWdjHVm1RL+RJ3rTePFNXEvyN1SxmKgmJ7W0p09NWummNENcLeLJlZGMXNNdem+2yIw3zlpi2r4q9NiYBzry5HdCSvAvzeKcoLUmM+eS7eVrHaCGN/IjcebvzFU/ddJl52VmQm99H1ZvHiLpCP6XZ6sXu20NKkewvgggYdh6+f+YWoI6xbL5xQch4gQS0A/Kk26UknaaNmU4ityLT5N84TGirCsyheH7OHW+hLLrPOFviDuvcTwm+WjhfGY1q8uRtNPqMQbVjnr3MG4jdwmQPZgRiw6hnnqSG6kFQAFDubCPz1RRbKjfUJrS63K3zVkcyeQgsjiLDixNhZRfdMp7GcANpIVmMxDN2YixI8nTcwlqhgnGI4WlB36E2gqS1KzmS3MUFoFWETM8AvBu3RWrG26yoLR6KlrsHrV76c1BU6oGOKrGEvVrlqzQW+IK1Li2xPhTellmKRTTskhALsvpgMJx3szGZ77GF91c7zuS/rvr51koiQvMdpHi0i+Z+JQMmQ== samarendra@samarendra-workstation |
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
#!groovy | |
import groovy.json.JsonOutput | |
import groovy.json.JsonSlurper | |
def label = "mypod-${UUID.randomUUID().toString()}" | |
podTemplate(label: label, yaml: """ | |
spec: | |
containers: | |
- name: mvn | |
image: maven:3.3.9-jdk-8 |
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
#!/bin/sh | |
INFILE="$@" | |
TEMPFILE=/tmp/$RANDOM | |
echo "processing file: " $INFILE | |
echo "extracting aac" | |
ffmpeg -i "$INFILE" -codec: copy $TEMPFILE.aac | |
echo "stuffing aac into m4a container" | |
ffmpeg -i $TEMPFILE.aac -bsf:a aac_adtstoasc -codec: copy $TEMPFILE.m4a | |
echo "replacing old with new" |