This is my personal translation copy in Japanese of Can Designers and Engineers Use a Single Source of Truth? written by Marcin Treder from UXPin. I love the perspectives from both designers and engineers, and also believe the unified process will make things better XD
This file contains 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
metacognition | |
mindless | |
meditate -> mindful | |
do bodyscan -> mindful | |
do journaling -> mindful | |
mindful | |
meditate -> mindful | |
do bodyscan -> mindful | |
do journaling -> mindful |
This file contains 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 lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Tinder?</title> | |
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1"> | |
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous"> | |
<style> | |
body { | |
background-color: rgb(255, 255, 255); |
This file contains 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 lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<title>test</title> | |
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1"> | |
<style> | |
p { | |
text-align: center; | |
} |
This file contains 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
var SLACK_WEBHOOK_URL = 'https://hooks.slack.com/services/XXXXXXXXXX'; | |
function onOpen() { | |
var spreadsheet = SpreadsheetApp.getActiveSpreadsheet(); | |
var menuEntries = [ | |
{ | |
name: 'Notify to Slack', | |
functionName: 'notify', | |
}, | |
]; |
This file contains 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 lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Vue.js デモ</title> | |
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1"> | |
<link rel="stylesheet" href="https://fonts.googleapis.com/earlyaccess/sawarabimincho.css"> | |
<style> |
This file contains 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>Testing WebVR</title> | |
<meta name="viewport" content="width=device-width, user-scalable=yes"> | |
<link rel="stylesheet" href="https://unpkg.com/[email protected]/normalize.css"> | |
<script defer src="https://unpkg.com/[email protected]/build/three.min.js"></script> | |
<script> | |
class WebVR { |
This file contains 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
Show hidden characters
{ | |
"presets": [ | |
"stage-2", | |
[ | |
"env", { | |
"modules": false, | |
"targets": { | |
"browsers": [ | |
"Chrome >= 50", | |
"ChromeAndroid >= 50", |
This file contains 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
javascript: | |
/** | |
* WIP | |
*/ | |
function copyToClipboard(text) { | |
const input = document.createElement('input'); | |
input.style.position = 'fixed'; | |
input.style.opacity = 0; |
This file contains 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
/** | |
* UTF-8 から SJIS に一括変換するスクリプト | |
*/ | |
const fs = require('fs'); | |
const glob = require('glob'); | |
const iconv = require('iconv'); | |
const pattern = './assets/**/*'; |
NewerOlder