Vasil

3,984
Reputation
302 views

Registered User

Name Vasil
Member for 1 year
Seen Nov 15 at 7:26
Website
Location Skopje, Macedonia
Age 26
Nov
19
awarded  Popular Question
Nov
13
awarded  Notable Question
Oct
29
awarded  Popular Question
Oct
9
awarded  Notable Question
Sep
29
asked Is there any python library for parsing dates and times from a natural language?
Sep
29
revised Do we really need email confirmation?
added 447 characters in body
Sep
29
comment Do we really need email confirmation?
@Robert I don't think he meant "after each use" in an absolute sense. For example reddit.com doesn't use email confirmation so it can let users create throwaway accounts more easily (see the IAMA or GoneWild subreddits and you'll see why)
Sep
29
asked Do we really need email confirmation?
Sep
25
accepted Safely store credentials between website visits
Sep
16
awarded  Yearling
Aug
16
comment Can I send a HTTP redirect to a url with an anchor?
@Manni are you having a bad day?
Aug
16
comment Can I send a HTTP redirect to a url with an anchor?
@Manni yes I did try that, but had a error in my code, that's why it didn't work. Now it works. @Shiraz I'm using python.
Aug
16
awarded  Good Question
Aug
16
asked Can I send a HTTP redirect to a url with an anchor?
Aug
7
comment Is Ruby On Rails ready for the Enterprise?
It's not really that they cripple the so-so programmers. Some people just don't have the will or mindset to learn a new language or framework. Those are usually people who approached the profession with the idea that they only ever need to learn one language or technology and they'll make money from that skillset for their whole lifetime. And if that language/technology happens to be .net or java (most often is) they'll use the word enterprise freely especially in a situation where they are afraid to learn something new.
Aug
7
answered What ever happened to Textmate 2?
Aug
7
comment What ever happened to Textmate 2?
+1 for not checking the files on disk... got bitten by this while editing files over cifs/nfs too many times.
Aug
7
answered What is the best AJAX library for Django?
Aug
6
awarded  Notable Question
Jul
26
asked A question about java web apps and X-REAL-IP header.
Jul
20
comment Can I find the URL for a spring mvc controller in the view layer?
hmmm... I'm not really interested in getting the url from an incomming request. What I want to do is give a controller Class or reference and get back a url that will be served by that conroller. Which as it turns out is impossible "out of the box".
Jul
16
answered Ordering admin.ModelAdmin objects in Django Admin
Jul
12
awarded  Popular Question
Jul
11
asked JPQL and timestamp with timezone
Jul
9
asked Can I detect if my code is running on cPython or Jython?
Jul
4
comment Can I find the URL for a spring mvc controller in the view layer?
I'll try making my own HandlerInterceptor that aggregates the controller->url mappings and ads them to every ModelAndView for every request. But still, this doesn't get even close to what is possible with django's url resolution and reverse resolution.
Jul
4
revised Can I find the URL for a spring mvc controller in the view layer?
edited body
Jul
4
asked Can I find the URL for a spring mvc controller in the view layer?
Jul
3
asked Spring JPA Exception Translation
Jul
2
comment Can I have multiple security contexts with spring security?
I suppose this is what I need to do. However I don't know what is the easiest way to define a filter with just a custom authentication provider.
Jul
2
comment JPA and PostgreSQL Network Address Types
The thing is I haven't tried anything, just asked the question. This was the first thing that came to my mind too.
Jul
2
comment Can I have multiple security contexts with spring security?
I've posted my security context configuration. I'd appreciate if you can help me with this.
Jul
2
revised Can I have multiple security contexts with spring security?
added 2061 characters in body; added 82 characters in body
Jul
1
asked Can I have multiple security contexts with spring security?
Jul
1
asked JPA and PostgreSQL Network Address Types
Jun
30
comment How do I localize Validator messages in flex?
Follow these instructions: soenkerohde.com/2008/07/flex-localization to set up your project. After that just copy the validators.properties file from INSTALL_DIR/Flex Builder 3/sdks/3.1.0/frameworks/projects/framework/bundles/en_US/src in your project in the same folder where you'll keep the properties file for your locale (in the example from the link it's de_DE). You'll just have to translate the english messages from that file.
Jun
25
answered Firefox 3: Enable AJAX to localhost from outside domain
Jun
25
comment Should validators in spring access the database?
I've heard or read this before, that's exactly why I'm asking the question. But I'm not really sure what I'm supposed to do if I don't make them able to read from a database (without side effects). I'm kinda confused in this topic because it seems like a lot of people in the Java world share your opinion, while in Django and RoR it's perfectly normal to tie validation to the database.
Jun
25
asked Should validators in spring access the database?
Jun
25
revised Architecture for social multiplayer browser game (backend choice + frontend choice [flash/silverlight])
added 192 characters in body
Jun
24
asked How do I record streams in chunks on Flash Media Server.
Jun
22
asked Blazeds and Spring security, can remember-me be used in this combination?
Jun
21
revised How do I localize Validator messages in flex?
added 274 characters in body
Jun
21
asked What java validation library should I use?
Jun
21
answered How do I localize Validator messages in flex?
Jun
21
asked How do I localize Validator messages in flex?
Jun
19
asked How do I enable RDS support for BlazeDS?
Jun
17
awarded  Notable Question
Jun
16
asked How should I use Enums in Openjpa entities?
Jun
15
comment What naming convention do you use for the service layer in a Spring MVC application?
That's why I figured Manager would cause less confusion since the frontend for the application is in Flex and there will be AMF services sitting on top of the service layer. Good point.