Skip to content

Instantly share code, notes, and snippets.

View mischah's full-sized avatar
:octocat:
afk // brb

Michael Kühnel mischah

:octocat:
afk // brb
View GitHub Profile

IEs weird CSS limits which leads to ignoring CSS rules and files

IE9 is still having the following weird limits when it's coining to CSS

  • 4096 rules limit
  • 31 <style> and <link> tags limit

See [MSDN] for details.

😃

#How to switch between editor tabs within Eclipse

Unbelievable, that there are no build in keyboard shortcuts for switching tabs 😮

Brings the possibility to switch tabs within Eclipse like in Sublime Text for different file types:

  • Previous tab: ⎇ ⌘ ←
  • Next tab: ⎇ ⌘ →

##How to import the .epf file

  • File → Import → General → Preferences

Keybase proof

I hereby claim:

  • I am mischah on github.
  • I am mischah (https://keybase.io/mischah) on keybase.
  • I have a public key whose fingerprint is 28C8 7661 0A17 2ED1 BCFD 6EC5 3A7C 284F 8149 89C2

To claim this, I am signing this object:

@mischah
mischah / Gruntfile.js
Last active August 29, 2015 14:03
DalekJS Remote test execution
// JSHint settings
/* jshint camelcase: false, es3: false */
'use strict';
module.exports = function(grunt) {
// Get devDependencies
require('load-grunt-tasks')(grunt, {scope: 'devDependencies'});
@mischah
mischah / README.md
Created July 18, 2014 00:05
The power of moment.js

#The power of Moment.js

Use case:

  • start date: current day + 2 days
  • end date: current day + 7 days
  • default date: current day + 2 days
  • disabled dates: Sundays within the range of start date to end date
@mischah
mischah / dabblet.css
Created January 30, 2015 07:49
Simple folded corners
/**
* Simple folded corners
*/
div {
background: yellowgreen; /* fallback */
padding: 1em;
width: 12em;
@mischah
mischah / Preferences.sublime-settings
Created August 19, 2015 21:41
My Sublime User Settings
{
"binary_file_patterns":
[
"*.jpg",
"*.jpeg",
"*.png",
"*.gif",
"*.ttf",
"*.tga",
"*.dds",
@mischah
mischah / .gitconfig
Created April 19, 2011 13:46
My minimal ~/.gitconfig
[user]
name = Firstname Lastname
email = mail@domain.com
[color]
diff = auto
status = auto
branch = auto
[apply]
whitespace = nowarn
<a href="http://github.com/you"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://a248.e.akamai.net/assets.github.com/img/bec6c51521dcc8148146135149fe06a9cc737577/687474703a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f6c6566745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub"></a>