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

Mark All for Open Cust Trans and Open Vend Trans

We have situations where there are lots of open transactions that need to be settled against each other. This can be the case if auto settlement is turned off. One solution is to add a "Mark All" button to the custOpenTrans or vendOpenTrans forms. This button "checks" the mark checkbox on every line. The user can then uncheck several lines if needed and Update to settle the lines. The code below is an example of what we used on the open vendor transaction screen. The code is very similar on the AR side. One note: I used vendTable.AccountNum in the code below. That should be generalized to work with any buffer that is passed into the open trans form. void customMarkAll() { VendTransOpen localVendTransOpen; VendTrans localVendTrans; container conSum; int linesProcessed; ; //show wait cursor startLengthyOperation(); element.lock(); //remove all prior markings specOffsetVoucher.deleteSpe...

Print Report in Microsoft Dynamics AX 2009 through X++

I am trying to print sales confirmation report on a button click which I have added on Sales Order Detail form in Microsoft Dynamics AX 2009. On click event of that button, I have written following code: void clicked() {     Args                args;     ReportRun           reportRun;     SalesFormLetter     salesFormLetter;     PrintJobSettings    printJobSettings;     CustConfirmJour     custConfirmJour;     RecordSortedList    list                = new RecordSortedList(55);     SalesTable          salesTableUpdate;     ;     SELEC...

Creating Free Text Invoice through X++ code

Job: Calling class from job to run the class public void freeTextInvoicePostTestJob() { Dialog dialog; DialogField dlgCustAcc; DialogGroup dialogPeriodLengthGroup, dialogPeriodLengthGroup1; DialogField dlgLedgerAcc; ; dialog = new Dialog("Free-Text Invoice"); dialogPeriodLengthGroup1 = dialog.addGroup('Cust Table'); dlgCustAcc = dialog.addField(typeid(CustAccount)); dialogPeriodLengthGroup = dialog.addGroup('Ledger Table'); dlgLedgerAcc = dialog.addField(typeid(LedgerAccount)); if(dialog.run()) { if(dlgCustAcc.value() && dlgLedgerAcc.value() != '') FreeTxtInvoiceCreatePost::main(dlgCustAcc.value(), dlgLedgerAcc.value()); else throw error(strfmt("Either CustAccount or LedgerAccount info is missing.")); } } Class: Which creates the free text invoice class FreeTxtInvoiceCreatePost { } static void main(CustAccount _custAccount, LedgerAccount _ledgerAccount) { CustInvoiceTable custInvoiceTable; ...