Kobi
|
Registered User
|
Hi, I'm Kobi. I'm 25 year old and live in Israel with my wife Suzi.
I like to define myself as web designer and programmer. I work at EDS as a web developer. I do the regular stuff: self-thought html, css, javascript and asp.net. As a part of my job I'm also developing in Oracle PL/SQL and Sharepoint (Moss 2007). Before EDS I worked for a while as a Freelance and on a small start-up company. I was also in the army, like many Israelis. In my free time I like to wander around the Internet, watch TV, read books, play with Photoshop and always being with Suzi. |
|
20h |
comment |
Why does Generic class signature requires specifying new() if type T needs instantiation ? When I studied, we called also that a default constructor. Seems right to me. |
|
20h |
comment |
Which languages have integers with limit and which without limit?<nostalgic> Oh, Scheme takes me back. I remember calculating huge factorials for perverted pleasure... |
|
20h |
comment |
Which languages have integers with limit and which without limit? All language, unless they don't have integers at all. |
|
21h |
comment |
Regular expression for a string with a max length that contains a required part? Come to think of it, (?!.{21}) would work just the same, and also (?=.{1,20}$) if you're an optimist :) |
|
21h |
comment |
Regular expression for a string with a max length that contains a required part? This is a non-greedy capture. I hadn't tested performances, but it should be a little better. It's supposed to stop when it finds $rolename$, instead of keep going until the end, failing and back-tracking. |
|
21h |
accepted | Regular expression for a string with a max length that contains a required part? |
|
21h |
revised |
Regular expression for a string with a max length that contains a required part? I can't spell. |
|
21h |
comment |
Regular expression for a string with a max length that contains a required part? @rwwilden - I've added an option for you, but it's ugly. It's odd that you're allowed to control a regex validation, but not maximum length. This is very common for text boxes... |
|
22h |
answered | Regular expression for a string with a max length that contains a required part? |
|
22h |
comment |
Regular expression for a string with a max length that contains a required part? Sounds right. I'm not sure you need to escape dollars in character groups - [^$] might do. I'll add that you want to test the length first, before the regex. It is much cheaper. |
|
23h |
comment |
C# lambda expression reverse direction <= Now, be honest. You're kidding, aren't you? stackoverflow.com/questions/1642028 |
|
23h |
comment |
Using a Goto to enhance the DRY principle and code clarity: a good idea? @RCIX - I have a rule of thumb here - Calling a function is OK, of course. Calling it again and again with the same parameters - smelly, but could be OK. Calling it with a duplicated string constant - probably unwise. |
|
23h |
answered | Using a Goto to enhance the DRY principle and code clarity: a good idea? |
|
1d |
revised |
SELECT * in SQLite doesn’t return everything in the table added 2 characters in body |
|
1d |
comment |
Invoke Workflow through Custom Sequential Workflow in SharePoint Hey Jaryl. Sorry I couldn't help. While I like the accepted answer, a better practice would be to add and accept your own answer - it did solve your problem, and more likely to help someone :) |
|
1d |
accepted | Invoke Workflow through Custom Sequential Workflow in SharePoint |
|
1d |
comment |
how to “mix” two numbers into one hex-string Looks a lot like: stackoverflow.com/questions/1832494/… . Try adding details to the original question, it can get reopened if it makes sense... |
|
1d |
answered | Invoke Workflow through Custom Sequential Workflow in SharePoint |
|
2d |
comment |
Programmer Puzzle: Encoding a chess board state throughout a game. Vilx- not bad. You can use a real notation for that, like FEN: en.wikipedia.org/wiki/Forsyth-Edwards_Notation/… . Some more details: en.wikipedia.org/wiki/… |
|
2d |
comment |
Programmer Puzzle: Encoding a chess board state throughout a game. A pawn can also be promoted to rook, knight or bishop. This is common to avoid Stalemate, or avoid confrontation. |
|
2d |
comment |
Programmer Puzzle: Encoding a chess board state throughout a game. Well, I added the comment to your answer. It seemed fitting. Another point about Castling is that two pieces are moved at once, against the assumptions of some answers... |
|
2d |
comment |
Programmer Puzzle: Encoding a chess board state throughout a game. What about Castling? you need to remember if the rooks moved. And En passant - can only be done one move after the opponent moved her pawn two squares ( en.wikipedia.org/wiki/En_passant ). There are many state variables to save. |
|
2d |
comment |
OnClientClick=”return confirm(’Are you sure you want delete’);” Does the page post-back, and the record isn't deleted? It could be a view state issue. |
|
2d |
accepted | Active Directory Display all properties in a table |
|
Nov 29 |
accepted | How to wrap a group of words with tags, JavaScript Replace Regular Expressions |
|
Nov 29 |
comment |
How to wrap a group of words with tags, JavaScript Replace Regular Expressions No problem, Thanks! Welcome to StackOverflow. BTW, it's a very good question, and well formatted. Probably the reason it was up voted that much. |
|
Nov 29 |
comment |
What kind of recursion can be resolved without stack? What? I stand corrected! :) |
|
Nov 29 |
comment |
What kind of recursion can be resolved without stack? Sorry, my mistake, it should return a, of course, not 1. |
|
Nov 29 |
comment |
What kind of recursion can be resolved without stack? No problem. +1 for being complete, though I'm not sure the OP will take the time to read it. Good luck. |
|
Nov 29 |
comment |
What kind of recursion can be resolved without stack? In fact, Wikipedia agrees: (define (factorial n) (if (= n 0) 1 (* n (factorial (- n 1))))) - "This program is not written in a tail recursion style"
|
|
Nov 29 |
comment |
What kind of recursion can be resolved without stack? I was confused by your editing... Anyway, yes. A good optimizer can probably change it to tail-calls, but that's not a good example. In fact, it was given at my class as the wrong example, without tail call. consider (define (f n a) (if (= n 0) 1 (f (- n 1) (* n a)))) - you don't need any extra value/stack to solve this. In your example, you assume the optimizer can multiply the saved value - I make no such assumption, I don't need it. |
|
Nov 29 |
comment |
What kind of recursion can be resolved without stack? That sample is not a tail recursion, sorry. you do x*fact(x-1) - you have to keep x on the stack to multiply it. a pure tail call you be return fact(x-1, x * accumulator), where you call the function with (fact 10 1). (usually, you wrap that function with another function, without the accumulator) |
|
Nov 29 |
comment |
What kind of recursion can be resolved without stack? I could, but the first thing that came to my mind was Scheme, which is also the sample in the article. The Wikipedia article is quite clear, imo. |
|
Nov 29 |
answered | What kind of recursion can be resolved without stack? |
|
Nov 29 |
revised |
How to wrap a group of words with tags, JavaScript Replace Regular Expressions edited body |
|
Nov 29 |
comment |
How to wrap a group of words with tags, JavaScript Replace Regular Expressions I know, that is what I meant. That's a big issue. I agree, Bart, I'll change it to avoid confusion. |
|
Nov 29 |
revised |
Problem with CAML query deleted 66 characters in body; edited title |
|
Nov 29 |
answered | How to wrap a group of words with tags, JavaScript Replace Regular Expressions |
|
Nov 28 |
comment |
Sharepoint Workflow - Wait for field change not firing when another workflow changes status Interesting, and I like the idea of waiting on the task. However - in my scenario, I'm supposed to wait for a user to start a workflow (with unique parameters), and wait for it to complete: how can I wait on multiple tasks that aren't yet created? How can I tell it's completed? |
|
Nov 27 |
comment |
How can I remove a word from string? I thought of something like \w*\(\w*\)\w* (with somewhat proper parentheses), but yours it nicer. Nice trick with the spaces. +1. |
|
Nov 27 |
answered | md5 for emails too? |
|
Nov 26 |
comment |
In Jquery on click function is not working for img in IE 6 Well, you should have another space on the end for ie6: <img ..." /> , but I doubt that's the problem. Can you post the generated html, not the php script? Try adding it to the question. |
|
Nov 26 |
comment |
In Jquery on click function is not working for img in IE 6 Can you post the html markup of the <img>? Does other javascript work well (eg, alert(1);)? |
|
Nov 26 |
comment |
In Jquery on click function is not working for img in IE 6 is it inside $(document).ready(function(){ })? |
|
Nov 26 |
revised |
table join where deleted 79 characters in body |
|
Nov 25 |
answered | how to make an ajax search |
|
Nov 24 |
answered | Search string pattern in string |
|
Nov 24 |
accepted | Firefox not respecting line-height |
|
Nov 24 |
revised |
Firefox not respecting line-height added 84 characters in body |
|
Nov 24 |
accepted | Javascript Ternary operator |
