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
WeatherControl: | |
Enabled: false | |
CustomWeatherTypes: | |
Enabled: false | |
Clear: | |
Allowed: true | |
Rain: | |
Allowed: true | |
ThunderStorm: | |
Allowed: true |
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
<?php | |
/** | |
* MCDragonRealms Minecraft player head avatar class. | |
* | |
* This class is able to generate player avatars based on any Minecraft player skin. | |
* | |
* Use the `p` GET param when doing direct HTTP requests to this file to set the avatar type, size and username. (p=TYPE/SIZE/USERNAME) | |
* | |
* Current supported types are (as you can see at the bottom of the script): |
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
/** | |
* Sudoku Opdracht - Week 4. | |
* A practical computer science project. | |
* | |
* @author Tim Visee | |
* @version 2 | |
* @website http://timvisee.com/ | |
* @copyright Copyright (c) Tim Visee 2014. All rights reserved. | |
*/ |
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
/** | |
* Flight Times - A practical computer science project. | |
* | |
* @author Tim Visee | |
* @website http://timvisee.com/ | |
* @copyright Copyright (c) Tim Visee 2014. All rights reserved. | |
*/ | |
#include <stdio.h> | |
#include <stdlib.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
REM Set some constants | |
set appName=Minecraft Server Runner | |
set appVersionCode=2 | |
set appVersion=0.1.1 | |
REM Initialize | |
call:init | |
REM Build the window | |
call:buildWindow |
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 "mastersettings.h" | |
#include <avr/io.h> | |
#include <util/delay.h> | |
#include "twiMaster.h" | |
#include "usart_fnct.h" | |
#include <stdbool.h> | |
#include <avr/interrupt.h> | |
#define BAUDRATE 9600 | |
#define UBRRVAL ((F_CPU/(BAUDRATE*16UL))-1) |
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
// | |
// CODE | |
// | |
use carbon\core\datetime\DateTime; | |
use carbon\core\datetime\DateTimeUtils; | |
use carbon\core\datetime\DateTimeZoneUtils; | |
$timezone = DateTimeZoneUtils::parse('Europe/London'); |
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
<?php | |
namespace carbon\core\datetime\interval; | |
use carbon\core\datetime\DateTime; | |
use DateInterval as PHPDateInterval; | |
use DomainException; | |
use Exception; | |
use InvalidArgumentException; |
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
<?php | |
namespace carbon\core\datetime\interval; | |
use carbon\core\datetime\DateTime; | |
use DateInterval as PHPDateInterval; | |
use DomainException; | |
use Exception; | |
use InvalidArgumentException; |
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
<?php | |
/** | |
* DateTime.php | |
* | |
* A class to representation date and time as an object. | |
* This class allows you to get the current date and time of the server, to format the date and time in many different | |
* ways using different timezones and also to travel through time. | |
* Note: Even though this class uses futuristic technology to make date and time calculations, it doesn't allow humans | |
* to travel through time. |
OlderNewer