Skip to main content

2008/03/18

今天自己的想法還有跟許老師談過後的筆記

  1. 去找 toung 的 thesis 來看,看看這種跨領域的 thesis 要怎麼寫,看我有哪些跟它相像,哪些跟他不一樣,所以我該因此去找哪些相關的資訊來補足我現在不知道的地方
  2. 自己要知道自己厲害的地方在哪,自己做的東西哪裡好哪裡不好,自己哪些地方進步了,不管別人怎麼說,當建議聽就好,因為最懂得人應該就是你自己。
  3. present 的時候要避重就輕,不是吹牛,也不是說謊,只是先把做的好的,做完成的先present 出來,接著在講哪裡還沒完成,或是哪裡還有 limitation。這樣先讓別人知道你做了什麼,有哪些東西做好了,再講哪些地方沒有做好。不然直接 present 沒做好的地方,會變成別人覺得都是問題,而忘記你其實也做了不少東西。
  4. 我太乖了,ORZ,已經不只一個人這樣講了,不是,是有很多很多人這樣講了。人當然要謙虛,但是,對自己也需要有自信,講話堅定穩重,決不口軟,但也決不要跟別人吵架,因為那樣不值得。
  5. 改變自己,不要期待別人改變,尤其是年紀越大的人越難改。
  6. 要學著去跟自己不同性子的人去相處,你既然明知到對方喜歡怎樣的interaction 方式,雖然必是要直接照著對方的方法做,但是可以試著去改變自己去和它相處的順利一點。

Comments

Popular posts from this blog

Setting MySQL to Use UTF-8 on MAMP (MySQL 5.5.9, or 5+)

I wanted to setup MySQL to use utf-8 on the MAMP installation on my Mac. I tried the instructions from this article: http://cameronyule.com/2008/07/configuring-mysql-to-use-utf-8/ However, I kept getting error messages that are similar to this one [ERROR] /Applications/MAMP/Library/bin/mysqld: unknown variable 'default-collation=utf8_general_ci' I did some search and realized that several variables are deprecated. Reference: http://dev.mysql.com/doc/refman/5.1/en/server-options.html Therefore, I added the following lines into /Applications/MAMP/conf/my.cnf [mysql] character-set-server=utf8 [client] character-set-server=utf8 [mysqld] character-set-server=utf8 collation-server=utf8_general_ci init-connect='SET NAMES utf8' I restarted the server and mysql run successfully with relevant variables being set correctly. In the "Variables" tab under phpMyAdmin interface (ex. http://localhost:8888/MAMP/?language=English) character set c

Using Pandoc for Doing Citation and Bibliography in Markdown

Markdown is a simple formatting syntax that allows you to do common formatting with ease. Pandoc is a feature rich interpreter that helps you convert documents from one format to anther. If you are writing homework, research papers, or anything that needs citation and a bibliography, you can totally use Markdown and Pandoc to achieve that. Below is a set of instructions that you can follow to generate a document with in-text citation and bibliography. First, install Pandoc and the extension for creating citation ( pandoc-citeproc ).  There are several ways to install Pandoc, you can choose one of them recommended on the official website . On Mac, one way is to install Homebrew , a package manager, and then use Homebrew to install Pandoc and the extension. For Windows users, please refer the official website on how to install Pandooc and extension. Here I will show how to install Pandoc and the extension for citation through Homebrew. After installing homebrew, you can exec

Use NVM to handle Angular-Node.js incompatibility (e.g., Uncaught SyntaxError: Unexpected token 'export')

Overview If you are a fullstack developer, the chances are that you will be creating multiple frontend or Node.js projects along the way. When you are creating new projects using the newest version of the cli (command-line interface) of a particular framework, you might be asked to install the most updated version of Node.js in order to utilize the newest feature. This might involve upgrading your Node.js version, which might not be compatible with other existing projects (e.g., using Angular) you have created before. A potential solution is to use nvm (Node Version Manager) to install multiple versions of Node.js and use a particular version of the Node.js to install the proper version of the cli (e.g., Angular-CLI) that can be used to manage a particular project. Here I will use a problem I run into to explain how to solve it. Problem There is a compatibility issue between Node.js and angular.js. For instance, I run into an error when I was using an incompatible version of Node.js