- Since I Left You - The Avalanches
- Lazy - X-Press 2
- In the Morning - The Coral
- House of Jealous Lovers - The Rapture
- Back in Your Head (RAC Mix) - Tegan and Sara
- Let's Make Love and Listen to Death From Above - CSS (Cansei De Ser Sexy)
- Deceptacon (DFA Remix) - Le Tigre
- One More Time (12" Mix) - Daft Punk
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
# https://github.com/dronir/SpotifyControl/issues/2#issuecomment-8686456 | |
tell application "Spotify" | |
set theTrack to current track | |
set theArtist to artist of theTrack | |
set theName to name of theTrack | |
set theCover to artwork url of theTrack | |
return theArtist & "|" & theName & "|" & theCover | |
end tell |
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
#!/bin/sh | |
# resolve $PATH | |
export PATH=$HOME/.nvm/versions/node/v8.9.2/bin/:$PATH | |
export PATH=$HOME/bin/:$PATH | |
export PATH=/usr/local/bin/:$PATH | |
# Fetch current song picture from spotify. | |
spotify share | sed -e '2d' -e 's/^SpotifyURI://' | xargs -ISONG_URL curl -X GET https://open.spotify.com/oembed\?url\=SONG_URL | jq '.thumbnail_url' | xargs -IIMAGE_URL wget IMAGE_URL -O ~/Pictures/spotify-wallpaper.jpg |
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
license: gpl-3.0 |
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
{"lastUpload":"2017-10-13T10:45:58.424Z","extensionVersion":"v2.8.3"} |
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
alert('xss'); |
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
.page__keyvisual { | |
display: none; | |
} | |
.blog-title__text { | |
font-family: "Helvetica neue",Arial,Roboto,"Droid Sans","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif; | |
} |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="https://rawgit.com/lodash/lodash/3.0.1/lodash.min.js"></script> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> | |
var k, list, res, text, v, _i, _len; |
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
##* | |
# UAGE: | |
# app = angular.module('yourApp', []) | |
# app.factory(require('./shadeAndTintColor')) | |
# app.controller('yourCtrl', ['ShadeAndTintColor', (Color) | |
# -> | |
# Color.shade('#f9ea62', 0.1) # '#E0D258' | |
# Color.tint('#f9ea62', 0.39) # '#FBF29F' | |
# ]) | |
# |
NewerOlder