Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
2answers
478 views

In Ruby on Rails Routing I Would Like to Use Dash `-` Instead of Underscore `_`

I would like all the URLs for my web applications to use dash - instead of underscore _ for word separators. I'm surprised about a couple of things really: Google et al. continue to distinguish ...
13
votes
8answers
7k views

how to get latex to hyphenate a word that contains a dash?

In a latex document I'm writing, I get an overfull hbox warning because of the word "multi-disciplinary", which happens to be rendered at the end of a line. I can get rid of this particular warning ...
6
votes
2answers
259 views

Bash script execution with and without shebang in Linux and BSD

How and who does determine what does executed when a bash-like script is executed as a binary without a shebang? I guess that running a normal script with shebang is handled with binfmt_script Linux ...
5
votes
3answers
981 views

Information Dashboards in R with ggplot2

I'm looking to create a static dashboard viewable in a web browser. And I'd like to create something like what Stephen Few does in his book Information Dashboard Design. (see example at bottom) ...
4
votes
2answers
81 views

How to import python module when module name has a '-' dash or hyphen in it?

I want to import foo-bar.py. This works: foobar = __import__("foo-bar") This does not: from "foo-bar" import * My question: Is there any way that I can use the above format i.e., from "foo-bar" ...
4
votes
10answers
2k views

Shell scripting input redirection oddities

Can anyone explain this behavior? Running: #!/bin/shecho "hello world" | read var1 var2echo $var1echo $var2 results in nothing being ouput, while: #!/bin/shecho "hello world" > ...
3
votes
2answers
192 views

C# Random-method causes “hidden dash”

I'm trying to generate a random string with 8 characters with the following method and it works perfectly, but It's 1 little problem. When I'm printing the string to the screen and copying it from IE ...
3
votes
3answers
489 views

How to prevent LaTeX from hyphenating words containing a dash?

I would like to globally prevent LaTeX from hyphenating 'Objective-C'. I am aware of the \hyphenation command, but I don't see how I can make use of it. If I pass 'Objective-C' to this command, the ...
3
votes
4answers
3k views

bash, dash and string comparison

While writing a fairly simple shell script, I've tried to compare two strings. I was using /bin/sh instead of /bin/bash, and after countless hours of debugging, it turns out dash (which is actually ...
2
votes
1answer
18 views

What is the most efficient way to escape passed parameters in ssh on a posix compliant shell?

Sometimes you want to escape something reliably before passing it to a shell through ssh. It's curious how difficult this problem seems to be though. :-$ Is there a shorter or otherwise more ...
2
votes
3answers
331 views

How To Add Dash Between Controllers Name In Kohana?

I'm working on authorization module for Kohana 3.1. In my module's init.php... Route::set( 'a11n', '<controller>', array( 'controller' => 'signIn|signOut|signUp' ) ...
2
votes
1answer
51 views

Search for words with a Dash in Twitter API

How can I get the results for the phrase "E-Contact" In a normal twitter search it returns results with E-Contact but also results without the dash anything but The same happens for a ...
2
votes
2answers
357 views

How to migrate scripts from bash to dash?

I'd like to avoid installing bash on every new Debian 6 install. So I need to convert all my bash scripts to dash. - How would you do that ? - What are the differences between the 2 languages ? - ...
2
votes
1answer
309 views

Double redirection test

What does this print your shell? echo foo | while read line; do echo $line; done < <(echo bar) I would expect it to evaluate to echo foo | bar or foo < <(bar), both of which would ...
2
votes
1answer
117 views

General question about information a scheduler 'dashboard' should have

Sorry for another non programming question, but I'm using Quartz.NET, a scheduler for .NET applications, for a Windows Service which allows users to schedule transferrig of files that match a regular ...
2
votes
1answer
67 views

Why are SQL fieldnames sometimes spelled like `this`?

What's the difference between SELECT * FROM `this` and SELECT * FROM this ?
1
vote
1answer
15 views

How to force uniq to distinquish between em- and en-dashes?

uniq (GNU coreutils 8.5) does not seem to distinguish between em- and en-dashes: $ echo -e "a–b\na—b" | uniq -c 2 a–b Is there any way to force this distinction? I've tried various settings for ...
1
vote
1answer
165 views

The dash (-) on .htaccess - the remaining question

Special string - (dash) in Substitution means no substitution and is useful when you need to apply the rule while leaving original URL untouched. So: RewriteRule ^(somefile|somedir|someotherfile) - ...
1
vote
2answers
1k views

How to find PID of an dash-exec command

NOTE: I thought I was using bash, but /bin/sh is linked to /bin/dash, which has this weird exec problem. I have a simple bash shell script on Linux which is used to launch a server process (which I ...
1
vote
1answer
479 views

Dashed border rendering bug in IE8

I've come across yet another problem in IE8 - dashed borders scramble and break when scrolling the page. Below are 2 w3-valid pages demonstrating the behavior: as HTML4 transitional and XHTML1 ...
1
vote
1answer
267 views

Rails — Would like to create a controller with a dash or underscore in name

I wanted to create some basic html pages to add to my rails app. I figured the restful way to do it would be to create a controller. The problem is I'd like the pages to be a two word title. => ex. ...
1
vote
2answers
766 views

How to create a dashed line rounded rectangle in Flex?

How can I create a rounded rectangle with a dashed line? I've seen several routines that draw their own straight lines, but nothing for rounded rectangles.
1
vote
3answers
253 views

Is there any good reasons that I should not use - (dash) in field names in MySQL?

I have field name category_id in product table. And also I want name field of category id as category-id. Is there any good reasons that I should not use - in a field name? Where can I find which ...
0
votes
0answers
27 views

Redirect incoming url to .com/#index.php

I use a dash before the index.php for dynamic pages. This works fine and google find everything well but google points the browser to mydomain.com/index.php/article... Is there a way with .htaccess ...
0
votes
1answer
52 views

POSIX sh Redirection

I may be missing something small, but is it possible to achieve this syntax in a POSIX (dash) compliant way: $ ./myApp 2> stderr.txt 1> stdout.txt I know in dash you cannot use >& but ...
0
votes
3answers
512 views

Regex capitalize first letter every word, also after a special character like a dash

I use this #(\s|^)([a-z0-9-_]+)#i for capitalize every first letter every word, i want it also to capitalize the letter if it's after a special mark like a dash(-) Now it shows: This Is A Test ...
0
votes
2answers
94 views

using dashes between string literals in javascript

I just noticed that you can make an XSS attack by using dashes between string literals in javascript: ie: var foo = 'bar'-alert(1)-'baz'; //this will display the alert my question is, what's ...
0
votes
1answer
73 views

Plain text automated email encoding

Have made an automated plaintext email in php to be sent to the user upon registration. However, the sign off includes an en dash. I have tried &ndash ; &# 8211; and &# x2013; (without ...
0
votes
1answer
163 views

how to create a non-ascii file using redirection with `sh -c`?

The same command: echo 1 > filename creates different filenames: $ sh -c 'echo $LANG >=с=.sh' && ls *.sh | od -c 0000000 = 321 = . s h \n 0000007 and $ bash -c 'echo $LANG ...
0
votes
3answers
284 views

Validate form with javascript having dash in form id

i have a form which i want to be validated with javascript before submitting. What i am trying is adding a filed to upload file with an id having a dash in its value eg id="file-upload". This doesn't ...
0
votes
0answers
149 views

set filename tab-completion in dash case insensitive

I’m using dash shell filename tab-completion feature to complete file names.However default tab-completion in dash case-sensitive.How can I force filename tab-completion in dash case insensitive? In ...
0
votes
3answers
671 views

SEO difference between dash and hypen

I understand with dashes once can search for keywords in different order. What if my keyword has a space in it like real estate or New York Should I use underscores in this case? If I do a Google ...
0
votes
1answer
86 views

How to add additional tables in DashCommerce 2 using SubSonic 2.0.3

I've inherited an website that is base on DashCommerce 2 SubSonic 2.0.3 I wish to add some customfields to the project however cannot find .tt files. Also there is not option to "run tool" Did ...
-1
votes
2answers
237 views

Can't remove dashes (-) from string

The following function strips some words into an array, adjusts whitespaces and does something else I need. I also need to remove dashes, as I write them as words too. But this function doesn't remove ...