-
Track sales
-
Quickly identify most profitable products and categories
-
Know what to keep on shelves and what to drop
-
Stop wasting time on unprofitable activities
-
Produce visual at-a-glance data about sales performance
-
Track inventory levels
This file contains 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
What is it? | |
* https://unraid.net/product | |
* Hardware-agnostic Slackware-based OS | |
* Creates a flexible disk array that can change over time and be built from mix and matched drives | |
* Allows up to 2 parity drives to prevent data loss in case of a disk failure | |
What problems does it solve? | |
* Lots of files on separate machines, never know where anything is | |
* Drives fill up and files get separated | |
* Virtual machines, applications, media etc... all must be duplicated to be available everywhere |
This file contains 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
<html> | |
<body> | |
<iframe src="fake_form.html" style="visibility:hidden; display:none"></iframe> | |
<iframe src='puppy.html' width="100%" height="100%" frameborder="0" scrolling="no" style="overflow:hidden"></iframe> | |
</body> | |
</html> |
This file contains 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
action | |
active_player | |
add_on | |
aggregate_limit | |
aggregate_winnings | |
all_in | |
all_or_nothing | |
ante | |
arcade_casino | |
arm |
This file contains 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
password | |
123456 | |
12345678 | |
1234 | |
qwerty | |
12345 | |
dragon | |
pussy | |
baseball | |
football |
This file contains 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
password | |
123456 | |
12345678 | |
1234 | |
qwerty | |
12345 | |
dragon | |
pussy | |
baseball | |
football |
This file contains 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
password | |
123456 | |
12345678 | |
1234 | |
qwerty | |
12345 | |
dragon | |
pussy | |
baseball | |
football |
This file contains 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
require 'minitest/autorun' | |
require 'minitest/pride' | |
# Write a method which accepts an array as the first paramater and a number | |
# as the second parameter. Return true if two of the numbers in the array sum | |
# to the second parameter. | |
def complements?(array, sum) | |
return false unless array | |
return false if array.length < 2 |
This file contains 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
require 'minitest/autorun' | |
require 'minitest/pride' | |
# Write a method which returns the first n primes, where n is provided to the | |
# method as a parameter. | |
# | |
# Remember that the % operator (modulo) is your friend. It returns a zero if one | |
# number is divisible by another number. In other words, 4 % 2 == 0. | |
# WRITE YOUR CODE HERE. Name your method `primes`. |
NewerOlder