Skip to content

Commit 1f179c2

Browse files
committed
added url shortener checker + some comments
1 parent 065ea08 commit 1f179c2

30 files changed

Lines changed: 198 additions & 56 deletions

c-cpp/bubbles/bubbles.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
#include <errno.h>
1313
#include <fstream>
1414

15+
// written by Martin Scharm
16+
// see http://binfalse.de
1517

1618
using namespace std;
1719

c-cpp/nim.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include <stdlib.h>
33

44
/* written by martin scharm
5-
* see https://binfalse.de
5+
* see http://binfalse.de
66
*
77
* you have to take a various number of o's
88
* from *one* of the stacks. if you did so,

c-cpp/vidsplit.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
#include <highgui.h>
33
#include <iostream>
44

5+
/* written by martin scharm
6+
* see http://binfalse.de
7+
*
8+
* split a video streams to png images
9+
*/
10+
511
using namespace std;
612

713

java/Link.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
* this class creates a Link extending JLabel
1111
*
12-
* @author Martin Scharm
12+
* @author Martin Scharm, see http://binfalse.de
1313
*
1414
*/
1515
public class Link extends javax.swing.JLabel implements java.awt.event.MouseListener

java/Zbox.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**********************************
55
*
66
* written by Martin Scharm
7-
* see https://binfalse.de
7+
* see http://binfalse.de
88
*
99
**********************************/
1010

monitoring/check_UBC.pl

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
#!/usr/bin/perl -w
2-
32
###################################
43
#
4+
# Monitor the UserBeanCounter
5+
# of OpenVZ vservers. This is
6+
# the way vservers tell it's
7+
# host about ressource issues.
58
# written by Martin Scharm
6-
# see https://binfalse.de
9+
# see http://binfalse.de
710
#
811
###################################
912

monitoring/check_backup.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
#!/bin/bash
2+
###################################
3+
#
4+
# Check if there are pending Backups
5+
# written by Martin Scharm
6+
# see http://binfalse.de
7+
#
8+
# tested with v8.60
9+
#
10+
###################################
211

312
source /usr/lib/nagios/plugins/utils.sh
413

monitoring/check_catalyst_fans.pl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/usr/bin/perl -w
2-
3-
###################################
2+
#################################################
43
#
4+
# Monitoring FANS of a CISCO catalyst
55
# written by Martin Scharm
6-
# see https://binfalse.de
6+
# see http://binfalse.de
77
#
8-
###################################
8+
#################################################
99

1010
use strict;
1111
use Net::SNMP;

monitoring/check_catalyst_flash.pl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/usr/bin/perl -w
2-
3-
###################################
2+
#################################################
43
#
4+
# Monitoring FLASH dirve of a CISCO catalyst
55
# written by Martin Scharm
6-
# see https://binfalse.de
6+
# see http://binfalse.de
77
#
8-
###################################
8+
#################################################
99

1010
use strict;
1111
use Net::SNMP;

monitoring/check_catalyst_load.pl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/usr/bin/perl -w
2-
3-
###################################
2+
#################################################
43
#
4+
# Monitoring FLASH drive of a CISCO catalyst
55
# written by Martin Scharm
6-
# see https://binfalse.de
6+
# see http://binfalse.de
77
#
8-
###################################
8+
#################################################
99

1010
use strict;
1111
use Net::SNMP;

0 commit comments

Comments
 (0)