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 * as React from "react"; | |
import { Route, RouteProps } from "react-router"; | |
interface Props { | |
component: React.ComponentType<RouteProps>; | |
} | |
export const HomepageLayout = ({ component: Component, ...rest }: Props) => { | |
return ( | |
<Route {...rest} render={routeProps => <Component {...routeProps} />} /> | |
); |
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
diksutil list | |
# change number wit your usb | |
diskutil eraseDisk MS-DOS "{usbName}" MBR disk{number} | |
# open iso files | |
ls /Volumes | |
# try to use -Rp instead | |
cp -Rp /Volumes/{OsIsoName}/* /Volumes/{usbName}/ |
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
// C:\Program Files\Git\etc\profile.d\aliases.sh | |
# Some good standards, which are not used if the user | |
# creates his/her own .bashrc/.bash_profile | |
# --show-control-chars: help showing Korean or accented characters | |
alias ls='ls -F --color=auto --show-control-chars' | |
alias ll='ls -l' | |
# Aliases |
OlderNewer