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
#!/bin/sh | |
# Pre commit hook that prevents FORBIDDEN code from being commited. | |
# Add unwanted code to the FORBIDDEN array as necessary, single-space separated. | |
# Ensure executable: "chmod +x .git/hooks/pre-commit" | |
FILES_PATTERN='\.(rb|js|coffee|txt)(\..+)?$' | |
FORBIDDEN=( \.only ) | |
FAILED=false |
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 System Info ### | |
## Please include this information when posting support requests ## | |
Multisite: No | |
SITE_URL: http://galaxymotors.qa.caorda.com | |
HOME_URL: http://galaxymotors.qa.caorda.com |
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 | |
/* | |
"WordPress Plugin Template" Copyright (C) 2013 Michael Simpson (email : [email protected]) | |
This file is part of WordPress Plugin Template for WordPress. | |
WordPress Plugin Template is free software: you can redistribute it and/or modify | |
it under the terms of the GNU General Public License as published by | |
the Free Software Foundation, either version 3 of the License, or | |
(at your option) any later version. |
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
/* tinker_neopixel v1.3 */ | |
/* Includes ------------------------------------------------------------------*/ | |
#include "application.h" | |
/* Function prototypes -------------------------------------------------------*/ | |
int tinkerDigitalRead(String pin); | |
int tinkerDigitalWrite(String command); | |
int tinkerAnalogRead(String pin); | |
int tinkerAnalogWrite(String command); |
NewerOlder