AurosBlog

Technical Blog

Grow your negotiating skills

A good deal-maker can make any economic environment OK. But most team leaders have never been trained in the basics of negotiating. That’s too bad – they’re probably leaving money on the table. Money that could have made a difference to their own organization.

In today’s environment, many organizations are looking for new business opportunities. And, because it’s the easiest place to start, they will often reduce their pricing to get a foot in the door. On the other side, many companies are now asking their vendors to cut fees or reduce product prices. It’s a tactic that makes sense because they know they can go elsewhere to get similar goods and services.

However, many team leaders designated to be the “negotiators” on both side rarely have had any real training in the art of negotiating. Consequently, good organizations are missing opportunities and failing to explore other joint opportunities when they start talking. Here are some tips and tactics I’ve seen used by some of the best deal-makers in various organizations. See if they can help you improve results and performance:

1. First and foremost, be prepared to walk away. This is single most important strategy to getting what you want. Whether at work, or just generally speaking, out of life. If you aren’t prepared to say, “No” and mean it; then you are likely to end up settling for a lesser outcome. Before entering into the negotiation, know in advance exactly what you are and are not willing to concede, so that you do not need to process this information on-the-fly without adequate time to weigh the pros and cons of each.

2. A good deal comes together quickly – a bad deal takes way too long.
I’ve negotiated on behalf of organizations around the world. Whether it’s been in North America, South America, Asia or Europe this is a truism. Recognize when it’s time to forego a deal entirely. Take a clue from the amount of time it’s taking to get what you want. If you have to “force it,” chances are it will come back to bite you later on. I’ve seen many people waste a lot of time with the misguided belief that with just one more thing the deal is going to work – it rarely does.

3. Deal at the right level. Nothing is more frustrating than trying to do a deal with an individual who can’t make the final decision. It’s like negotiating against yourself – you address an issue and try to come to a conclusion and then the other person takes that to someone else “behind the scenes” only to come back and say it can’t be done on those terms. It’s far more efficient and effective to find the right person to negotiate with directly. Tip: If you don’t know if you’re working with the right person, just ask if they have authority for the final decision.

4. Come prepared. The more information you have about the “marketplace,” the more likely you are to not only prevail, but also get the best deal possible. While you may actually prevail by shooting in the dark, not knowing the extent of the opportunity could result in your leaving a lot on the table. And don’t be shy about asking these easy questions: “Is this the best you can do? Does anyone else get a better deal than this?” Knowledge is truly power.

5. Don’t take anything personally.
Here’s my best advice on this issue: To maintain objectivity, treat every negotiation as if you are doing a deal for someone else who has hired you as the professional deal-maker. When you allow yourself to get emotionally involved, rational thought often goes by the wayside and you’re far more likely to concede to your later regret. Cool heads get the best, and most, out of what they are seeking..

6. Anticipate objections. Prior to the negotiation, brainstorm all the reasons or objections that may prevent you from getting what you want – and prepare a thoughtful counterpoint for each, one at a time. Expect the other person to use whatever reason and raise whatever issue they can come up with to out-deal you. During a negotiation, people conjure all sorts of reasons why something can’t be done, many of which are often bogus. Until you know the valid sticking point, you are just spinning your wheels.

7. Don’t underestimate Karma.
Even in business, what goes around indeed comes around. The best deal is one where both parties walk away feeling positive about the result of the negotiation. The worst deal is that where one side leaves the table feeling slighted with the short end of the stick. If you’re the kind of person who “has” to win and is prepared to humiliate or otherwise make someone feel bad as a result, sooner or later the gain is likely to come back to haunt you.

Happy Working :)

firefox about:config hacks

Unless you’re a Firefox power user, you may not be familiar with the about:config page. The Firefox about:config page is not so much a page as it is a somewhat hidden configuration section. It’s hidden because it’s fairly powerful and not nearly as simple to use as the standard Preferences window. In the about:config page, you have to know what you are doing or you can mess things up a bit. In fact, when you attempt to go to that page for the first time, you have to accept an agreement (which is really just a warning) before you can continue.

How this page works is simple. You reach the page by entering about:config in the address bar. There are entries (one per line) that handle various types of configurations. Each entry has a searchable keyword. The entries can be of Boolean, integer, or string value. Entries contain Name, Status, Type, and Value. Typically, you will be modifying only the Value, by double-clicking on it and making the change. With all of that in mind, let’s take a look at 10 of the best ways you can “hack” the about:config page.

1: Speed up Firefox

This hack requires a few steps. Search for pipelining in the filter and you should see:

network.http.pipelining: Change this to true.

network.http.proxy.pipelining: Change this to true.

network.http.pipelining.maxrequests: Change this to 8.

Now search for max-connections and you should see:

network.http.max-connections: Change this to 96.

network.http.max-connections-per-server: Change this to 32.

2: Disable antivirus scanning

This is only for the Windows version. If you’re downloading large files, this scanning can seriously slow things down. And since you will most likely scan the downloaded file anyway, you’ll probably want to disable this. Of course, if you are uber paranoid (not a bad trait for computing), you might want to leave this entry alone.

To disable antivirus scanning, search for scanWhenDone and you should see:

browser.download.manager.scanWhenDone: Change this to false.

3: Open Javascript popups as tabs

If a popup window lacks the features of a browser window, Firefox will handle it like a popup. If you would prefer to open all windows, including popups, as new tabs, you need to tell Firefox in about:config. Search for newwindow and you will see three entries. Of those three entries, you will want to modify:

browser.link.open_newwindow.restriction: Change this to 0.

4: Spell checking in all fields

By default, Firefox checks spelling only in multiple-line text boxes. You can set it to check spelling in all text boxes. Search for spellcheckdefault and you should see:

layout.spellcheckDefault: Change this to 2.

5: Open search bar results in new tab

When you use the search bar, the results display in the current tab. This can be a nuisance because you will navigate out of the page you are currently in. To make sure Firefox always opens search results in a new tab, search for openintab and you should see:

browser.search.openintab: Change this to true.

6: Auto export bookmarks

In Firefox 3, bookmarks are automatically saved and exported for you. The only problem is that by default, they’re saved as places.sqlite instead of the more convenient bookmarks.html. To change this setting so that they can be easily re-imported, search for autoExportHTML and you should see:

browser.bookmarks.autoExportHTML: Change this to true.

7: Disable extension install delay

One of the few gripes I have with Firefox is the silly countdown you must endure every time you want to install an extension. Fortunately, this can be disabled. Search for enable_delay and you should see:

security.dialog_enable_delay: Change this to 0.

8: View source code in an external editor

When you need to view the source of a page, it opens up in browser popup. Most developers would probably like to have that opened in their favorite editor instead of having to cut and paset. To do this, there are two entries to modify. Search for view_source.editor and you will see:

view_source.editor.external: Change this to true.

view_source.editor.path: Change this to the explicit path to your editor of choice.

9: Get more add-on search results

When you do a search in the Add-on window, you’ll see just five results. You might find it more efficient to increase this number. Search for getAddons and you should see:

extension.getAddons.maxResults: Change this to 10 (or higher, if you want to see even more).

10: Redefine the Backspace button

Did you know you can configure Firefox to use the backspace button to either go back a page or go up a page? This keeps power users from having to go back and forth from the keyboard to the mouse. Search for backspace and you will see:

browser.backspace_action: Change this to 0 for previous page and 1 for page up.

Happy Hacking!! :)

Now if you know any other hacks except these please share this here.

Tip

If Firefox is messed up because you accidentally mis-configured about:config, you can fix it in one of two ways:

  • Make a backup of your prefs.js file before you start editing. Then, if something goes wrong, you can restore it by copying it over the corrupt file.
  • If you can’t restore via a backup prefs.js file, you can exit Firefox and issue the command firefox -safe-mode to bring up the Firefox Safe Mode screen. Then, just select Reset All User Preferences To Firefox Defaults. Note: This will restore all user preferences to their default values.

|