Tag Archives: TAB

Sydney drinks to 'small bar' movement

When Martin O’Sullivan opened his small Grasshopper bar in Sydney’s awkwardly-named Temperance Lane three years ago, his friends thought it was madness.

What would entice drinkers down a tiny lane into a basement last inhabited by a printing business when there were plenty of lively pubs and beer barns nearby?

“Everyone thought I was a nut case,” he says.

But in the ever-thirsty city the Grasshopper has flourished, at the vanguard of an explosion in small bars after a change in liquor licensing laws allowed a move away from the traditional large pub to intimate drinking holes.

“It’s about the cultural change, because pubs have had a good run for some 180 years,” says O’Sullivan, whose restaurant bar serves drinks in glass jars and decants wines into glass laboratory flasks.

When the idea of amending liquor licensing laws to help bring smaller, boutique bars to Sydney was first floated it was scoffed at by then-president of the New South Wales Australian Hotel Association, John Thorpe.

“We aren’t barbarians, but we don’t want to sit in a hole and drink chardonnay and read a book,” the publican told the Sydney Morning Herald in 2007.

O’Sullivan said the comment struck a chord.

“There couldn’t have been a better quote. A lot of men were like ‘I don’t mind a beer, but the idea of sitting in a pub that smells like cigarettes with pokies (slot machines) in the background and the TAB (betting agency) isn’t particularly my idea of a lovely drinking establishment’.”

He says one of the drivers of the growth in small bars has been their appeal to women, who up until the 1960s were banned from entering the public bar in many Australian pubs, instead being ushered into the ladies’ lounge.

“When these small bars started, there was a huge influx of women. And they weren’t coming in and getting drunk,” says O’Sullivan, who heads the Small Bar Association of New South Wales.

“We don’t have TVs, we don’t have the UFC (Ultimate Fighting Championship),” he says, adding that small bars tend to focus on quality wines, artisan products, cocktails and great service.

In 2008, the New South Wales state government agreed to change laws which cut the costs for some liquor licences.

The move allowed small, boutique bars to flourish, with more than 70 opening within the city precinct, and many more across Sydney in the years since.

Lord Mayor Clover Moore was instrumental in helping push through the law, believing the change would not only broaden options for drinkers, but bring other benefits.

“Not everyone wants to drink in a large pub or a noisy club, and small bars offer an intimate, boutique alternative,” a council spokesman said.

“They are a key component of the city’s efforts to revitalise Sydney and bring life and variety back to our laneways and small streets.”

It means that a rash of distinctive bars have popped up in basements and other hidden niches in the city, including Stitch with its old-fashioned sewing-machines, the Baxter Inn whisky den, and Absinthe Salon which specialises in the wormwood spirit.

“It’s not so …read more

Source: FULL ARTICLE at Fox World News

Replace a whole line with "#"

By saeed.soltani

how can i replace the whole line which start with a specific pattern such as “???”, with a desired string such as “#” i.e:

in-file:

Code:

TAB 20120201 21:02:02
MRD 20121301 22:21:01
??? 201 256
SAS 20123010 12:25:41
MMT 20120102 11:01:12
POP 20120306 02:01:01
??? TAV 2021 333


out-file:

Code:

TAB 20120201 21:02:02
MRD 20121301 22:21:01
#
SAS 20123010 12:25:41
MMT 20120102 11:01:12
POP 20120306 02:01:01
#


Source: FULL ARTICLE at The UNIX and Linux Forums

Bash: menu-complete and reverse

By ozkanb

Hi,

In the archives I found this:

Quote:

On Wed, 01 Oct 2003 20:04:15 -0300
Herculano de Lima Einloft Neto wrote:

>
> Hello, I would like to bind menu-complete with a -1 argument to
> something, S-TAB for instance. Is there any way to do that? Other shells
> offer reverse-menu-complete. If I could bind readline arguments..
>
> bind S-TAB:’menu-complete(-1)’ – is there something like this?
>

Hi Herculano,

This is a bit of a tough one, and depends on how you have readline
configured (ie. emacs or vi mode). If you add the following to
the end of your /etc/inputrc file you should get what you want:

$if mode=vi
“C-0-“: digit-argument
TAB: menu-complete
“e[Z”: “C-0-t”
$else
TAB: menu-complete
“e[Z”: “M–1t”
$endif

“man readline” has all the details about why this works.

HTH,
Sean


And this works fine.

Code:

$if mode=vi
"C-0-": digit-argument
TAB: menu-complete
"e[Z": "C-0-t"
$else
TAB: menu-complete
"e[Z": "M--1t"
$endif


But what I want is to reverse this. So I want that tab does reverse menu completion and shift tab does normal menu completion.

Can anyone help me with this? Thanks

…read more

Source: FULL ARTICLE at The UNIX and Linux Forums