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
{ | |
"data": { | |
"allContentfulProductPage": { | |
"edges": [ | |
{ | |
"node": { | |
"name": "Nikki Lime Leather Sandals", | |
"node_locale": "en", | |
"thumbnailImage": { | |
"file": { |
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"> | |
<meta name="viewport" content="width=device-width"> | |
<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
@media all and (min-aspect-ratio: 13/9) and (max-width: $tablet) { | |
opacity: 0; | |
pointer-events: none; | |
} |
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
# -------------------------------------------------------------------------------------- | |
# How to Use: | |
# The script needs the following parameters: | |
# File.txt / folder to save the zips / folder that will be zipped in project | |
# | |
# Example: | |
# $ ./hash.sh file.txt ~/Documents dist/ | |
# -------------------------------------------------------------------------------------- | |
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
require 'fileutils' | |
# ------------------------------------------------------------------------------------- | |
# To execute the script use: | |
# ruby organize-files.rb url_of_folder_to_find_mp3 url_of_folder_to_copy_files | |
# ------------------------------------------------------------------------------------- | |
dirToFind = "#{ARGV[0]}/**/*.mp3" | |
dirToFindFlac = "#{ARGV[0]}/**/*.flac" | |
dirToCopy = ARGV[1] |
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
require 'fileutils' | |
dirToFind = '/Users/adrianofernandes/Desktop/singles/euphoric/**/*.mp3' | |
Dir[dirToFind].each do |old| | |
if File.basename(old).include?('(radio') | |
puts '-----------------------------------------' | |
puts 'have a radio version' | |
puts old | |
puts '-----------------------------------------' |
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
def adjust_file_name(str) | |
newEntry = str.downcase.gsub(/\w+/, &:capitalize) | |
newEntry = newEntry.gsub('.Mp3', '.mp3') | |
return newEntry | |
end | |
dirToFind = '/Users/adrianofernandes/Music/hardstyle/organized/renamed/euphoric/*' | |
arrItemsToFind = [ | |
'(Full)', |
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-01-11T23:33:39.862Z"} |
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
import React from 'react'; | |
import { connect } from "react-redux" | |
import store from "../store" | |
import { submitForm } from '../actions/additional-data-actions' | |
import { setGrayScreenMode } from '../actions/core-actions' | |
import BasicPage from '../helpers/basic-page'; | |
import { Link } from 'react-router' |
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
// ----------------------------------------------------------------------------------------------------------------- | |
// Mixins to use the SUITCSS methodology. | |
// This Sass version allow to use the nested classes and selectors. Solved the problem from PostCss Bem Plugin | |
// | |
// See more about: | |
// https://suitcss.github.io/ | |
// | |
// The mixins generate classes in SUITCSS naming conventions based on PostCss Bem Plugin, see more about: | |
// https://github.com/ileri/postcss-bem | |
// ----------------------------------------------------------------------------------------------------------------- |
NewerOlder