/* Dont show mobile hamburgermenu when desktop menu is displayed */
@media screen and (min-width: 866px) {
.mobile-menu-btn {
display: none !important;
}
}
/* Properly positiion toggle caret; adjust as needed */
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
# see https://beebom.com/useful-best-minecraft-commands/ | |
# | |
# Minecraft java version 1.19.3 - 1.21.x | |
# Syntax: <some-text> indicates text that will be replaced (brackets included) | |
# Example: | |
# /teleport <player-to-be-teleported> @s | |
# If the player to be teleported was named ArnoldSchoenberg, then the final command would be: | |
# /teleport ArnoldSchoenberg @s | |
# Summon a flying pig |
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
BEGIN:VCALENDAR | |
PRODID:-//Google Inc//Google Calendar 70.9054//EN | |
VERSION:2.0 | |
CALSCALE:GREGORIAN | |
METHOD:PUBLISH | |
X-WR-CALNAME:CCS HS Baseball | |
X-WR-TIMEZONE:America/Chicago | |
X-WR-CALDESC: | |
BEGIN:VEVENT | |
DTSTART:20200307T003000Z |
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
<note> | |
<to>Tove</to> | |
<from>Jani</from> | |
<heading>Reminder</heading> | |
<body>Don't forget me this weekend!</body> |
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
html,body{margin:0;font-family:'Montserrat','helvetica neue',sans-serif!important} | |
html,body{background-color: black;overflow-x: hidden} | |
.screenreader-only,.screenreader-only a {position: absolute;opacity: 0;z-index: -10;} | |
/* header */ | |
#div_Header,#gdbHeaderWrapper,.topSection,.bottomSection,#ProcessForm {width:100%;float:left;clear:both} | |
#div_Header{margin-top:1em} | |
.bottomSection ul li {width:90%;text-align:right;color:#EE2669;font-size:1.1em} | |
.bottomSection ul li a {text-decoration: none;color: #fff} | |
.bottomSection ul li a:hover {color: #00ade1!important;} |
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
<?php | |
namespace App\Http\Controllers; | |
/** | |
* Written in a Laravel controller for ease of development. | |
* Nullable type hints (PHP 7.1 and up) in use. | |
*/ | |
class TestController extends Controller | |
{ |
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
function __acqOp() { | |
$(document).ready(function () { | |
var acqOpVideos = { | |
/* | |
——————————————————————————————————————————————————————————————————————————————————————————————— | |
| | |
| PROPERTIES | |
| |
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
# Props to @Mizener on https://github.com/scotch-io/scotch-box/issues/157 | |
sudo apt-get update | |
sudo add-apt-repository ppa:ondrej/php | |
sudo apt-get install php7.0 | |
sudo apt-get update | |
sudo apt-get install php7.0-mysql libapache2-mod-php7.0 | |
sudo a2dismod php5 | |
sudo a2enmod php7.0 |
This line chart is constructed from a TSV file storing the daily average temperatures of New York, San Francisco and Austin over the last year. The chart employs conventional margins and a number of D3 features:
- d3.tsv - load and parse data
- d3.time.format - parse dates
- d3.time.scale - x-position encoding
- d3.scale.linear - y-position encoding
- d3.scale.category10, a d3.scale.ordinal - color encoding
- d3.extent, d3.min and d3.max - compute domains
- [d3.k
This simple line chart is constructed from a TSV file storing the closing value of AAPL stock over the last few years. The chart employs conventional margins and a number of D3 features:
- d3.tsv - load and parse data
- d3.time.format - parse dates
- d3.time.scale - x-position encoding
- d3.scale.linear - y-position encoding
- d3.extent - compute domains
- d3.svg.axis - display axes
- d3.svg.line - display line shape
NewerOlder