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
// Breakpoint Variables | |
$xs-break: em(400px); | |
$sm-break: em(600px); | |
$md-break: em(800px); | |
$lg-break: em(1000px); | |
$xl-break: em(1200px); | |
// Size Suffixes | |
$xs-suffix: "-xs"; | |
$sm-suffix: "-sm"; |
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
// Breakpoint Variables | |
$xs-break: em(400px); | |
$sm-break: em(600px); | |
$md-break: em(800px); | |
$lg-break: em(1000px); | |
$xl-break: em(1200px); | |
// Size Suffixes | |
$xs-suffix: "-xs"; | |
$sm-suffix: "-sm"; |
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
<!doctype html> | |
<html> | |
<head> | |
<title>Chart Example</title> | |
<script src="chart.js"></script> | |
</head> | |
<body> | |
<div style="width: 50%"> |
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
<!doctype html> | |
<html> | |
<head> | |
<title>Chart Example</title> | |
<script src="chart.js"></script> | |
</head> | |
<body> | |
<div style="width: 50%"> |
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
<!doctype html> | |
<html> | |
<head> | |
<title>Chart Example</title> | |
<script src="chart.js"></script> | |
</head> | |
<body> | |
<div style="width: 50%"> |
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
<!doctype html> | |
<html> | |
<head> | |
<title>Chart Example</title> | |
<script src="chart.js"></script> | |
</head> | |
<body> | |
<div style="width: 50%"> |
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
<!doctype html> | |
<html> | |
<head> | |
<title>Chart Example</title> | |
<script src="chart.js"></script> | |
</head> | |
<body> | |
<div style="width: 50%"> |
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
<!doctype html> | |
<html> | |
<head> | |
<title>Chart Example</title> | |
<script src="chart.js"></script> | |
</head> | |
<body> | |
<div style="width: 50%"> |
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
/** | |
Dining Philosophers Problem | |
Written by David J Pfeiffer | |
Solution Name: Resource Hierarchy | |
Compile on UNIX system: gcc -o main -std=c99 main.c -lpthread | |
**/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <pthread.h> |
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
#include <iostream> | |
#include <cstdlib> | |
#include <Windows.h> | |
#include <limits.h> | |
using namespace std; | |
class Base | |
{ | |
public: |
OlderNewer