2018.12.16 일요일

in #kr7 years ago (edited)

01. 퇴근

21시 퇴근 : 주말은 출근 안했음 하는 바램입니다. 오픈일정이 얼마 남지 않아서 출근은 했지만 .. 3주째 이러고 있으니 에휴 ...


02. flutter

약 1주일전 flutter 1.0이 공식 적으로 나옴 우왕 굳 ! flair

FLARE
svgexport7.png

이걸로 에니메이션 만들면 정말 생동감 있네요, 무엇보다 무료 ! 한번 대모 봐 보세요 로봇이 슝슝 거리면서 멋지게 저공 비행하고 있네요 :)


03. 대화의 기술

쉽지 않은 것 같습니다, 내 주장을 펼치는 것은 쉽지만, 남의 이야기를 들어주는 것은 정말 힘들죠. 그래서 부단한 노력이 필요한 것 같네요. 일단 상대방의 이야기를 듣고, 바로 말하지 않고, 한박자 쉬고 나서 말하는 연습 부터 :)


04. steemmonsters

자동 대전 프로그램이 어느정도 만들어 졌습니다. 물론 승률이 마구 좋거나 하지는 않네요 그리고 버그로 인해 중간중간 프로그램이 멈추고 ㅜㅜ 또한 워낙 대전 룰이 많고 그래서 정말 쉽지 않습니다. 후... 인생 편하게 살려 했지만 쉽지 않네요 :) 열심히 또 튜닝을 해봐야죠


05. shell script

Just redirect the final output to a file:

Code:
find /usr/include -name "*.h" -type f | xargs grep "#define UINT" >/some/file

Your commands as written will run into a problem if files or directories with embedded spaces in their names are encountered. (You should never see that under /usr/include.) xargs will treat each part of that name as a separate argument. There are two ways to avoid that. You could tell both find and xargs to use a NUL character as a separator:

Code:
find /usr/include -name "*.h" -type f -print0 | xargs -0 grep "#define UINT" >/some/file

Or, you could avoid use of xargs altogether and let find invoke grep directly:

Code:
find /usr/include -name "*.h" -type f -exec grep "#define UINT" {} +

That final "+" tells find that grep will accept multiple file name arguments. Like xargs, find will put as many names as possible into each invocation of grep.

You might also want to include the "-H" option in the grep command. That will ensure that grep includes the file name in the output even in the somewhat unlikely case that it gets invoked with just a single filename argument. (A set of names that was just a tiny bit too long to fit in one command line would cause that.)

06. today dev links

Sort:  

스몬 자동 대전 프로그램 기대합니다~^^

Posted using Partiko iOS

가즈아~~

Posted using Partiko Android

flutter 1.0 재미있어 보이는데 보기만해도 어렵게 느껴지는 군요 ㅋㅋㅋ

저는 스몬 일주일에 이틀이나 일퀘할까 말까네요.. 카드를 다 팔아야 하나 고민중 ^^

가끔 즐기시면서 하시면 되죵 ㅋ

그리고 카드 가격은 조금씩오르는 추세네요

베타팩 보상이 아니라 리워드카ㅡㄷ 보상으로 바뀌어서 :)

Posted using Partiko Android

짱짱맨 호출에 응답하여 보팅하였습니다.

어제도 출근하셨던거군요 ㅠㅠ
주말에는 좀 쉬어줘야하는데 말이죠
오늘도 화이팅입니다~

어제도 오늘도 내일도 ... 월월월 ㅜㅜ

언젠간 끝나겠죵... :)

Hi @wonsama!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your UA account score is currently 3.724 which ranks you at #5016 across all Steem accounts.
Your rank has dropped 32 places in the last three days (old rank 4984).

In our last Algorithmic Curation Round, consisting of 235 contributions, your post is ranked at #118.

Evaluation of your UA score:
  • You're on the right track, try to gather more followers.
  • The readers like your work!
  • Good user engagement!

Feel free to join our @steem-ua Discord server

FLARE는 애니매이션 도구인가요? 그리고 개발 링크가 매우 유용하네요. 감사합니다. ㅎㅎ

넹 웹이랑 플러터 동시에 게시가 가능 하네요 특히 플러터에서는 단순히 flr 파일 임포트후 사용하면 되서 에니메이터 주변에 한분만 있어도 이전보다 훨 멋진 앱 만드는 것이 가능해 질듯요 ㅋ

Posted using Partiko Android

플러터가 역시 최고라고 할수밖에 없습니다. 로봇 애니매이션 데모를 보고나니 flare도 너무 배우고 싶어요.ㅋ

웹기반 툴이랑 저장공간도 무료라 좋아요

privte 는 유료긴하지만 :)

Posted using Partiko Android

Perfection is not attainable, but if we chase perfection we can catch excellence.

Coin Marketplace

STEEM 0.05
TRX 0.33
JST 0.079
BTC 63469.67
ETH 1683.58
USDT 1.00
SBD 0.41