Skip to content

Instantly share code, notes, and snippets.

View shiftgeist's full-sized avatar
🪄
Conjuring CSS

Felix Hungenberg shiftgeist

🪄
Conjuring CSS
  • 11:44 (UTC +02:00)
View GitHub Profile
@shiftgeist
shiftgeist / uxtrunk.md
Last active May 3, 2019 13:17
Things to remember when developing platforms (big companies fail at this too) [WIP]
  1. The user comes first
  2. First
  3. Don't give the user to much to configure
  4. Often less is more
"browserslist": [
    ">0.2%",
    "not dead",
    "not ie <= 11",
    "not op_mini all"
]

Visual Studio Code Essentials

Required 🔥

  • Editorconfig
  • gitflow
  • Markdown ALL in One
  • Subword Navigation

Optional ⛳

@shiftgeist
shiftgeist / atom-rant.md
Last active January 8, 2020 07:43
Atom rant or "X reasons why I moved from Atom to vscode"

After working with Atom for around 2 years I switch to VSCode.

Here is why:

  1. Color display of variables in code. This may now sound much, but it improve the display of scss variables and its a core feature.
  2. Out of the box features.
  3. Automation! VSCode suggests usefull things to you.
  4. Integraded console. I love the console in VSCode. It is faster than my 'default' cmd on Windows. For Atom you would have to install a package, that doesn't work so well on Windows.
  5. Output logging per Plugin.
  6. Setup time. In VSCode I can set up my workspace in under 5 minutes. For Atom I need
@shiftgeist
shiftgeist / apt.md
Last active January 8, 2020 07:47
Interesting tweeks not to forget in apt.

Installing an old apt package version / How apt-cache showpkg saved my day

Docker-ce won't start at version 18.09.0

With apt-cache you get all latest versions.

$ apt-cache showpkg docker-ce

18.09.0~3-0~debian-stretch - # Newest
18.06.1~ce~3-0~debian - # The one i wanted
@shiftgeist
shiftgeist / footer-at-bottom.html
Last active September 19, 2018 09:05
footer-at-bottom: Footer at min 100% height bottom
@shiftgeist
shiftgeist / border-radius-export.css
Last active May 4, 2018 13:36
Generate border-radius with all corners and general with Sass
.border-radius {
border-radius: 5px;
}
.border-radius-small {
border-radius: 3px;
}
.border-radius-small-top-left {
border-radius: 3px;
}
.border-radius-small-top-right {
@shiftgeist
shiftgeist / why-my-yml-not-worked.md
Last active December 26, 2020 16:35
Why my .yml not worked.

You need to add three stashes at the start of the file

---
    item: Hello world
    list:
        -   You
        -   can
        -   get
 - content