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
| <script src="https://d19cc29qsd5ddg.cloudfront.net/widget/add-to-cart/v1/ts-add-to-cart-embed.js"></script> | |
| <link rel="stylesheet" | |
| href="https://d19cc29qsd5ddg.cloudfront.net/widget/add-to-cart/v1/ts-add-to-cart-embed.css" /> | |
| <style> | |
| .description.visible { | |
| .descriptionContent { | |
| border: 3px solid; | |
| } | |
| } |
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
| import platform | |
| import time | |
| import usb.core | |
| import usb.util | |
| class Armageddon(object): | |
| """ | |
| Based on https://github.com/codedance/Retaliation | |
| """ |
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
| create or replace view num_employees_dept as | |
| select | |
| nvl(department_id,0) department, | |
| count(*) as num_Employees | |
| from employees | |
| group by department_id; | |
| select * from num_employees_dept; | |
| create or replace view avg_sal_dept as |
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: Airplanes | |
| Certified = { | |
| eid:number, aid:number | |
| 1, 1 | |
| 2, 2 | |
| 2, 3 | |
| 3, 1 | |
| 3, 4 | |
| 3, 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
| INFO[0000] Registering Resource Resource=HiveResource | |
| INFO[0000] Registering Resource Resource=BeeResource | |
| INFO[0000] Registering Resource Resource=ChainResource | |
| INFO[0000] Registering Resource Resource=ActionResource | |
| INFO[0000] | |
| INFO[0000] Beehive is buzzing... | |
| INFO[0002] Handling request Method=GET URL=/ | |
| INFO[0002] serving config/index.html ... (from ) | |
| INFO[0002] Finished request Duration=8.150537ms Method=GET Response=200 URL=/ | |
| INFO[0003] Handling request Method=GET URL=/assets/vendor-be4f842fde3a872763f02c82eea2cca0.css |
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
| void showLeaks() { | |
| int sizeOfList = 0; | |
| int amountOfFree = 0; | |
| int numBlocks = 0; | |
| struct block_meta * nextBlock = (struct block_meta *) global_base; | |
| while (nextBlock) { | |
| numBlocks++; | |
| sizeOfList += nextBlock->size; |
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
| INCLUDES=-I. | |
| CC=gcc | |
| CFLAGS=-I. -c -g -Wall $(INCLUDES) | |
| FLAGS = -O0 -W -Wall -Wextra -g | |
| LINKARGS=-lm | |
| LIBS=-lm | |
| # Productions | |
| all : assign2 |
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
| Sleepyhead : Passion Pit :Manners : 8 | |
| The Kids Don't Stand a Chance : Vampire Weekend :Vampire Weekend : 3 | |
| For Emma : Bon Iver :For Emma, Forever Ago : 7 | |
| White Winter Hymnal : Fleet Foxes :Fleet Foxes : 12 | |
| You Got Yr. Cherry Bomb : Spoon :Ga Ga Ga Ga Ga (Bonus Track Version) : 10 | |
| 1901 : Phoenix :Wolfgang Amadeus Phoenix : 6 | |
| Sweet Disposition : The Temper Trap :Conditions : 24 | |
| Cheerleader : Grizzly Bear :Veckatimest : 16 | |
| Little Secrets : Passion Pit :Manners : 19 | |
| Ragged Woo |
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
| /** | |
| * Abstract Class: Employee | |
| * <p> | |
| * Represents an employee for payroll calculations. All calculations are based | |
| * on an hourly wage. Therefore, for salaried employees, their annual salary | |
| * must be converted to an equivalent hourly wage. | |
| * <p> | |
| * | |
| * @author Debra M. Duke | |
| * @version 3.0, updated 2/20/2016 |