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 os | |
import hashlib | |
import time | |
import urllib.request | |
import numpy as np | |
class Photo(object): | |
sources = 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
; core variables | |
[core] | |
; Prenvent LF to CRLF eol conversion | |
eol = lf | |
autocrlf = input | |
editor = code | |
; user variables | |
[user] |
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
# Reading material, articles, guides | |
https://www.freecodecamp.org/news/the-fab-four-technique-to-create-responsive-emails-without-media-queries-baf11fdfa848/ | |
https://www.smashingmagazine.com/2017/01/introduction-building-sending-html-email-for-web-developers/ | |
https://webdesign.tutsplus.com/articles/everything-developers-need-to-know-about-sending-transactional-email--cms-31759 | |
https://email.uplers.com/infographics/ultimate-guide-email-client-hacks/ | |
https://www.leemunroe.com/sending-email-designers-developers/ | |
https://www.leemunroe.com/building-html-email/ | |
https://www.leemunroe.com/responsive-email-design/ | |
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
root = true | |
[*] | |
indent_style = space | |
indent_size = 2 | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
insert_final_newline = true |
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
const customWebpackConfig = require('../config/webpack.config.js') | |
module.exports = { | |
stories: [ | |
'../src/components/**/*.stories.mdx', | |
'../src/components/**/*.stories.@(js|jsx|ts|tsx)' | |
], | |
addons: [ | |
'@storybook/addon-links', | |
'@storybook/addon-essentials' |