Sublime Text 2 is a text editor for OS X, Linux and Windows, currently in beta.

-1

What Credentials Are Needed to Become an Insurance Investigator?

iamerincuddy hace 10 años 0
Insurance investigators research and verify claims to make sure no fraud or cheating is involved. They search records and databases, conduct personal interviews and inspect damaged vehicles, property and buildings. They also write reports of their findings and cooperate with other investigators and law enforcement professionals. Although investigator jobs often require only a high school diploma, many hiring managers prefer candidates with relevant work experience or education. Some investigators must be licensed.

High School
Insurance companies usually require a high school education or the equivalent for insurance investigator jobs, according to the U.S. Bureau of Labor Statistics. Take speech classes or join the debate club in high school to develop the interviewing skills you will need as a future investigator. Take courses in English and writing to prepare for the report-writing component of an investigator's career.

College Training
Some insurance companies prefer to hire investigators with college degrees, although no degree is mandatory. The desired degree varies with the type of claims work. For example, an engineering degree is useful for investigating claims in factories, while an accounting degree equips you to investigate business fraud. A bachelor's degree in criminal justice is another path to the job of insurance investigator. A criminal justice program provides a legal background plus the necessary skills in research, investigation and critical thinking.

More At:
Investigator Education at Koyal Group
-1

5 Insurance-Buying Mistakes to Avoid

Marina Zimmer hace 10 años 0
Buying insurance can be confusing, but when the unexpected happens – a house fire, a fender bender or a broken bone – it's a relief to know that some of those financial losses will be covered. But how do you know how much coverage you need? And what questions should you ask before buying a policy? Many consumers aren't sure. Insurance coverage is far from one size fits all, so here's a look at mistakes some consumers make when buying insurance.

1. Assuming insurance is out of reach. The U.S. Census Bureau reports that 48 million Americans had no health insurance in 2012. And about 30 percent of U.S. households have no life insurance, according to LIMRA, a worldwide research and consulting organization for insurance and financial services. In some cases, consumers skip insurance because they think it's out of their budget. Often, that's not the case, according to Marvin Feldman, president and CEO of the LIFE Foundation, a nonprofit organization that educates consumers about financial planning and insurance. The LIFE Foundation collaborated with LIMRA on the 2013 Insurance Barometer Study, which found that the average consumer thinks life insurance is three times more expensive than it actually is. "[Consumers are] not researching it to determine what the cost is," Feldman says.

When buying health insurance or property and casualty insurance, ask about potential discounts. "Two-thirds of consumers don't realize they can get financial help if they buy their own health insurance, and they can get financial help if they go and buy in these health insurance marketplaces," says Lynn Quincy, senior policy analyst with Consumers Union, a division of Consumer Reports. "You may be way overpaying if you don't investigate this possibility." While health insurance discounts are often income-based, homeowners and auto insurers offer discounts for everything from being a member of groups like AARP, to being a good student or a good driver, to having a home security system.


2. Relying on assumptions or outdated figures. Changing economic conditions mean you might need more insurance coverage than you had in the past. Take life insurance. In the past, consumers might have based their life insurance coverage on their current income, but "if something happens and you're no longer around, you need more capital at work to provide the same income [to your beneficiaries]," Feldman says. Disability and long-term care insurance are even more complicated than traditional life insurance. "For disability, do you want coverage that lasts forever? Are there health issues in your family?" Feldman asks. "That's where you need to speak to somebody to get some guidance."

In the case of homeowners insurance, your home could be underinsured if you've renovated or if the cost to build a home has increased due to higher material costs or other factors. That's why experts recommend reviewing insurance coverage once a year to make sure it still fits your needs. Talk to your insurance agent if you're unsure.

3. Shopping on price alone. Comparing insurance policies can be confusing, but resist the urge to simply choose the policy with the lowest premium. Consider the company's reputation and the coverage you'd get for that premium. "As a general rule with health insurance, the higher the premium, the lower the amount you pay when you go to the doctor," Quincy says. Private health insurance plans must provide coverage examples showing what your estimated out-of-pocket costs would be for, say, having a baby or managing Type 2 diabetes. Some examples might not apply to you, but they can help you compare plans and see how much you might pay in coinsurance and copays.

"Make sure you're shopping apples to apples and getting quotes based on the same coverage that you have," says Lori Conarton, a spokeswoman for the Insurance Institute of Michigan. Your property and casualty insurance may not cover things like food spoilage in the event of a power outage or stolen electronics worth more than $1,000, so you may want to purchase extra endorsements to cover those possibilities, she adds.

>>>> LINK SOURCE
http://marx0edward.blog.com/2014/01/31/5-insurance-buying-mistakes-to-avoid/

>>>>FOR MORE INFORMATION

Westhill Consulting About Travel
Westhill Consulting Travel Guide and Tips

-1

Color-coding file names in the sidebar dependent on last modification time

Dragan Espenschied hace 12 años 0
The Kate text editor for KDE uses a similar layout of the sidebar, displaying a list of files. Based on their last modification time, the files get different background colors. The most recently edited gets a quite bright background color that fades when edits are made in other files. This is very handy to quickly the spot the two or three files inside a project that need editing today.
-1

Select text typed since last operation

Brian Vito hace 13 años 0
A command that selects the text just typed in (since the last mouse click or command) like ESC in Smalltalk-80, sam or acme or pressing both LEAP keys together on the SwyftCard or Canon Cat.
-1

Have all the "find" or "goto" functions temporarily overlay or replace the sidebar content.

Todd Lucas hace 13 años 0
Look at Word 2010 for Windows to see a good example of find with provides results with good context.  This should improve the useability of "find" and "goto" commands while retaining maximum buffer space.
-1

High Contrast Theme & Cursor for working outdoors or in sunlight

Ian Nieves hace 12 años actualizado por Vic Johnson hace 12 años 4
high contrast theme for working on the beach or in the sun... ALSO a high contrast cursor (insertion point) so that I can see where the cursor actually is.  Perhaps put a glowing ring around it...  Currently it is so skinny it is impossible to see.
-1

Improper php indenting near anonymous function

Dave Lighthart hace 11 años 0

The following block indents improperly.  The problem appears related to the length of the anonymous function in the array.  If some of the chain selectors are combined, the indent works as expected.


<?php

namespace \App\AppBundle\Form;

use Symfony\Component\Form\AbstractType;

use Symfony\Component\Form\FormBuilderInterface;

use Symfony\Component\OptionsResolver\OptionsResolverInterface;

class ServiceType extends AbstractType

{

    public function buildForm(FormBuilderInterface $builder,array $options)

    {

        if ($sc->isGranted("ROLE_ADMIN")){

        } else {

            $builder->add('procedureCode'

                ,null

                ,array(

                    'empty_value'         => ''

                    ,'label'               => 'Procedure'

                    ,'label_attr'          => array('class' => 'txtl')

                    ,'attr'                => array('class' => 'select0')

                    ,'query_builder'       => function ($repository) use ($formusorid){

                        $qb = $repository->createQueryBuilder('p');

                        $qb->innerJoin('p.role', 'r')

                        ->innerJoin('r.usor','u','WITH',$qb->expr()->eq('u.id', ':usorid'))

                        ->leftJoin('AppAppBundle:Service','s','WITH',$qb->expr()->eq('s.procedure', 'p.id'))

                        ->setParameter('usorid', $formusorid)->select('p, COUNT(s) AS HIDDEN total')

                        ->addGroupBy('p')

                        ->addOrderBy('total' ,'DESC')->addOrderBy('p.code');

                        return $qb;

                    }));

}

if ($sc->isGranted("ROLE_ADMIN") or $otherview){

}

public function setDefaultOptions(OptionsResolverInterface $resolver)

{

    $resolver->setDefaults(array(

        'data_class' => '\App\AppBundle\Entity\Service'

        ));

}

public function getName()

{

    return '_App_Appbundle_Servicetype';

}

}


-1

autocomplete Framework & CMS based [Project basis] | may be as plugin

Md Rashidul Islam hace 11 años 0

For example when I work with Ruby on Rails or Laravel PHP framework or Joomla CMS or WP, they have many methods, classes, functions..It would be great to have the auto-complete option. For example i type the class name Base:: then it should display a lists of the variables and methods of that class.


Kindly Refer to: http://www.microsoft.com/Web/webmatrix/developer.aspx

AUTO COMPLETION AND TYPE THROUGH


I need it bad. Then it would have no issues remain to be the most awesome editor. Though already most awesome but I really miss this feature. When works with Eclipse or Dreamweaver, they provide nice elegant auto-complete feature


I don't know it may be difficult. Then may be developed as plugin. I'm sorry, If i can, then  i would have develop. But i don't know Python

-1

Movement by whitespace-delimited words outside Vintage

greppo hace 12 años 0
Currently movement by word (ctrl+cursor motion) stops at every punctuation boundary, which is not always what you want when dealing with code that is dense in punctuation.

In Vim and Vintage-mode, there are the W and B movement commands to move by whitespace-separated words, so you need fewer keystrokes to move around or expand selections.

Outside of Vintage mode, I would like commands and bindings to move the cursor by whitespace delimited word.
-1

Unobtrusive Update Message

Jonathan Chayce Dickinson hace 12 años 0
Currently the update notification is a modal popup (on Windows). This should rather be a 'slide-in' unfocused dialog or such that goes away after, maybe, half a minute.
Depending on the workflow that I am using ST2 for at the time (specifically opening and closing it as it is required - basically Notepad replacement, which is basically my exclusive use for it at work) this can get really annoying.