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
[redshift] | |
gamma=0.9 | |
adjustment-method=vidmode | |
location-provider=manual | |
[manual] | |
lat=48.51 | |
lon=2.20 |
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
#!/usr/bin/env perl | |
#============================================================================= | |
# | |
# FILE: status.pl | |
# | |
# USAGE: ./status.pl [options] | |
# | |
# DESCRIPTION: Give Nagios status about hosts and services | |
# | |
# REQUIREMENTS: Perl 5.10.1; Term::ANSIColor |
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
#!/usr/bin/env perl | |
use v5.14; | |
use strict; | |
use warnings; | |
use utf8; | |
use open IO => ':utf8'; | |
use open ':std'; | |
use Encode; |
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
#include<stdio.h> | |
int main() | |
{ | |
printf("{ \"changed\": false }"); | |
} |
NewerOlder