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
#thanks to https://flats.github.io/blog/2015/12/02/getting-to-know-rubys-map-and-reduce/ | |
pry(main)> x = [1,2,3] | |
=> [1, 2, 3] | |
pry(main)> y = [2,5,6] | |
=> [2, 5, 6] | |
pry(main)> z = [42,41,5] | |
=> [42, 41, 5] | |
pry(main)> n = [x,y,z] | |
=> [[1, 2, 3], [2, 5, 6], [42, 41, 5]] |
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
Finished creating <default-centos-73> (0m48.69s). | |
-----> Converging <default-centos-73>... | |
Preparing files for transfer | |
Preparing dna.json | |
Resolving cookbook dependencies with Berkshelf 4.3.3... | |
Removing non-cookbook files before transfer | |
Preparing data_bags | |
Preparing solo.rb | |
-----> Chef Omnibus installation detected (12.10.24) | |
Transferring files to <default-centos-73> |
NewerOlder