Skip to content

Instantly share code, notes, and snippets.

dsf
@ruucm-working
ruucm-working / Instruction.md
Last active August 17, 2017 20:28
iTerm2 entire window black Setting (Nightly Version)

1. Get Nightly Version of iTerm 2 (Link)

2. Follow this instruction to get rid of line under the title bar (Link)

3. Change colors at your [Preference - Profiles - Colors] or add themes

4. Change iTerm 2 Application icon using 'iterm-icon' file and follow this instruction (Link)

@ruucm-working
ruucm-working / Frame.js
Created July 2, 2018 03:36
Make Unique Id by props in React
/**
*
* Frame
*
*/
import React from 'react'
import { compose, mapProps } from 'recompose'
import { uniqueId } from 'lodash'
@ruucm-working
ruucm-working / Frame.js
Created July 2, 2018 03:40
Make Unique Id by props in React (With Redux)
/**
*
* Frame Redux Container
*
*/
import React from 'react'
import { connect } from 'react-redux'
import { createStructuredSelector } from 'reselect'
import { selectName, selectFormOpened } from './selectors'
@ruucm-working
ruucm-working / index.js
Last active November 2, 2018 11:48 — forked from zkat/index.js
npx is cool
#!/usr/bin/env node
console.log('yay gist~')
var shell = require('shelljs')
var readlineSync = require('readline-sync')
if (!shell.which('git')) {
shell.echo('Sorry, this script requires git')
shell.exit(1)
}
@ruucm-working
ruucm-working / App.tsx
Created November 17, 2018 07:19
App.tsx
export const chatUI: Override = () => {
return {
scale: data.chatBoxScale,
originX: 0,
originY: 0,
}
}
@ruucm-working
ruucm-working / App.tsx
Created November 17, 2018 07:41
App.tsx
export const chatUI: Override = () => {
return {
scale: data.chatBoxScale,
originX: 1,
originY: 1,
}
}
export function Img(): Override {
return {
- width: data.imgWidth,
+ animate: {
+ width: data.imgWidth,
+ },
}
}
--- /dev/null
+++ b/appstore-tap-bin.framerfx/code/App.tsx
@@ -0,0 +1,13 @@
+import { Override, Data } from 'framer'
+
+// Override Docs: https://framer.com/docs/overrides
+
+const data = Data({
+ imgWidth: 340,
+})
--- a/appstore-tap-bin.framerfx/code/App.tsx
+++ b/appstore-tap-bin.framerfx/code/App.tsx
@@ -8,6 +8,14 @@ const data = Data({
export function Img(): Override {
return {
- width: data.imgWidth,
+ animate: {
+ width: data.imgWidth,
+ },