Skip to content

Instantly share code, notes, and snippets.

View Fischaela's full-sized avatar
⬇️
🔥 fire bad, 🌳 tree pretty

Michaela Fischaela

⬇️
🔥 fire bad, 🌳 tree pretty
View GitHub Profile
@Fischaela
Fischaela / netrw quick reference.md
Created March 1, 2018 11:28 — forked from t-mart/netrw quick reference.md
A quick reference for Vim's built-in netrw file selector.
Map Action
<F1> Causes Netrw to issue help
<cr> Netrw will enter the directory or read the file
<del> Netrw will attempt to remove the file/directory
- Makes Netrw go up one directory
a Toggles between normal display, hiding (suppress display of files matching g:netrw_list_hide) showing (display only files which match g:netrw_list_hide)
c Make browsing directory the current directory
C Setting the editing window
d Make a directory
@Fischaela
Fischaela / girlscourse-0.0.1-retrospective.md
Created November 20, 2017 12:44
GirlsCourse 0.0.1 Retrospective

CSS

CSS Text Properties

  • font-style: italic;

CSS Layout Properties

  • transform-origin

CSS Misc

  • @import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,400i,700");
@Fischaela
Fischaela / girlscourse-0.0.0-retrospective.md
Last active November 20, 2017 12:29
GirlsCourse 0.0.0 Retrospective

HTML

HTML Elements

  • <a href="https://geildanke.com">
  • <article class="className">
  • <button class="button">
  • <div>
  • <h1>, <h2>, ...
  • <img src="https://geildanke.com/images/michaela.jpg">
  • <nav>
@Fischaela
Fischaela / german-party-color-codes.md
Last active September 15, 2025 06:29
Color codes of German parties
Party Kurzbezeichnung Color Code Main Color Code Secondary Color Code Third
Sozialdemokratische Partei Deutschlands SPD #E3000F #A6006B
Christlich Demokratische Union Deutschlands CDU #000000 #003B6F #ED8000
Christlich-Soziale Union in Bayern CSU #0570C9
Bündnis 90/Die Grünen GRÜNE #1AA037
Die Linke DIE LINKE #E3000F
Freie Demokratische Partei FDP #FFEF00 #048CDE #DF006A
Alternative für Deutschland AfD #0489DB #DB000A #FFFFFF
Partei für Arbeit, Rechtsstaat, Tierschutz, Elitenförderung und basisdemokratische Initiative Die PARTEI #B92837 #000000 #FFFFFF
@Fischaela
Fischaela / UI.js
Last active March 24, 2017 13:48
ReactVR Component – Animated translation – transformOrigin?
class UI extends React.Component {
constructor(props) {
super(props);
this.buttons = this.props.buttonConfig;
this.state = {
animatedOpacity: new Animated.Value(1),
animatedScale: new Animated.Value(1),
};
@Fischaela
Fischaela / podlove-subscribe-button-todos.md
Last active March 17, 2017 12:11
Ideas to improve the Podlove Subscribe Button

Ideas to improve the Podlove Subscribe Button

Dev tasks

  • Re-evaluate architecture and dependencies (JS)
  • Re-evaluate embedding method technically, e.g. using an iframe (JS)
  • Re-evaluate methods to implement and use the PSB as a podcaster, e.g. configuration process/possibilities (JS)
  • Migrate from CoffeeScript to ES6 (JS)
  • Add CI process (JS)
  • Migrate to a TDD (JS)
  • Add code style guide (Writing)
@Fischaela
Fischaela / react-vr-development-tips.md
Created March 8, 2017 14:32
Useful tricks I learned while experimenting with React VR and I don't want to forget

Debugging

  • use adb reverse tcp:8081 tcp:8081 to use localhost:8081/vr/ instead of the ip address and fix Access-Control-Allow-Origin problems when debugging in Chrome on Android
  • open local server in Chrome on Android and use the "View in VR" button to open Carmel
@Fischaela
Fischaela / launch-carmel-browser.html
Created March 6, 2017 19:58
Snippet to launch the Carmel Developer Preview from another browser
<!-- Launch Carmel Developer Preview using standard links, replace http://ocul.us/experience with your URL -->
<a href="ovrweb:http://ocul.us/experience">
Navigate to an HTTP experience
</a>
<a href="ovrweb:https://ocul.us/experience">
Navigate to an HTTPS experience
</a>
<script>
// You can also navigate programmatically from script
@Fischaela
Fischaela / .eslintrc
Last active September 26, 2016 10:26
eslint config
module.exports = {
"env": {
"browser": true,
"node": true,
"es6": true
},
"ecmaFeatures": {
"arrowFunctions": true,
"binaryLiterals": true,
@media screen and (max-width: 599px) {
td.episode_description {
width: 60%;
word-break: break-word;
}
.archive_episode_row {
border-top: 1px solid #DDDDDD;
display: flex;