Skip to content

Instantly share code, notes, and snippets.

View Depicus's full-sized avatar
🏠
Working from home

Brian Slack Depicus

🏠
Working from home
View GitHub Profile
@Depicus
Depicus / ubuntu login screen
Last active August 29, 2015 14:12
If you run a lot of VMs and you look at the login and wonder what the ip address is to ssh in. Because sometimes the VM console is .... fun :)
#add the ip address to the pre login screen by editing rc.local
/sbin/ifconfig | grep "inet addr" | grep -v "127.0.0.1" | awk '{ print $2 }' | awk -F: '{ print "ip address " $2 }' > /$}' > /etc/issue
@Depicus
Depicus / php to slack.php
Created December 26, 2014 13:13
PHP function to send a message to Slack
function sendSlackMessage($text, $username = "PHP Error Bot", $channel = "#general")
{
$url = "https://hooks.slack.com/services/your-token-here";
$payload = array();
$payload["username"] = $username; // you can customise this
$payload["channel"] = $channel;
$payload["text"] = $text;
// set up & post curl
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
@Depicus
Depicus / console log in ie.js
Created December 26, 2014 13:15
Allow Windows IE to use console log.
<script type="text/javascript">
if (!window.console) console = {log: function() {}};
</script>
@Depicus
Depicus / check website is up.php
Created December 26, 2014 14:27
Quick (unfinished) script that I run on my PI at home to check sites are up.
<?php
date_default_timezone_set('Europe/London');
function sendmail($site,$contacts,$name,$date)
{
$to = $contacts;
$subject = 'Alert ' . $site . ' appears to be down - ' . $name;
$message = $site . ' is down, please check now ' .$date;
$headers = 'From: donotreply@depicus.com (Depicus Site Monitor)' . "\r\n" .
@Depicus
Depicus / gravatar.php
Created December 26, 2014 18:25
Use Gravatar avatars from php
<?php
$email = md5(strtolower("bob@example.com"));
$gravatar = "http://www.gravatar.com/avatar/$email?d=404&s=50";
$headers = get_headers($gravatar,1);
if (strpos($headers[0],'200')) echo "<img src='$gravatar' style='border-radius: 25px;'>"; // OK
else if (strpos($headers[0],'404')) echo "No Gravatar"; // Not found we could show a default image here
?>
@Depicus
Depicus / interfaces
Created December 26, 2014 21:03
Network config for Ubuntu servers because I can never remember :)
# The primary network interface
auto eth0
iface eth0 inet static
address 10.11.11.33
netmask 255.255.0.0
gateway 10.11.2.6
dns-nameservers 10.11.1.24 8.8.8.8
@Depicus
Depicus / iptables.sh
Last active August 29, 2015 14:12
iptables setup
sudo iptables -F
sudo iptables -A INPUT -i eth0 -m state --state ESTABLISHED,RELATED -j ACCEPT
sudo iptables -A INPUT -i eth0 -p tcp --dport 80 -j ACCEPT
sudo iptables -A INPUT -i eth0 -p tcp --dport 443 -j ACCEPT
sudo iptables -A INPUT -i eth0 -j DROP
sudo apt-get install iptables-persistent -y
sudo dpkg-reconfigure iptables-persistent
@Depicus
Depicus / logback.java
Created January 10, 2015 22:54
Snippet to set param in logback.xml
try {
LoggerContext context = (LoggerContext) LoggerFactory.getILoggerFactory();
JoranConfigurator jc = new JoranConfigurator();
jc.setContext(context);
context.reset();
context.putProperty("WorkStationID", dateWeAreSendingFor);
ClassLoader loader = main.class.getClassLoader();
jc.doConfigure(loader.getResource("logback.xml"));
} catch (JoranException ex) {
logger.error("init logging failed", ex);
@Depicus
Depicus / gumby-icons.css
Created January 13, 2015 15:45
Working (for me) copy of just the icon section for Gumby
@charset "UTF-8";
.icon-note.icon-left a:before, .icon-note.icon-right a:after { content: "\266a"; height: inherit; }
i.icon-note:before { content: "\266a"; height: inherit; }
.icon-note-beamed.icon-left a:before, .icon-note-beamed.icon-right a:after { content: "\266b"; height: inherit; }
i.icon-note-beamed:before { content: "\266b"; height: inherit; }
@Depicus
Depicus / wol-for-asp
Last active August 29, 2015 14:15
Wake on Lan code for use in an ASP application
<%
set WakeOnLan = server.createobject("DigitalWol.Wol")
WakeOnLan.TheMacAddress('009027a322fc')
WakeOnLan.TheIpNumber('217.204.255.61')
WakeOnLan.TheSubnetMask('255.255.255.255')
WakeOnLan.ThePortNumber('4343')
WakeOnLan.WakeMeUp
%>