Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
3answers
594 views

What does the tilde (~) in macros mean?

Seen on this site, the code shows macro invocations using a tilde in parentheses: HAS_COMMA(_TRIGGER_PARENTHESIS_ __VA_ARGS__ (~)) // ^^^ What does it mean ...
8
votes
5answers
176 views

How does the ~[] construction work in JavaScript?

I've come across a working JavaScript code that I can't explain. For example: +[]===0 -[]===0 ~[]===-1 ~-~[]===-2 ~-~-~-~-~[]===-5 ~-~-~-~-~[]+~[]===-6 ~+~[]===0 ~+~+~[]===-1 ~+~+~+~[]===0 Can you ...
5
votes
3answers
857 views

What does this tilde mean?

I was reading through some JMockit examples and found this code: final List<OrderItem> actualItems = new ArrayList<~>(); What does the tilde in the generic identifier mean? I know it's ...
5
votes
3answers
1k views

How to manually expand a special variable (ex: ~ tilde) in bash

I have a variable in my bash script whose value is something like this: ~/a/b/c Note that it is unexpanded tilde. When I do ls -lt on this variable (call it $VAR), I get no such directory. I want ...
5
votes
6answers
838 views

What does the tilde (~) character do here

class ResourceWrapper { int handle = 0; public ResourceWrapper() { handle = GetWindowsResource(); } ~ResourceWrapper() //this line here { ...
5
votes
6answers
11k views

What is the best way to produce a tilde in LaTeX for a website?

Following the previous questions on this topic, when you produce a website in LaTeX what is the best way to produce a url that contains a tilde? \verb produces the upper tilde that does not read well, ...
3
votes
2answers
291 views

home directory expansion (~) within an argument

When I enter the following (BASH): rdesktop -r disk:bacon=~/bacon host It does not expand to rdesktop -r disk:bacon=/home/me/bacon host It seems the "disk:" part is the problem as can be seen ...
2
votes
1answer
141 views

what does tilde mean?

a ~= b*c; It can't be boolean logic, so what's that?
2
votes
2answers
138 views

Tilde showing in URL instead of mapping to root

We have a old .net site that runs on the 2.0 framework. In this site there are multiple calls that redirect when needed by calling response.redirect(). For some reason that I cannot figure out the ` ...
2
votes
1answer
533 views

ASP.net relative path

<head runat="server"> <meta charset="UTF-8" /> <title>Make Games with Scirra Software</title> <meta name="description" content="Game making with Construct." ...
2
votes
3answers
680 views

Qt: Expand ~ to home-directory

Does Qt have any platform-independent functionality to accept paths like "~/myfile"? I know about wordexp, but it would be nice with a platform-independent wrapper. Edit: Thank you all for the ...
1
vote
2answers
257 views

Unable to write accents (Spanish) properly in java based programs

I tried asking this in more general forums since it's not directly related to programming but I was unable to find an answer, so here I am. When I try to type accented characters (like áéíóú) using ...
1
vote
5answers
397 views

what is the use of “~” tilde in url?

what is the use of ~ tilde in url. I am using cpanel, and have link including tilde, why tilde is their? When we buy server space but not have dns or don't wanted to use for development purpose @ ...
1
vote
4answers
97 views

What is ~ in C#?

I have download a CRC code snippet from the internet in C# having these lines: byte[] hashBuffer = UInt32ToBigEndianBytes(~hash); or public static UInt32 Compute(byte[] buffer) { return ...
1
vote
1answer
363 views

Root path with tilde “~” does not change upper case to lower case

I have my project set up with the virtual path "/MyVirtualPath", create the virtual directory in IIS 6 (W2003) and everything works fine. Then to work better with Google Analytics I change the ...
1
vote
4answers
312 views

Matching “~” at the end of a filename with a python regular expression

I'm working in a script (Python) to find some files. I compare names of files against a regular expression pattern. Now, I have to find files ending with a "~" (tilde), so I built this regex: if ...
1
vote
1answer
460 views

Tilde-based Paths in Objective-C

In Objective-C, how do I go about converting tilde-based pathnames to full pathnames? That is, I'd like to convert from ~/sandbox to /Users/TheBobs/sandbox.
1
vote
2answers
516 views

Why is psql inserting a tilde when I press any of the keys in the Home key cluster?

I'm using psql 8.2.3 on FreeBSD. Every time I press Insert, Home, Delete, End, Page Up or Page Down, a tilde (~) character is inserted instead of performing the expected function of the key. Why ...
0
votes
1answer
91 views

RewriteRule for tilde

I am trying to do the following rewrite of tilde URLs: RewriteRule ^/?~folder/(.*) http://whatever.com/$1 [R=302,L] I want any links with whatever.com/~folder/something to become ...
0
votes
1answer
154 views

Replacing tilde with $HOME in simple shell

I am writing a simple Unix shell in C. Here's what I have so far. #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> int main() { char x[256], ...
0
votes
1answer
192 views

How to execute an ObjectQuery<T>

Linq to Entities uses the ObjectQuery which implements IQueryable. I normally use the IQueryable methods to filter through my data but today I needed to create a special LIKE statement. The framework ...
0
votes
1answer
143 views

sub tilde in latex

in latex with \tilde{x} put ~ over x. how I can put ~ down x ?
0
votes
2answers
540 views

How do I use '~' (tilde) in the context of paths?

I'm a web application development noob. I have a function that opens a file and reads it. Unfortunately, the directory structures between the test and production servers differ. I was told to "use a ...
0
votes
1answer
503 views

Maintaining ISAPI Rewrite Path with the ASP.NET tilde (~)

My team is upgrading from ASP.NET 3.5 to ASP.NET 4.0. We are currently using Helicon ISAPI Rewrite to map http://localhost/<account-name>/default.aspx to ...
0
votes
2answers
610 views

bash script problem, find , mv tilde files created by gedit

im using linux with gedit which has the wonderful habit of creating a temp file with a tilde at the end for every file I edit. im trying to move all of these files at once to a different folder using ...
0
votes
3answers
348 views

Typing the tilde ~ character in DOS

In my DOS prompt I have to put in a tilde (~) character to open any files. For some reason it won't show up in the DOS box/prompt. Is there any form of Ctrl shortcut key thing that could get me ...
0
votes
2answers
932 views

Tilde not resolving in HyperLinkColumn in ASP.NET 2.0

I have an ASP.NET application originally deployed to a .Net 1.1 Framework on Windows 2000 server which i'm now using on a Windows 2008 Server using 2.0.50727. We use the tilde (~) to resolve to an ...
-2
votes
2answers
41 views

Tilde not recognized in Mac terminal

I have this weird situation on my Mac running OSX Lion where the ~ (tilda) does not go to my user directory. Instead when I type "cd ˜", I get: -bash: cd: ˜: No such file or directory Any advice on ...