Skip to content

Instantly share code, notes, and snippets.

View bigbasti's full-sized avatar
👨‍💻

Sebastian Gross bigbasti

👨‍💻
View GitHub Profile
const css = "padding-top: 150px;line-height:150px;background:url(https://media.giphy.com/media/7lsw8RenVcjCM/giphy.gif) no-repeat; text-shadow: -1px -1px hsl(0,100%,50%), 1px 1px hsl(5.4, 100%, 50%), 3px 2px hsl(10.8, 100%, 50%), 5px 3px hsl(16.2, 100%, 50%), 7px 4px hsl(21.6, 100%, 50%), 9px 5px hsl(27, 100%, 50%), 11px 6px hsl(32.4, 100%, 50%), 13px 7px hsl(37.8, 100%, 50%), 14px 8px hsl(43.2, 100%, 50%), 16px 9px hsl(48.6, 100%, 50%), 18px 10px hsl(54, 100%, 50%), 20px 11px hsl(59.4, 100%, 50%), 22px 12px hsl(64.8, 100%, 50%), 23px 13px hsl(70.2, 100%, 50%), 25px 14px hsl(75.6, 100%, 50%), 27px 15px hsl(81, 100%, 50%), 28px 16px hsl(86.4, 100%, 50%), 30px 17px hsl(91.8, 100%, 50%), 32px 18px hsl(97.2, 100%, 50%), 33px 19px hsl(102.6, 100%, 50%), 35px 20px hsl(108, 100%, 50%), 36px 21px hsl(113.4, 100%, 50%), 38px 22px hsl(118.8, 100%, 50%), 39px 23px hsl(124.2, 100%, 50%), 41px 24px hsl(129.6, 100%, 50%), 42px 25px hsl(135, 100%, 50%), 43px 26px hsl(140.4, 100%, 50%), 45px 27px hsl(145.8, 100%, 50%), 46px

Keybase proof

I hereby claim:

  • I am bigbasti on github.
  • I am bigbasti (https://keybase.io/bigbasti) on keybase.
  • I have a public key whose fingerprint is CBDE F948 F8C2 3C5F 2B02 777C B628 F57F B78F 1C2E

To claim this, I am signing this object:

@bigbasti
bigbasti / IBANValidator_example1.java
Last active December 22, 2015 11:59
Demo code for using IBANValidator
private final String VALID_IBAN_DE = "DE89 3704 0044 0532-0130 00";
private final String DE_IBAN_LENGTH = "22";
private final String DE_IBAN_STRUCTURE = "DE2!n8!n10!n";
@Test
public void validGermanIBANStructureCheck() {
boolean result = false;
try {
result = IBANValidator.checkIbanStructure(VALID_IBAN_DE, "DE", DE_IBAN_LENGTH, DE_IBAN_STRUCTURE);
@bigbasti
bigbasti / Custom.css
Created August 31, 2012 08:33 — forked from bentruyman/Custom.css
IR_Black Theme for Chrome Developer Tools
/**********************************************/
/*
/* IR_Black Skin by Ben Truyman - 2011
/*
/* Based on Todd Werth's IR_Black:
/* http://blog.toddwerth.com/entries/2
/*
/* Inspired by Darcy Clarke's blog post:
/* http://darcyclarke.me/design/skin-your-chrome-inspector/
/*