Skip to main content

11 Simple Concepts to Become a Better Leader

1. Listening
Dinleme
"When people talk, listen completely. Most people never listen." - Ernest Hemingway
"İnsanlar konuşurken, tamamen dinle. Çoğu insan asla dinlemez." - Ernest Hemingway
2. Storytelling
"Storytelling is the most powerful way to put ideas into the world today." -Robert McAfee Brown
Hikaye Anlatma"Storytelling bugün dünyasına fikirler koymak için en güçlü yoludur." -Robert McAfee Kahverengi
3. Authenticity
"I had no idea that being your authentic self could make me as rich as I've become. If I had, I'd have done it a lot earlier." -Oprah Winfrey
Otantiklik"Ben senin otantik benliği ben oldum benim kadar zengin ki hiç bir fikrim yoktu. Eğer öyle olsaydı, ben çok daha önce yapardım." -Oprah Winfrey
4. Transparency
"As a small businessperson, you have no greater leverage than the truth." -John Whittier
Şeffaflık"Küçük bir işadamı olarak, gerçeğin daha büyük bir koz var." -John Whittier
5. Team Playing
"Individuals play the game, but teams beat the odds." -SEAL Team Saying
Takım Oyunu"Bireyler oyun, ama takımlar oran yendi." Saying-SEAL Team
6. Responsiveness
"Life is 10% what happens to you and 90% how you react to it." -Charles Swindoll
Duyarlılık"Hayat buna nasıl tepki% 10 ne olur ve% 90'dır." -Charles Swindoll
7. Adaptability
"When you're finished changing, you're finished." -Ben Franklin
Adapte olabilirlik"Eğer değiştirmeyi bitirdiğinizde, bitirdin."
-Ben Franklin8. Passion
"The only way to do great work is to love the work you do." -Steve Jobs
Tutku"Harika bir iş yapmanın tek yolu Yaptığınız işi sevmektir." -Steve Jobs
9. Surprise and Delight
"A true leader always keeps an element of surprise up his sleeve, which others cannot grasp but which keeps his public excited and breathless." -Charles de Gaulle
Sürpriz ve Lokum"Gerçek bir lider hep başkalarına tutamıyorsanız ancak onun kamu heyecanlı ve soluksuz tutar onun kol kadar sürpriz unsuru tutar." -Charles de Gaulle
10. Simplicity
"Less isn't more; just enough is more." -Milton Glaser
Basitlik"Az daha değil; yeterli fazla." -Milton Glaser
11. Gratefulness
"I would maintain that thanks are the highest form of thought, and that gratitude is happiness doubled by wonder." -Gilbert Chesterton
Minnet"Ben teşekkür düşüncenin en yüksek formu olduğunu iddia ediyorum ve minnettarlık mutluluk wonder katına çıkarılır." -Gilbert Chesterton
The Golden Rule: Above all else, treat others as you’d like to be treated
Altın Kural: Eğer tedavi olmak istiyorum gibi her şeyden önce, diğer tedavi
Dave Kerpen is the New York Times bestselling author of two books, Likeable Social Media and Likeable Business.

Popular posts from this blog

Dynamics Axapta: Sales Orders & Business Connector

Well, again folllowing my same idea of writting close to nothing and pasting code, I'll paste in some code to create a sales order from some basic data and the invoice it. I'll try to explain more in the future. AxaptaObject axSalesTable = ax.CreateAxaptaObject("AxSalesTable"); AxaptaRecord rcInventDim = ax.CreateAxaptaRecord("InventDim"); AxaptaRecord rcCustTable = ax.CreateAxaptaRecord("CustTable"); rcCustTable.ExecuteStmt("select * from %1 where %1.AccountNum == '" + MySalesOrderObject.CustAccount + "'"); if (MySalesOrderObject.CurrencyCode.Trim().Length == 0) MySalesOrderObject.CurrencyCode = rcCustTable.get_Field("Currency").ToString().Trim(); string sTaxGroup = rcCustTable.get_Field("taxgroup").ToString().Trim(); //set header level fields axSalesTable.Call("parmSalesName", MySalesOrderObject.SalesName.Trim()); axSalesTable.Call("parmCustAccount", M

Passing values between form and class

Class name is EmplDuplication and Form is EmplTable . void clicked() {    MenuFunction mf;    args args = new Args();    ;     args.record(EmplTable);     mf = new menufunction(identifierstr(EmplDuplication), MenuItemType::Action); mf.run(args); } Meanwhile, in the main() method of the EmplDuplication class, we need to put this Axapta x++ code to get the datasource: static void main(Args args) {     EmplDuplication EmplDuplication; EmplTable localEmplTable; ;     if(args.record().TableId == tablenum(EmplTable)) localEmplTable = args.record();     ... }