View TwitterTeal.css
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
.promoted-trend { | |
display: none; | |
} | |
.promoted-tweet { | |
display: none | |
} | |
* { | |
border-radius: 0 !important; |
View netbear.pem
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
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
Version: GnuPG v2.0.14 (GNU/Linux) | |
mQINBFXVAakBEADRzaJdBd/gnMkQhHipLc3TiFaSxJIvjoGVN+FFZUzgDLVGPISrVI7fPZc2AVhqnGBX/YydXVkWOlFuYxW/wuhyOTiUu33u44i1idQZTeyW0okO0uq6PBMhBj0X2eKjbSzYWYVMdgnMRJrsk+J/1/VVA1JVsDaQkjW6oMcOWc0hFs/F2a6VAag1yLI1kWoCcRoH9o2VM/cI0P4IIpRdavsb2VSIeY15SqKk6zuOxU4lhL0wlIPpkALCavtYNcJJ4hiAtXKiiNCCYuWghmzTCXvELNwg/ALpIVSdUdYkpdiUAQRd/dmmf4+3F6LFVSexEXIMZCM5J6U7b20ZKH1y+NIdcFCEn9oDACfKcmTJ8qTyJ1uDkuR8kL2zG9e2aYcCC1LH9csg+IBjWFNr3IzTqNYFwixGriNqL2l6kVfEwojDbi4FG51vwD0qINsayaELl88MHLnQhi4txz21kPk4PUUA/I4dY9PLtGqLql3gUjwwRfxEusmLsCM7U0f7PvtLfeIoot9nqo55g+hyR4dWJyH0aEgMKVNc+kILLyIZgIVmj5OjtRihDZ3/ubYVWC5DXWanb5KZGTA4zLTXtATik+g+vZyGjc9FYkRtIupVj1xbxtQm1ZFigJ6lMR8CO6L/HjTO3QWCwgIjUL7ItuIiF5/iS7M6GzpP7W5RUHPY7d8mtQARAQABtDFNYXJrdXMgRXlyaWNoIChuRVVUUm9uKSA8ZXlyaWNoLm1hcmt1c0BnbWFpbC5jb20+iQI4BBMBAgAiBQJV1QGpAhsDBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRBfu0HISEIUadt3D/9eK+uvUV9gSxu9kvHUN8CPaRtNSyFDFpKXFScZ4SHrUNrKsEdkkFlo4JqXfWALIqBOsUCD0OqDW4KbWEKvCi5GhiOmjJBZXTwbhlp |
View installv2.gradle
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
apply plugin: 'com.simpligility.maven.plugins' | |
group = publishedGroupId // Maven Group ID for the artifact | |
install { | |
repositories.mavenInstaller { | |
// This generates POM.xml with proper parameters | |
pom { | |
project { | |
packaging 'aar' |
View login.sh
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
#! /usr/bin/sh | |
hour=`date +%H` | |
min=`date +%M` | |
space=$( du -sm ~| awk '{print $1}') | |
maxspace=250 | |
realname=`ypcat passwd | grep $USER | cut -d: -f5` | |
if [ $hour -lt 06 ] | |
then | |
echo "\033[1;37mGuten Morgen!" |
View gist:2041a94e87b0239698e7
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
CREATE TABLE domains ( | |
id INT AUTO_INCREMENT, | |
name VARCHAR(255) NOT NULL, | |
master VARCHAR(128) DEFAULT NULL, | |
last_check INT DEFAULT NULL, | |
type VARCHAR(6) NOT NULL, | |
notified_serial INT DEFAULT NULL, | |
account VARCHAR(40) DEFAULT NULL, | |
PRIMARY KEY (id) | |
) Engine=InnoDB; |