http://delta.hoerradar.de/deltaradio-grunge-mp3-hq
http://90s90s.hoerradar.de/90s90s-grunge-mp3-hq
http://delta.hoerradar.de/deltaradio-grunge-mp3-hq
http://90s90s.hoerradar.de/90s90s-grunge-mp3-hq
| import { useState } from 'react' | |
| export default function useUpload () { | |
| const [file, setFile] = useState('') | |
| const [fileName, setFileName] = useState('') | |
| const onChangeHandler = e => { | |
| setFile(e.target.files[0]) | |
| setFileName(e.target.files[0].name) | |
| } |
| // Example: https://www.meetup.com/floripajs/events/265094805/attendees | |
| document.querySelector('.attendees-list').querySelectorAll('li')[Math.floor(Math.random() * document.querySelector('.attendees-list').querySelectorAll('li').length) + 1].querySelector('h4').textContent |
defaults write -g CGFontRenderingFontSmoothingDisabled -bool NO
| git clone --depth 1 git://github.com/example-user/example-repo.git |
| <snippet> | |
| <content><![CDATA[ | |
| # Useful `.gitignore` templates: | |
| # - https://github.com/github/gitignore | |
| # OSX taken from: https://github.com/github/gitignore/blob/master/Global/OSX.gitignore | |
| # ---------------------------------------------------------------------------------------------- | |
| ._* | |
| .AppleDouble |
| .element-with-problem { | |
| -webkit-backface-visibility: hidden; | |
| -webkit-transform: translateZ(0) scale(1.0, 1.0); | |
| } |
| .owl-wrapper-outer { | |
| -webkit-transform-style: preserve-3d; | |
| } |
| # Make your gitHub project. | |
| mkdir project | |
| cd project/ | |
| git init | |
| echo "# Project README file" > README.markdown | |
| git add . | |
| git commit -m "Project README added" | |
| git remote add origin [email protected]:johndoe/project.git | |
| git push origin master | |
| // Fonts mixin | |
| font-url(file) | |
| return '../fonts/' + file | |
| webfont(family, file, hack-chrome-windows = false, weight = 'normal') | |
| @font-face | |
| font-family family | |
| src url(font-url(file + '.eot')) | |
| src url(font-url(file + '.eot?#iefix')) format('embedded-opentype'), | |
| url(font-url(file + '.woff')) format('woff'), |