This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ | |
var aff = 'macx-21'; // replace 'macx-21' with your Amazon affiliate ID, including the '-20' | |
if (!document.getElementById('ASIN')) { | |
alert('Konnte keine Amazon-Produkt-ID finden'); | |
return; | |
} | |
var asin = document.getElementById('ASIN').value; | |
prompt( | |
'Kurz-URL des Amazon-Produkts:', | |
'http://amazon.de/dp/' + asin + '/?tag=' + aff); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* CSS3 Border-Radius with Border - Circle Avatars | |
*/ | |
/* General Styles */ | |
body { background: url(http://subtlepatterns.com/patterns/white_texture.png); | |
font: 100 14px sans-serif; | |
color: #444555; text-shadow: 0 2px white; | |
text-align: center; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Simple Key Remapping for maxOS | |
Based on an article from Chu Yenow: | |
https://blog.codefront.net/2020/06/24/remapping-keys-on-macos | |
Create a LaunchAgent to automatically remap your keys when maxOS starts: | |
https://hidutil-generator.netlify.app/ | |
and put this file an ~/Library/LaunchAgents/com.example.KeyRemapping.plist. to | |
automatically remap your keys when macOS starts. |