목록2018/04 (35)
준호씨의 블로그
sudo service ssh restart /etc/init.d/sshd restart
gmail 검색창에서 size:5000000 과 같이 검색 하면 메일 사이즈가 대략 5MB 이상인 메일들이 검색된다. size:10000000 로 검색하면 대략 10MB 이상인 메일들이 검색된다고 보면 된다. 참고 Find the Large Attachments Eating Up Your Gmail Space with a Simple Search 2011.08.12
Keycastr will let you visualize what key you stroked. Like this Configuration window Installation $ brew cask install keycastr References Keycastr github
git 에서는 기본적으로 대소문자 변경해도 같은 파일로 인식한다. podfile 을 Podfile 로 바꾸고 싶어서 mv podfile Podfile 해도 바뀐 파일로 인식 하지 않는다. 이럴 때는 force 옵션으로 강제 변환이 가능하다. git mv --force podfile Podfile
dotnet sdk 설치 brew cask install dotnet-sdk https://www.microsoft.com/net/learn/get-started/macos 에서 "Download .NET SDK" 로 다운 받아서 설치 해도 된다. app 만들기 $ dotnet new console -o myApp $ cd myApp 다음과 같은 파일들이 생성된 것을 볼 수 있다. $ tree . ├── Program.cs ├── myApp.csproj └── obj ├── myApp.csproj.nuget.cache ├── myApp.csproj.nuget.g.props ├── myApp.csproj.nuget.g.targets └── project.assets.json 1 directory, 6 fi..