Brabster

3,796
reputation
262 views

Registered User

name Brabster
member for 1 year
seen 16 hours ago
website
location UK
age 32
I'm brabster on twitter.

My Qualifications:
  • SCJP 5 (April 08)
  • SCWCD 5 (July 09)
I'm also studying for an MSc at Manchester University. So far, I've studied XML and Semi Structured data. Looking forward to hopefully studying ontologies, artificial intelligence and high performance computing. I'm blogging about the experience and other bits and pieces on my blog.

I've been following the progress of stackoverflow with interest from the beginning, proud to have been involved with the beta test.
Dec
14
comment strategy to filter data according to user access level
Wow - interesting constraints you got there! Good luck...!
Dec
14
answered strategy to filter data according to user access level
Dec
13
accepted Understanding join()
Dec
13
answered Understanding join()
Dec
12
answered SQL - Select first 10 rows only?
Dec
9
comment How bad are usernames and passwords stored in hidden form fields?
+1 for your golden rule
Dec
9
revised How bad are usernames and passwords stored in hidden form fields?
typo + addition
Dec
9
comment How bad are usernames and passwords stored in hidden form fields?
Don't fret mate, it's just a hypothetical question :)
Dec
9
revised How bad are usernames and passwords stored in hidden form fields?
clarified context
Dec
9
comment How bad are usernames and passwords stored in hidden form fields?
@kigurai - I don't - it's a hypothetical question. @Si - again, hypothetical - what security measures on the transport layer would mitigate what risks?
Dec
9
asked How bad are usernames and passwords stored in hidden form fields?
Dec
8
asked How to ensure SSL-only access without authorising in Java webapp?
Dec
3
comment Setup SSL for form login only on Tomcat webapp
Perfect answer. Why didn't I think of that?! Cheers
Dec
3
asked Setup SSL for form login only on Tomcat webapp
Nov
26
comment How do I get the current time in a different TimeZone in Java?
Perfect - the JSTL formatting tags do include a formatDate which takes a timezone attribute. I just wasn't thinking of timezone as a formatting thing... but hey, it works. Thanks!
Nov
26
asked How do I get the current time in a different TimeZone in Java?
Nov
23
revised could not find the main class
added 345 characters in body
Nov
23
answered could not find the main class
Nov
23
comment How to grant access to authenticated users in Tomcat 5.5.x?
I'd like to know whether I must do that, or whether I can express 'grant to all authenticated users' as a constraint...
Nov
23
asked How to grant access to authenticated users in Tomcat 5.5.x?
Nov
19
awarded  Enlightened
Nov
19
awarded  Nice Answer
Nov
3
asked CSS z-index overridden by element order on page?
Oct
26
asked Which ISO8601 date/time incl. timezone format to use for maximum success across languages?
Oct
22
asked Obtain nameserver information for DNS lookups in Java
Oct
14
asked Javascript-disabled components not disabled after back button
Oct
11
asked Libraries/Solutions for using XSL to create interactive web forms from XML
Oct
11
awarded  
Oct
10
answered How can I learn higher-level programming-related math without much formal training?
Oct
9
awarded  Self-Learner
Oct
4
revised matlab and triangle
added 563 characters in body
Oct
4
answered matlab and triangle
Oct
3
accepted how to distribute java desktop application ?
Oct
2
answered How does AJAX work?
Oct
2
accepted XSLT - Converting time to minutes
Oct
2
answered XSLT - Converting time to minutes
Oct
2
answered Xpath, retrieving node value
Oct
1
answered When will controls with name and value not be submitted?
Oct
1
answered how to distribute java desktop application ?
Oct
1
awarded  Popular Question
Sep
29
accepted Exclusive url-patterns in Tomcat web.xml descriptor
Sep
29
revised How can I prevent the backspace key from navigating back?
added 65 characters in body
Sep
29
answered How can I prevent the backspace key from navigating back?
Sep
29
revised Exclusive url-patterns in Tomcat web.xml descriptor
more detail
Sep
29
answered Exclusive url-patterns in Tomcat web.xml descriptor
Sep
29
comment Regex line by line: How to match triple quotes but not double quotes
btw if you're using a language that can do lookahead, this should match 'at least one set of 3 d-quotes, not followed by a d-quote' ["]{3}(?=[^"])
Sep
29
comment Regex line by line: How to match triple quotes but not double quotes
I don't seem to be able to express this in regex-speak, but not sure why. It feels like I should be able to get a regex to match 'three d-quotes, next char not a d-quote (can do that bit) and NOT same pattern again'. Curious and will keep looking, but if you need this I'd say start looking at doing it algorithmically maybe match and remove the first batch of 3 d-quotes, then check for another three.
Sep
29
comment Regex line by line: How to match triple quotes but not double quotes
Yep, thinking. This is closer... [^"][\"]{3}[^"] (not a d-quote, then 3 d-quotes, then a char that's not a d-quote)
Sep
29
comment Regex line by line: How to match triple quotes but not double quotes
ah - ok - that's a little trickier... Should be possible though I think...
Sep
29
answered Regex line by line: How to match triple quotes but not double quotes