Tagged Questions
The distinguishing feature of an anonymous class or function is that it has no name.
18
votes
4answers
420 views
Why is the type of this function (a -> a) -> a?
Why is the type of this function (a -> a) -> a?
Prelude> let y f = f (y f)
Prelude> :t y
y :: (t -> t) -> t
Shouldn't it be an infinite/recursive type?
I was going to try and put into ...
12
votes
8answers
1k views
Where to put constant strings in C++: static class members or anonymous namespaces
I need to define some constant strings that will be used only by one class. It looks like I have three options:
Embed the strings directly into locations where they are used.
Define them as private ...
12
votes
8answers
12k views
How to use anonymous structs / unions in c?
I can do this in c++/g++:
struct vec3 {
union {
struct {
float x, y, z;
};
float xyz[3];
};
};
Then,
vec3 v;
assert(&v.xyz[0] == &v.x);
...
9
votes
3answers
779 views
initialization of anonymous structures or unions in C1X
I have the following question: How are anonymous structures (or unions) properly initialized according to the current C1X draft? Is this legal:
struct foo {
int a;
struct {
int i;
...
9
votes
2answers
3k views
iPhone Obj-C: Anonymous Category or “private” Category?
Style-wise (and functionally, if there is any difference), for declaring private methods, which of these is better?
@interface MyClass()
@interface MyClass(private)
7
votes
7answers
306 views
lambda returns lambda in python
Very rarely I'll come across some code in python that uses an anonymous function which returns an anonymous function...?
Unfortunately I can't find an example on hand, but it usually takes the form ...
7
votes
5answers
307 views
Overriding a portion of a google.com anonymous function
If a javascript function is declared anonymously is there any way to override it or portions of it?
I am attempting to stop google.com's instant search from hijacking the up and down arrow keys to ...
7
votes
5answers
46k views
WCFTestClient The HTTP request is unauthorized with client authentication scheme 'Anonymous'
I've created one WCF service and deployed it on Server. When I browse this service it gives me positive response with ?wsdl URL. Now I'm trying to test the service through WCF Test client. It shows ...
7
votes
2answers
3k views
Best way to send anonymous email like craigslist
Craigslist has a nice feature where when you respond to a poster you respond to an email such as job-fepsd-1120347193@craigslist.org. The email is then in turn directed to the real email.
I am ...
7
votes
17answers
24k views
Office documents prompt for login in anonymous SharePoint site
I have a MOSS 07 site that is configured for anonymous access. There is a document library within this site that also has anonymous access enabled. When an anonymous user clicks on a PDF file in this ...
6
votes
2answers
176 views
Why not to allow in-place interface implementation in .NET?
Either I am missing something or .NET doesn't support what Jave does. I'd like to be able to avoid creating a small class just for the sake of implementing a small interface. For example, LINQ's ...
6
votes
4answers
367 views
Anonymous Namespace Ambiguity
Consider the following snippet:
void Foo() // 1
{
}
namespace
{
void Foo() // 2
{
}
}
int main()
{
Foo(); // Ambiguous.
::Foo(); // Calls the Foo in the global namespace (Foo #1).
// ...
6
votes
3answers
244 views
C# delegate compiler optimisation
I have started to use anonymous delegates a lot in C# and I have begun to wonder how efficient the complier or runtime is in removing them from the code that is actually run and I haven't seen this ...
5
votes
2answers
316 views
Create an anonymous type from reflection ParamInfo[]
i want to create an anonymous type inside a function, when the anonymous type properties are the function parameters.
for example, for the function:
private bool CreatePerson(string FirstName, string ...
5
votes
2answers
547 views
Best way to Migrate Anonymous Profile
Is there an alternate way that migrates all parameters implicit? Or any other advantages.
From MSDN:
public void Profile_OnMigrateAnonymous(object sender, ProfileMigrateEventArgs args)
{
...
5
votes
4answers
880 views
Anonymous Namespace Class Definition
I was looking over some (C++) code and found something like this:
//Foo.cpp
namespace
{
void SomeHelperFunctionA() {}
void SomeHelperFunctionB() {}
void SomeHelperFunctionC() {}
...
5
votes
7answers
2k views
Why would I use Perl anonymous subroutines instead of a named one?
I'm just curious why one would choose to use an anonymous subroutine, versus a named one, in Perl. Thanks.
4
votes
3answers
73 views
Access an Anonymous or Local Inner Class Within an Anonymous or Local Inner Class
Okay, so I know how to access the outer class that encloses an inner class, whether its anonymous or inner.
But my question is, how to access the outer class if it itself is an inner class? Some code ...
4
votes
1answer
112 views
Problems with single anonymous access aspx in Sharepoint 2010
I got a SharePoint Project which already works with anonymous Access. Now I added an aspx-page which is used for streaming images. That aspx-page is added into a virtual directory
Layouts\
Whenever I ...
4
votes
2answers
103 views
Why can't I use <Class>.this in anonymous class?
I recently use this code, and realize that in anonymous class, I can't access the instance by .this, like this:
Sprite sprFace = new Sprite() {
@Override
protected void onManagedUpdate(float ...
4
votes
1answer
297 views
Anonymous Namespace
A recent thread on SO triggerred this.
An anonymous namespace is considered to be equivalent to
namespace unique { /* empty body */ }
using namespace unique;
namespace unique { ...
4
votes
5answers
945 views
Is there a way to concact C# anonymous types?
For example
var hello = new { Hello = "Hello" };
var world = new { World = "World" };
var helloWorld = hello + world;
Console.WriteLine(helloWorld.ToString());
//outputs {Hello = Hello, World = ...
4
votes
2answers
469 views
Reference to Public Enum results in Anonymous Class
I'm getting an anonymous class at compile-time that I'm not expecting. Relevant code follows, then a more detailed explanation:
Entirety of CircuitType.java:
public enum CircuitType { V110A20, ...
4
votes
4answers
1k views
Does the anonymous namespace enclose all namespaces?
In C++ you specify internal linkage by wrapping your class and function definitions inside an anonymous namespace. You can also explicitly instantiate templates, but to be standards conforming any ...
4
votes
4answers
2k views
java anonymous classes and synchronization and “this”
I am dealing with a race condition, I believe, in my JAVA GUI.
I have some methods that create an "anonymous method" inside an anonymous class like this:
synchronized foo()
{
someMethod(new ...
4
votes
3answers
1k views
IIS Anonymous user authentication doesn't work with AD credentials
I have an asp.net application directory, and I want to use anonymous authentication in the Directory Sercurity tab.
If I use the pre-Windows 2000 style DOMAIN\USERNAME for the username, everything is ...
3
votes
1answer
52 views
How to get firebug profiler to show functions as non-anonymous
On a Mac, Firebug outputs proper function names in profiler mode. On a PC, allmost all functions are logged as 'anonymous'. In this instance, almost all the function calls are prototype methods. Is ...
3
votes
3answers
36 views
How to make this javascript work?
I'm trying to make a recursive anonymous function.
Here is the function :
(function(i){console.log(i);if(i<5)this(i+1)})(0)
I know "this" is the window object. Is there a way to call the ...
3
votes
1answer
127 views
{DCC Warning} W1036 Variable '$frame' might not have been initialized?
Any ideas why I get this warning in Delphi XE:
[DCC Warning] Form1.pas(250): W1036 Variable '$frame' might not have been initialized
procedure TForm1.Action1Execute(Sender: TObject);
var
Thread: ...
3
votes
1answer
100 views
Undefined function error for javascript function
Here is my code, I don't understand what's wrong.
<script type="text/jquery">
function gettotalAdult()
{
//Assume form with id="fsd-bucket-calc"
var theForm = ...
3
votes
2answers
117 views
What are the definitions of named method and named function?
I have read the question Difference between method and function in Scala and many articles about differences between method and function. I got a feeling that a 'method' is just a "named function" ...
3
votes
2answers
76 views
What is the best way to track an anonymous user with the restful_authentication plugin in Rails?
I have seen general posts on how to track anonymous users in a voting app such as with a cookie. But specifically how do I modify restful_authentication to track anonymous users with IP + user-agent ...
3
votes
2answers
158 views
Syntax of anonymous type without explicit keys (`new { identifier }`)?
In this question I saw an anonymous type expression with an unfamiliar syntax:
new { MyObjectID = g.Key, totalSum }
At first I thought it (, totalSum }) was a syntax error as no key is specified, ...
3
votes
2answers
116 views
Programming strategies for allowing anonymous / unauthenticated voting on web sites
I'd like some pseudo-code or white board suggestions for permitting unauthenticated voting on my site. I've looked through related threads on this topic, but I think my scenario is different enough ...
3
votes
1answer
431 views
How to make HTTP request authenticated with anonymous NTLM using HttpWebRequest
My team recently discovered a bug in some of our service code, such that an HTTP request authenticated with the anonymous NTLM SID (not the same as HTTP Anonymous authentication; this is a successful ...
3
votes
2answers
278 views
Anonymous macros in Clojure
In Common LISP you can do the following
(macro lambda (x) (list (quote car) (list (quote cdr) x)))
It looks like this is not possible (an anonymous macro) in Clojure.
Is this true?
Why was this ...
3
votes
5answers
237 views
Any way to insert an anonymous array into a collection?
I've found plenty of entries here that say
someFunc(new int[]{1,2,3});
works for calling methods and being used in a for/each loop.
//======
How about for assignment into a collection?
I've ...
3
votes
4answers
304 views
how to call method without knowing the class name?
I have defined two classes below.
public class junk {
private BigInteger a = BigIngeger.valueOf(1), b=BigInteger.valueOf(2), c;
public void DoSomething(){
c = a.add(b);
}
// ...
3
votes
5answers
366 views
Identifying anonymous users
If I had a poll on my site, and I didn't want to require a registration to vote, but I only wanted each visit one, how might I do this?
Let's say a visitor from IP 123.34.243.57 visits the site and ...
3
votes
2answers
1k views
C# delegate definition - anonymous methods vs. formally defined methods
When should anonymous methods be used when defining a delegate and when should formally defined methods be used when defining a delegate ?
3
votes
2answers
2k views
How to check if IP is a public proxy
Recently we have had a lot of issues with a particular user who has been posting a piles of provocative messages on our website using the public proxy IPs.
Can someone recommend a way to determine - ...
3
votes
7answers
472 views
Global const string& smells bad to me, is it truly safe?
I'm reviewing a collegue's code, and I see he has several constants defined in the global scope as:
const string& SomeConstant = "This is some constant text";
Personally, this smells bad to me ...
2
votes
3answers
51 views
To get Win Login info when Anon is turned on CFusion
Basically, I'm trying to make a page which will display Login (eg #CGI.AUTH_USER#) if user is accessing the page Authenticated. However, if the user is non-Auth, I still want user to be able to access ...
2
votes
3answers
52 views
why does it give an error?
Runnable r = new Runnable() {
@Override
public void run() {
if(varx) {
new displayFullScreen().setVisible(true);
} else {
...
2
votes
3answers
55 views
Jquery : Call of anonymous function doesn't work in submit()
I'm having trouble with the submit() function.
I need to submit a form after checking a checkbox, so I have a form in which I have a checkbox.
So when I do this, it's working :
$(function() {
...
2
votes
2answers
93 views
Using methods on anonymous classes
I'm trying to figure out if what I want to do is even possible. I've looked around and google hasn't been super helpful, at least in this specific case.
Here's what I'm trying to do. The assignment ...
2
votes
4answers
113 views
Anonymous class, Inheritance, and overriding
public class A {
public A() {
foo();
}
private void foo() {
System.out.print("A::foo ");
goo();
}
public void goo() {
System.out.print("A::goo ");
...
2
votes
2answers
89 views
Asp.net WebForms Error with Anonymous Types
Please help me! I am experiencing an odd problem with anonymous types in Asp.net/WebForms using Visual Studio 2008.
In the page markup, this generates a "Type Expected" error (just an example):
...
2
votes
3answers
112 views
Create and use anonymous object in PHP
Say I have a simple class and I create it and call a function on it like this:
class tst
{
private $s = "";
public function __construct( $s )
{
$this->s = $s;
}
public function ...
2
votes
1answer
311 views
Restrict access to functionality for user by IP address
I have a website that allows a functionality for any user but each user is only allowed to use it a fixed amount of times.
Allow me to go into some more detail, our "anonymous/guest" user is allowed ...