Skip to content

Instantly share code, notes, and snippets.

View mojoaxel's full-sized avatar
🏠
Working from home

Alexander Wunschik mojoaxel

🏠
Working from home
View GitHub Profile
@mojoaxel
mojoaxel / readme.md
Last active June 15, 2022 22:16
fullstax.de website design brief

fullstax.de website design brief

We are a very small company from germany. We do full-stack web-development. We want to update our homepage.

The big (3-layered) logo on the front page is the center of the design. We want to say, that we make "full-stack-webdevelopment" and we want to explain what we mean by that. We want to descripe those 3 layers.

The logo on the front-page should be animated interactive in the future. This is not part of the basic design, but we might come back to you for an animation later. Ideas are welcome!

The target audience of the website are web-developers and clients from the healthcare of industry sector. Ajectives we would like to see might be "professional", "light-weight", "sustainable" and "clean".

@mojoaxel
mojoaxel / rockPaperScissors.sh
Last active March 17, 2022 16:16
command line rock-paper-scissors game
#!/bin/bash
#
# This is a bash port of a BASIC game from 1973 by Charles Lund:
# https://www.atariarchives.org/basicgames/showpage.php?page=137
#
# author: Alexander Wunschik (https://github.com/mojoaxel)
# license: CC-0 Public Domain
printf "%*s GAME OF ROCK, SCISSORS, PAPER\n" 21
printf "%*s CREATIVE COMPUTING MORRISTOWN, NEW JERSEY\n" 15
@mojoaxel
mojoaxel / .prettierrc.json
Last active October 27, 2021 08:52
prettier.io settings for fullstax projects
{
"singleQuote": true,
"useTabs": true,
"semi": true,
"printWidth": 100,
"trailingComma": "none",
"arrowParens": "avoid"
}
@mojoaxel
mojoaxel / dump_databases.sh
Last active September 6, 2019 20:27
dumb a given list of tables from a remote mysql database to seperate *.sql files showing progress and skipping existing.
#!/bin/bash
######################################
# please add your settigs here:
DB_HOST=<ip of the databse-server>
DB_USERNAME=<username>
DB_PASSWORD=<password>
######################################
# write a temporary config file with the credentials to prevent terminal warnings
@mojoaxel
mojoaxel / VIS-EOL.md
Created July 28, 2019 19:36
A open letter to almende, the company that created vis.js.

Hi almende folks!

We worked hard the last weeks and I'm happy that we managed to move almende/vis to a new community account: https://github.com/visjs

The former vis library has been separated into multiple modules while keeping the amazing git history of each file.

Today we added a deprecation warning in the README of the vis repository and marked it as "archived" on github and npmjs.org. The repository is read-only from now on and we have no plans to reanimate the project in the future.

The website www.visjs.org also has been moved to our new website-repository: https://github.com/visjs/www.visjs.org

@mojoaxel
mojoaxel / GrueneGegenUrheberrechtsreform.md
Last active January 15, 2022 18:45
Bündnis 90/Die Grünen gegen #Artikel11 und #Artikel13

Grünen Positionen zur Urheberrechtsreform

image

Wie stehen @Die-Gruenen bzw. @GermanGreens zur neuen #Urheberrechtsreform mit #Artikel11 und #Artikel13 ?

EU Wahlprogramm

[..] sie (EU) muss die Diskriminierung durch Suchmaschinen, Filter und Co. verbieten. EU Wahlprogramm, S.155

Die Freiheit von Wissenschaft und Forschung und genauso von Kunst muss garantiert sein. Kultur und Kreativität müssen sich frei entfalten können, was angesichts des Drucks, unter dem Kulturschaffende in Ländern wie Ungarn stehen, keine Selbstverständlichkeit mehr ist. EU Wahlprogramm, S.156

Abdeckstiftbenutzer • Abknickende-Vorfahrtstrasse-Blinker • ABS-Bremser • Abschiedswinker • Abseitserklärer • Achselhaarschneider • Achterbahn-in-der-Mitte-Sitzer • Achterbahnkotzer • Achtstundenschläfer • ADAC-Goldkarteninhaber • ADAC-Holer • Adventskalender-vorzeitig-Öffner • Adventskalenderfensteröffner • Aerosmith-Hörer • Airbagnachrüster • Akkulicht-Radler • Akkuschrauber • Aktentaschenträger • Aktien-mit-Limit-Käufer • Alarmanlageninstallierer • Alimente-Zahler • Alkfreiesbiertrinker • Alkoholfrei-Biertrinker • Alkoholkontrolle-Anhalter • Alle-Hausaufgaben-Macher • Alles-richtig-Schreiber • Allesgleicherlediger • Allesintüteneinpacker • Alpträumer • Alsterwassertrinker • Altersheimbesucher • Altersvorsorger • Altpapiersammler • Altreifensammler • Alufelgenmitderhandpolierer • Alufoliengriller • Am-Berg-mit-Handbremse-Anfahrer • Am-Gehweg-vom-Rad-Absteiger • Am-Sonntag-bei-Mutti-Esser • Am-Tisch-Esser • Amalgamverweigerer • Ampel-Grüngänger • Ampeldrücker • Ampelgelbbremser • Ampelranroller • An-das-Gute
@mojoaxel
mojoaxel / _checkbox.md
Last active February 27, 2019 20:33
Simple beautiful checkbox using input type=checkbox" - CC-BY by mojoaxel - https://jsbin.com/bopoyer

image

@mojoaxel
mojoaxel / README.md
Last active November 28, 2023 02:45 — forked from c-kick/hnl.mobileConsole.js
hnl.mobileConsole.js - extends JavaScript's console to display a visual console inside the webpage. Very usefull for debugging JS on mobile devices with no real console. Info and demo: http://www.hnldesign.nl/work/code/mobileconsole-javascript-console-for-mobile-devices/

MobileConsole - Javascript console for mobile devices

When developing in JavaScript, I always get a little annoyed about the lack of a debug console on iOS. And when I say ‘lack’ I mean the complete ass backwards obfuscation introduced in iOS 6, requiring you to physically hook your iPhone to your (Mac only!) development computer to view debug output. This approach, including various remote debuggers that are out there, is much too tedious when you simply need to view a value, see the contents of an object or – more likely – see the error message(s) your script caused, indicating why it isn’t working in the first place.

To that goal, I have developed mobileConsole; a JavaScript console for mobile devices. It ‘extends’ the window.console to a visual, HTML-based console that shows you a console similar in appearance to Chrome’s excellent web inspector console. The main goal was to keep mobileConsole unobtrusive: not requiring any additional code. This is why I extended window.console so I could keep usi

@mojoaxel
mojoaxel / charging_station.overpass
Last active February 14, 2019 10:23
Overpass examples
[out:json][timeout:25];
(
node["amenity"="charging_station"]["bicycle"="yes"]
({{bbox}});
);
out center;