Craig Walker
|
Registered User
|
Software Developer and Technology Consultant
|
|
4h |
answered | production schema |
|
8h |
asked | LINQ-to-SQL References to Entities in other DataContexts |
|
1d |
comment |
Remotely Track the Current Branch in Git As a matter of fact, there's is a "post-push" hook in the form of the --receive-pack parameter to git-push |
|
1d |
comment |
Remotely Track the Current Branch in Git Originally, I was going totally sans-push, and having the server pull from my laptop. Pat's suggestion with a post-commit hook could work if it fires off a message to the server (ex: an ssh remote command) that causes the server to start its pull. However, I'm leaning back towards the push route currently. |
|
2d |
answered | Remotely Track the Current Branch in Git |
|
2d |
comment |
Remotely Track the Current Branch in Git I happened to be doing a lot of rebasing this weekend, so that is an issue. :-\ |
|
2d |
comment |
Remotely Track the Current Branch in Git Not bad; it unfortunately requires an additional regular step to merge my current work into the testing branch, but so far it's the front runner. Thanks |
|
2d |
revised |
Remotely Track the Current Branch in Git fixed 2nd set of bullet points |
|
2d |
answered | Remotely Track the Current Branch in Git |
|
2d |
asked | Remotely Track the Current Branch in Git |
|
Nov 21 |
comment |
git-upload-pack: command not found, how to fix this correctly I had an additional problem; when I ssh'd into the remote machine and executed git-upload-pack, it found it find, but not when I was cloning. (ie: the PATH was different between the direct login and the remote execution). Setting the path in .bashrc, as described here, fixed the problem. |
|
Nov 18 |
accepted | How do I write a generic method that takes different types as parameters? |
|
Nov 18 |
comment |
How do I write a generic method that takes different types as parameters? That's what "edit" is all about :-) |
|
Nov 18 |
comment |
How do I write a generic method that takes different types as parameters? This won't work without a "where TB: TA" clause at the end of the method. |
|
Nov 18 |
revised |
How do I write a generic method that takes different types as parameters? expanded notes |
|
Nov 18 |
answered | How do I write a generic method that takes different types as parameters? |
|
Nov 17 |
awarded | ● Popular Question |
|
Nov 14 |
revised |
Is it possible to define a block with default arguments in Ruby? edited tags |
|
Nov 14 |
answered | Is it possible to define a block with default arguments in Ruby? |
|
Nov 14 |
comment |
Is it possible to define a block with default arguments in Ruby? ...and I'm on 1.8.7, which explains why it's not working for me. :-\ |
|
Nov 14 |
asked | Is it possible to define a block with default arguments in Ruby? |
|
Nov 12 |
revised |
Consequences of implementing to_int and to_str in Ruby Added a side question based on Jörg's answer |
|
Nov 12 |
comment |
Consequences of implementing to_int and to_str in Ruby Agreed on string interpolation being a better way in practice; I used string concat simply as an example of something that required to_str. (In fact, in real coding, I avoid concatenation simply because it doesn't work with arbitrary objects). |
|
Nov 11 |
comment |
Consequences of implementing to_int and to_str in Ruby I did that in the actual code (see the linked class), but omitted those methods for brevity in the example code I posted here. |
|
Nov 11 |
revised |
Consequences of implementing to_int and to_str in Ruby Added another argument |
|
Nov 11 |
asked | Consequences of implementing to_int and to_str in Ruby |
|
Nov 6 |
awarded | ● Popular Question |
|
Nov 3 |
comment |
google.load - and message “google is not defined” I can't define google, but I know it when I see it. ;-) |
|
Nov 2 |
answered | How can you check to see if a file exists (on the remote server) in Capistrano? |
|
Nov 1 |
comment |
Rails Functional Test of Arbitrary or Custom URLs Yup, integration testing was the key. |
|
Nov 1 |
revised |
Rails Functional Test of Arbitrary or Custom URLs Added "execution of URL" to clarify my intent |
|
Nov 1 |
comment |
Rails Functional Test of Arbitrary or Custom URLs That's useful stuff, but it doesn't actually call the action; it just checks that the routing of the URLs will result in the particular action/params. (I'll edit my question to clarify what I'm looking for). |
|
Nov 1 |
answered | Rails Functional Test of Arbitrary or Custom URLs |
|
Nov 1 |
comment |
Rails Functional Test of Arbitrary or Custom URLs I had thought about that, but I was really hoping to avoid it. The actual use case is the URL being in a certain format; passing in the path segments as a parameter bypasses that check. |
|
Nov 1 |
asked | Rails Functional Test of Arbitrary or Custom URLs |
|
Nov 1 |
comment |
Unit tests for 3rd-party libraries Not bad advice, though probably not applicable to my particular project. Ruby doesn't have explicit interfaces, but swapping out a library would be fairly easy to do, as you just have to implement the called methods if you don't want to change the callers themselves. |
|
Oct 31 |
asked | Unit tests for 3rd-party libraries |
|
Oct 29 |
comment |
How do i apply a CSS id when the control is runat=server? You should post this as an answer; it's good info |
|
Oct 28 |
revised |
How do i apply a CSS id when the control is runat=server? Added usage example |
|
Oct 28 |
answered | How do i apply a CSS id when the control is runat=server? |
|
Oct 28 |
comment |
How do i apply a CSS id when the control is runat=server? That's the class attribute, not the ID attribute. |
|
Oct 27 |
asked | Linq to Entities: Mixed graph of Entities, EntityKeys, Attached, and New Objects |
|
Oct 24 |
awarded | ● Popular Question |
|
Oct 22 |
comment |
Exclude weekends and custom days (i.e. Holidays) from date calculations Or consider things like Ramadan, which varies from year to year and from place to place. It's also decreed, not caclulated (though the date of decree can be estimated by calculations). j.mp/GKzaM |
|
Oct 22 |
comment |
Stateful experience I can't upvote this answer enough |
|
Oct 18 |
comment |
Asset URLs without cache timestamps in Rails Yup, you're right there. |
|
Oct 18 |
answered | Asset URLs without cache timestamps in Rails |
|
Oct 18 |
comment |
Asset URLs without cache timestamps in Rails I was hoping to avoid having to strip off the query string, but this is the only answer so far. Thanks :-) |
|
Oct 18 |
asked | Asset URLs without cache timestamps in Rails |
|
Oct 14 |
answered | Getting output of system() calls in ruby |
