Tagged Questions
The alias tag has no wiki summary.
34
votes
5answers
8k views
JavaScript function aliasing doesn't seem to work
I was just reading this question and wanted to try the alias method rather than the function-wrapper method, but I couldn't seem to get it to work in either Firefox 3 or 3.5beta4, or Google Chrome, ...
17
votes
2answers
484 views
In C#, why is “int” an alias for System.Int32?
Since C# supports Int8, Int16, Int32 and Int64, why did the designers of the language choose to define int as an alias for Int32 instead of allowing it to vary depending on what the native ...
17
votes
2answers
2k views
Ruby: Should I use alias or alias_method?
I found this blog post on alias vs alias_method. As shown in the example given in that blog post, I simply want to alias a method to another within the same class. Which should I use? I always see ...
17
votes
17answers
5k views
SQL Table Aliases - Good or Bad?
What are the pros and cons of using table aliases in SQL? I personally try to avoid them, as I think they make the code less readable (especially when reading through large where/and statements), but ...
14
votes
3answers
12k views
Open files in existing Gvim in multiple (new) tabs
I have put some aliases in my .bashrc to open a group of project files in gvim, each in their own tab:
gvim -p <list of file names using absolute paths>
This is all well and good, except ...
12
votes
3answers
2k views
Aliasing a command in vim
Vim is my preferred text editor when I program, and thus I always run into a particularly annoying issue.
Frequently, when I quickly need to save the buffer and continue on to some other ...
11
votes
1answer
308 views
Bash git alias tab completion error
I know Git aliases can be used with arguments Git Faq section "Git Aliases with argument".
But today I encountered an error.
Take an easy example which is not suitable for real use. If I make an ...
11
votes
4answers
2k views
How to embed bash script directly inside a git alias
Can I embed the following bash shell code:
for name in $(git diff --name-only $1); do git difftool $1 $name & done
directly into the creation of a git alias:
git config --global alias.diffall ...
10
votes
2answers
772 views
git alias with positional parameters (git foo aaa bbb ccc => foo aaa && bar bbb && baz ccc)
Basically I'm trying to alias:
git files 9fa3
...to execute the command:
git diff --name-status 9fa3^ 9fa3
but git doesn't appear to pass positional parameters to the alias command. I have ...
10
votes
5answers
487 views
How do I assign an alias to a function name in C++?
It's easy to create a new name for a type, a variable or a namespace. But how do I assign a new name to a function? For example, I want to use the name holler for printf. #define is obvious... any ...
10
votes
3answers
5k views
Using an Alias in a WHERE clause
I have a query which is meant to show me any rows in table A which have not been updated recently enough. (Each row should be updated within 2 months after "month_no".):
SELECT A.identifier
, ...
9
votes
2answers
91 views
Techniques for aliasing in C#?
Assume i want to create an alias of a type in C# using a hypothetical syntax:
Currency = float;
Then i go away and create a few thousand files that use Currency type.
Then i realize that i prefer ...
9
votes
4answers
238 views
C++ namespace alias in entire class scope
I expected to be able to use a namespace alias in a class declaration but get a compiler syntax error.
struct MyClass
{
namespace abc = a_big_namespace;
void fn() {
abc::test();
}
...
9
votes
2answers
296 views
Why do g++ and MS Visual Studio C++ execute the following code differently?
I am having trouble understanding which complier is at fault here (if any). The following code is exectued differently of g++ compared with MS Visual Studio C++.
#include <iostream>
int main() ...
9
votes
3answers
2k views
Why doesn't javascript function aliasing work?
I have some Firebug console function calls that I wanted to disable when Firebug wasn't enabled, e.g. console isn't defined. This works fine in IE6 and FF3, but not in Chrome:
var log;
if(console){
...
9
votes
5answers
264 views
Is it possible to declare an alias with .net type?
Is it possible to declare an alias with .net type ? in c# and if so how ?
8
votes
1answer
120 views
Can I store a Mac OS X Alias in Team Foundation Server without breaking it?
I'm currently developing an iPhone App and my company uses TFS 2010 for source control.
We're using Team Explorer Everywhere as an Eclipse plugin to handle source control on the Mac and for other ...
8
votes
2answers
256 views
Renaming namespaces
I've been doing C++ for a long time now but I just faced a question this morning to which I couldn't give an answer: "Is it possible to create aliases for namespaces in C++ ?"
Let me give an example. ...
8
votes
6answers
399 views
Is there a way to define C# strongly-typed aliases of existing primitive types like `string` or `int`?
Perhaps I am demonstrating my ignorance of some oft-used feautre of C# or the .NET framework, but I would like to know if there is a natively-supported way to create a type alias like EmailAddress ...
8
votes
2answers
4k views
Is alias_method_chain synonymous with alias_method?
If these two methods are simply synonyms, why do people go to the trouble of writing the additional characters "_chain"?
8
votes
2answers
1k views
BASH blank alias to 'cd'
I am a happy BASH user. I do not want to switch to another shell (in this case ZSH).
ZSH has this ability to change a directory without necessarily typing:
cd /to/a/directory
What would the ...
8
votes
3answers
2k views
Can you define aliases for imported modules in Python?
In Python, is it possible to define an alias for an imported module?
For instance:
import a_ridiculously_long_module_name
...so that is has an alias of 'short_name'.
8
votes
2answers
7k views
SQL Server: Table Variables with an Alias in a Delete From Statement
I want to delete rows from a SQL Server 2000/2005 table variable based on the presence of other rows in the same table (delete all 0 count rows if a non-0 count row exists with the same date). Here ...
8
votes
3answers
7k views
How to create Sql Synonym or “Alias” for Database Name?
I'm using ms sql 2008 and trying to create a database name that references another database. For example 'Dev', 'Test', 'Demo' would be database names that i could reference from my multiple config ...
7
votes
3answers
102 views
In Perl, is there any difference between direct glob aliasing and aliasing via the stash?
In Perl, is there ever any difference between the following two constructs:
*main::foo = *main::bar
and
$main::{foo} = $main::{bar}
They appear to have the same function (aliasing all of the ...
7
votes
1answer
237 views
Quit and restart a clean R session from within R?
Is there a way I can make an alias within R that will execute q() and the restart a clean R session?
And yes, I am too lazy to type q() and then the letter R :)
7
votes
7answers
1k views
In Bash, how to add “Are you sure [Y/n]” to any command or alias?
In this particular case, I'd like to add a confirm in Bash for
Are you sure? [Y/n]
for Mercurial's hg push ssh://username@www.example.com//somepath/morepath, which is actually an alias. Is there a ...
7
votes
1answer
776 views
Google App Engine on Google Apps Domain
I'm having trouble getting my domain pointed to my website hosted with google app engine. Here's the background... take care to separate the concepts of "google apps" (domain hosting, email, etc.) and ...
7
votes
4answers
2k views
Why aliases in a non-interactive Bash shell do not work
I am trying to use aliases in a non-interactive bash shell. I have defined my aliases in ~/.bashrc and I have set the variable BASH_ENV=~/startUpFile . The contents of the startUpFile are
source ...
7
votes
2answers
313 views
difference between (defalias 'A (symbol-function 'B)) and (defalias 'A 'B)
I was reading subr.el and saw this code:
(defalias 'backward-delete-char 'delete-backward-char)
(defalias 'search-forward-regexp (symbol-function 're-search-forward))
Interestingly, the first line ...
6
votes
1answer
163 views
Type inference/type checking failure while using type-level computations
I have hit a problem while working with the Units of Measurements functionality in metascala, defined in the file Units.scala.
For the remainder of this question, I will use a simplified scheme, with ...
6
votes
2answers
192 views
C# Typedef that preserves attributes
The problem: I have Dictionary<String, String> that I need an alias to, but I also need to serialize/deserialize it.
Solutions I've tried:
class Foo : Dictionary<String, String> { }
...
6
votes
4answers
267 views
How to alias a built-in type in C#?
So in C++, I'm used to being able to do:
typedef int PeerId;
This allows me to make a type more self-documenting, but additionally also allows me to make PeerId represent a different type at any ...
6
votes
5answers
222 views
Do variable references (alias) incure runtime costs in c++?
Maybe this is a compiler specific thing. If so, how about for gcc (g++)? If you use a variable reference/alias like this:
int x = 5;
int& y = x;
y += 10;
Does it actually require more cycles ...
6
votes
5answers
730 views
Type/Namespace alias conventions in C#
Are there are any established naming or coding conventions for defining namespace or type aliases in C#?
For those who are unaware, the C# language has a feature where aliases can be defined local to ...
6
votes
5answers
1k views
C# Default scope resolution
I have inherited a c# class 'Button' (which I can't change) which clashes with the BCL class 'Windows.Forms.Button'. Normally, Id be very happy to go:
MyPackage.MyClass.Button;
But there are a ...
5
votes
4answers
114 views
Can you override an aliased method in Ruby?
In Ruby, when a method is aliased, the alias points to the body of the original method. So even if you redefine the original method, the alias will continue to use the original definition.
class ...
5
votes
1answer
155 views
How do I concatenate arrays of aliases in Perl?
How do you concatenate arrays of aliases in Perl such that the resulting array also contains aliases?
The solution that I came up with is:
my ($x, $y, $z) = 1 .. 3;
my $a1 = sub {\@_}->($x);
my ...
5
votes
2answers
325 views
Re-use aliased field in SQL SELECT STATEMENT
the question is hard to define without giving an example, e.g. I'd like to achieve something like this
:
SELECT
(CASE WHEN ...) AS FieldA,
20 + FieldA AS FieldB
FROM Tbl
Assuming that by "..." ...
5
votes
4answers
429 views
“using” directive in Java
When the type name is too long, in C# i can create alias like this:
using Dict = System.Collections.Generic.Dictionary<string, string>;
And I can use it like this:
Dict d = new Dict();
...
5
votes
9answers
5k views
Can we alias a function in php?
is it possible to alias a function with a different name in PHP? if yes how ?
suppose we have this function sleep();
is there any quick way to make an alias called wait();
without writing this ...
5
votes
1answer
609 views
Using Alias in Apache ONLY if local directory not present?
We're running a reseller web host, and aliasing a particular directory for ALL the sites within. This is all happening through WHM/Cpanel, which could possibly complicate my question.
We want all ...
5
votes
2answers
4k views
How to use apache mod_rewrite and alias at the same time?
I have a directory outside the webroot that is used for storing images uploaded from a separate admin system. Images are stored in this format:
...
5
votes
9answers
2k views
What type of scope does Haskell use?
I'm trying to figure out if Haskell uses dynamic or static scoping.
I realize that, for example, if you define:
let x = 10
then define the function
let square x = x*x
You have 2 different "x's", ...
4
votes
2answers
85 views
What is the shortest notation to define an operator as a method alias in Scala?
Given the generic register method below I would like to define the := operator as a symbolic alias.
def register[Prop <: Property[_]](prop: Prop): Prop
@inline
final def :=[Prop <: ...
4
votes
4answers
75 views
Using an alias in find -exec
I have a very long command in bash, which I do not want to type all the time, so I put an alias in my .profile
alias foo='...'
Now I want to execute this alias using find -exec
find . -exec ...
4
votes
2answers
343 views
How to list/show Git aliases?
In Terminal, how do I print a list of Git aliases, i.e., something analogous to the alias command?
4
votes
2answers
438 views
Are Symbolic Links and Alias(es) the Same Thing? Mac OS X
I have been trying to set up some symbolic links in the Terminal, and haven't been able to get them to work. In trying to find what I was doing wrong, I compared their function to the "create alias" ...
4
votes
3answers
104 views
Different ways to alias a column
What is the difference between
select empName as EmployeeName from employees
versus
select EmployeeName = empName from employees
from a technical point of view. Not sure if this is just SQL ...
4
votes
2answers
244 views
PL/SQL Alias for DBMS_OUTPUT.PUT_LINE()?
Simple question, is it possible to give an alias to the output function in the question title so that I can call something like trace('hello') rather than DBMS_OUTPUT.PUT_LINE('hello')?
I would like ...