목록MJ (709)
MJay
Commiting changes echo '*.tmp' > .gitignore git difftool git difftool --staged -> stage 별로 확인이 가능하다 git log --pretty=format:"%h %an %ar - %s" git show - for author's information 와 함께 보여준다 Work Remotely git remote add branch git push origin master git pull origin master git log --grep="#1234" git branch -r The command git pull is a combination of two different commands, git fetch and git merge. F..
1 Introduction 1.1 Precision Precision is crucial in technical writing. When you express an idea in technical writing, it may be realized in some device or process. If the idea is wrong, the device or process will also be wrong. To quote my friend, physicist and software engineer par excellence, Dr. George Hacken, “syntax is destiny.” 1.2 Indent There should be no intent to evoke an emotional re..
http://time.com/5541656/china-bohemian-rhapsody-censor-lgbtq/ China has removed more than two minutes of LGBTQ content from the 2018 Best Picture nominee Bohemian Rhapsody, which landed in the world’s second-largest movie market on March 22. The biopic chronicling British rock-band Queen shows frontman Freddie Mercury kissing and touching other men in its original version. But in China, a scene ..
Quotation MarksUse quotation marks around words quoted from someone or something. Also use quotation marks around a word you intend to define.Quote The president began the meeting with this mantra: "Work hard. Work smart. Take risks. Have fun." Definition The brand scored below industry average for "unaided awareness." The unaided awareness score is the percentage of people polled who stated the..
http://time.com/5556962/papa-john-shaquille-oneal/The chain says basketball Hall of Famer will appear on TV commercials and promoted Papa John’s in other ways. He will also join the company’s board of directors and invest in nine of its restaurants in the Atlanta area.Papa John’s is trying to revive its image after the company’s founder and namesake, John Schnatter, was reported to have used a r..
TIME 보면서 영어 공부중Rayfield Byrd knows when it’s time to wake up every morning. The 68-year-old Oakland, Cal., resident hears a voice from the living room offering a cheery good morning. Except Byrd lives alone.A little after 8 a.m. each day, a small yellow robot named Mabu asks Byrd how he’s doing. Byrd has Type 2 diabetes and congestive heart failure, and about three years ago, he had surgery to i..
Ten minutes to Effective Business WritingIf you become anxious at the thought of writing a business document, you're not alone.Effective business writing is a critical leadership tool.The foundation of effective business writing is clear thinking.Writing effectively for business is something you can easily learn.Working within a framework can reduce the natural fear of writing business documents..
Python Basicsprint ('Alice' * 5) 'AliceAliceAliceAliceAlice'Flow Controlspam = ['cat', 'bat', 'rat', 'elephant'] spam[0:4] ['cat', 'bat', 'rat', 'elephant'] spam[1:3] ['bat', 'rat'] spam[0:-1] ['cat', 'bat', 'rat']Changing Values in a List with Indexesspam = ['cat', 'bat', 'rat', 'elephant'] spam[1] = 'aardvark' spam ['cat', 'aardvark', 'rat', 'elephant'] spam[2] = spam[1] spam ['cat', 'aardvark..
Graphs are sets of connected nodes - verticesThe connections are referred to as edgeseach node is an operation with possible inputs that can supply some outputIn [1]:import tensorflow as tf In [2]:n1 = tf.constant(1) In [3]:n2 = tf.constant(2) In [4]:n3 = n1 + n2 In [5]:with tf.Session() as sess: result = sess.run(n3) In [6]:print (result) 3 n3 은 여기서 뭘까 -> Tensor 이다In [7]:print (tf.get_default_g..
Ten minutes to Effective Business WritingIf you become anxious at the thought of writing a business document, you're not alone.Effective business writing is a critical leadership tool.The foundation of effective business writing is clear thinking.Writing effectively for business is something you can easily learn.Working within a framework can reduce the natural fear of writing business documents..