I wrote a C#/.NET function (extension method) called `Becomes` that I use as a replacement for the various `TryParse` methods.
Example:
let n be an int
n.Becomes("2") //returns 2
n.Becomes("sdfsd") //returns n
0.Becomes("12") returns 12
0.Becomes("sdssdf") returns 0
Non-contrived example:
var person = Person.Get(0.Becomes(Request.QueryString["id"]));
Basically, given the expression
n.Becomes(SOME_STRING)
if `SOME_STRING` can be parsed as whatever the type of `n` is then it returns the the parsed result, else it returns (the value of) `n`.
More technically, `Becomes` returns a `ParseAttemptResult<T>` that is implicitly convertible to `T`. It also has `true` and `false` operators so that it can be used in an expression expecting a `Boolean` (e.g. `if` and the ternary operator`?:`).
I offer up this little item since I'm a bit of a stickler for applications using proper grammar. This is nothing complex but I use it all the time. I have versions of the same routine in every language I work in.
alert('There ' + plural(c,'dog','','is','are') + ' in my house');
c = 1 --> There is 1 dog in my house.
c <> 1 --> There are 2 dogs in my house.
alert(plural(c,'dog','','','','is','are') + ' in my house');
c = 1 --> 1 dog is in my house.
c <> 1 --> 2 dogs are in my house.
And for non-simple pluralization:
alert('There ' + plural(c,'company','companies','is','are') + ' on the list');
c = 1 --> There is 1 company on the list.
c <> 1 --> There are 2 companies on the list.
alert(plural(c,'company','companies','','','is','are') + ' on the list');
c = 1 --> 1 company is on the list.
c <> 1 --> 2 companies are on the list.
Possibly the most critical code in my application:
#Non-destructive. Returns the input array/list in randomized order. Uses approximately O(n) time and O(n) space.
def self.shuffle_array(array)
shallow_copy = array.map {|a| a}
shallow_copy.size.downto(1) {|n| shallow_copy.push(shallow_copy.delete_at(rand(n)))
shallow_copy
end
def history(num=100)
h = Readline::HISTORY.to_a
start = [0,h.size-num-1].max
h.zip((0..h.size).to_a)[start...h.size].each do |cmd,i|
puts " #{(i).to_s.rjust(4)} #{cmd}"
end
end
I keep it in my .irbrc file, really useful to avoid stepping through command history to find previous commands.
connect_to_db();
in PHP. it knows if im in a development or production environment, knows the proper username and password, and connects.
Very basic i know, and im sure everyone has written a similar function, but super useful.
Should emit a small sound when run, useful when running long running tasks so you dont have to pop back to the console window all the time to check if its done.
A few months ago I was writing a little application where I was doing a lot of asynchronous calls in javascript and having to track their completion to do some other stuff, it resulted in this:
// Synchronizes asynchronous calls: sync(functions..., completionHandler)
var sync = function() {
var argLength = arguments.length - 1
, completed = 0
, callback = arguments[argLength]
for (var i = 0; i < argLength; i++) {
arguments[i](function() {
completed++;
(completed == argLength) && callback && callback();
});
}
};
It pretty much takes a number of functions that perform asynchronous operations and execute a callback function upon completion of whatever the async operation is. Once they're all complete it calls the last function it received as a 'completion handler'. Example that I wrote out without bothering to test at all (treat it as pseudo-code):
So that will start by beginning the jQuery fadeOut animation on the pageContainer html element, while immediately doing an ajax call to get another page's data. Once both operations are complete, it will take the new page data, put it into the pageContainer element, and fade it back in.
I also see this post explaining the presence of the -webkit-background-clip (http://tumble.sneak.co.nz/post/928998513/fixing-the-backgrou...), but I don't see that behavior in Safari 5. Potentially fixed? If not, I would certainly add that to my boilerplate.
We have a SIP call accounting, rating and routing product that is driven by a SIP proxy that calls a lot of Postgres stored procedures on the backend. (The SIP proxy's configuration is written in a pseudo-programmatic, interpreted scripting language, but one lacking in many basic features and data structure primitives that can be taken for granted in the runtime of a general-purpose programming language, so most of the business layer is in the database of necessity, in addition to all the other reasons for doing it that way.)
All throughout the platform, there are many points at which the ANI/caller ID and the dialed digits (the user part of the request URI) must be "translated", which is a fancy phone switch term for stripping one or more digits and then prepending one or more digits. It was such a common operation that it was genericised into our most oft-used PL/PgSQL utility function:
-- Character stripping and prefix prepending transformation, which is applied
-- to the ANI and DNIS at virtually all entry and exit points in the call
-- processing machine.
CREATE OR REPLACE FUNCTION strip_prepend_transform(_token varchar,
_strip_digits integer,
_prepend_prefix varchar)
RETURNS varchar
AS $$
DECLARE
_strip_len smallint := 0;
BEGIN
IF _strip_digits > 0 THEN
-- If the strip length given for some reason exceeds the
-- actual string length, trim it down so that those digits
-- that do exist are still trimmed.
IF _strip_digits > LENGTH(_token) THEN
_strip_len = LENGTH(_token);
ELSE
_strip_len = LENGTH(_token) - _strip_digits;
END IF;
_token := SUBSTRING(_token FROM (_strip_digits + 1) FOR _strip_len);
END IF;
IF LENGTH(_prepend_prefix) > 0 AND _prepend_prefix <> '' THEN
_token := (_prepend_prefix || _token);
END IF;
RETURN _token;
END
$$ LANGUAGE 'plpgsql';
Maybe I don't understand your use case, but it seems to me your function is masking some other problems. You say you're new to JS, so here's a little unsolicited advice...
If you find yourself retyping the same jQuery selectors over and over, or that the structure changes a lot, then you should be encapsulating that somehow into some other function or object. Instead you're writing a do-it-all function that takes more strokes to type than the original jQuery selectors!
I haven't seen the structure in question, but when I see a class called something very generic like "node", I suspect something else is wrong. If the class isn't specific and at least somewhat meaningful to a person, then you might be solving the problem at the wrong level, using classes when a rethink of the structure might be better.
Also... lack of semicolons is bad style. Lack of braces for if clauses is bad style. Fix it, you'll thank me later. :)
"src". Takes the name of a variable (usually a function) and searches my source directory for definitions of that variable. The way it recognizes definitions is fairly ad-hoc (it recognizes "def", "mac", "defmemo", and a few others; it doesn't attempt to recognize forms like "(let x 2 (def ...))").
arc> src.src
From: /Users/waterhouse/Dropbox/arc3.1/a
(mac src (name (o strict t))
`(src-fn ',name
',strict))
Found 1 results in 1 different files.
"aps". Apropos; derived from the Common Lisp function. Returns all bound variable names of which the supplied argument is a substring.
A little bit of python that makes it easier to do shell-style scripting.
def call(cmd):
args = shlex.split(str(cmd))
p = Popen(args, stdout=PIPE, stderr=PIPE)
text = p.stdout.read()
if not text:
text = p.stderr.read()
return text
In multiple languages (perl, haskell), I find myself writing a function that runs a system command and returns False (or sometimes, throws an exception) if it failed nonzero.
Also, in haskell I use these frequently to have monadic versions of some common flow control functions (some nonstandard libraries have similar functions to these but it's easier to write my own):
whenM c a = c >>= flip when a
unlessM c a = c >>= flip unless a
(>>?) = whenM
(>>!) = unlessM
-- low fixity allows eg, foo bar >>! error $ "failed " ++ meep
infixr 0 >>?
infixr 0 >>!
[+] [-] noblethrasher|14 years ago|reply
Example:
Non-contrived example: Basically, given the expression if `SOME_STRING` can be parsed as whatever the type of `n` is then it returns the the parsed result, else it returns (the value of) `n`.More technically, `Becomes` returns a `ParseAttemptResult<T>` that is implicitly convertible to `T`. It also has `true` and `false` operators so that it can be used in an expression expecting a `Boolean` (e.g. `if` and the ternary operator`?:`).
Github Repo: https://github.com/noblethrasher/Parser-Helpers/blob/master/...
[+] [-] 51Cards|14 years ago|reply
[+] [-] alexgartrell|14 years ago|reply
[+] [-] patio11|14 years ago|reply
[+] [-] klochner|14 years ago|reply
[+] [-] rue|14 years ago|reply
[+] [-] ssp|14 years ago|reply
[+] [-] klochner|14 years ago|reply
[+] [-] dholowiski|14 years ago|reply
[+] [-] Vindexus|14 years ago|reply
[+] [-] clyfe|14 years ago|reply
[+] [-] swah|14 years ago|reply
[+] [-] alts|14 years ago|reply
[+] [-] nxn|14 years ago|reply
[+] [-] contextfree|14 years ago|reply
[+] [-] pallinder|14 years ago|reply
Should emit a small sound when run, useful when running long running tasks so you dont have to pop back to the console window all the time to check if its done.
[+] [-] trbecker|14 years ago|reply
[+] [-] code_duck|14 years ago|reply
[+] [-] nxn|14 years ago|reply
[+] [-] dmix|14 years ago|reply
In SCSS I use a very simple mixin for rounded corners, something I use frequently when designing sites.
Then in the class just add:[+] [-] mgeraci|14 years ago|reply
I also see this post explaining the presence of the -webkit-background-clip (http://tumble.sneak.co.nz/post/928998513/fixing-the-backgrou...), but I don't see that behavior in Safari 5. Potentially fixed? If not, I would certainly add that to my boilerplate.
[+] [-] georgefox|14 years ago|reply
[+] [-] nathanappere|14 years ago|reply
[+] [-] abalashov|14 years ago|reply
All throughout the platform, there are many points at which the ANI/caller ID and the dialed digits (the user part of the request URI) must be "translated", which is a fancy phone switch term for stripping one or more digits and then prepending one or more digits. It was such a common operation that it was genericised into our most oft-used PL/PgSQL utility function:
[+] [-] smoove|14 years ago|reply
[+] [-] jawns|14 years ago|reply
[+] [-] liotier|14 years ago|reply
[+] [-] jpitz|14 years ago|reply
[+] [-] JesseAldridge|14 years ago|reply
That way if I change the html structure I don't have to to change a million jquery selectors, I can just change the from function in one place.
(I'm still somewhat new to Javascript, so this may be a well-known pattern.)[+] [-] neilk|14 years ago|reply
If you find yourself retyping the same jQuery selectors over and over, or that the structure changes a lot, then you should be encapsulating that somehow into some other function or object. Instead you're writing a do-it-all function that takes more strokes to type than the original jQuery selectors!
I haven't seen the structure in question, but when I see a class called something very generic like "node", I suspect something else is wrong. If the class isn't specific and at least somewhat meaningful to a person, then you might be solving the problem at the wrong level, using classes when a rethink of the structure might be better.
Also... lack of semicolons is bad style. Lack of braces for if clauses is bad style. Fix it, you'll thank me later. :)
[+] [-] waterhouse|14 years ago|reply
[+] [-] ramidarigaz|14 years ago|reply
[+] [-] btraut|14 years ago|reply
[+] [-] joeyh|14 years ago|reply
Also, in haskell I use these frequently to have monadic versions of some common flow control functions (some nonstandard libraries have similar functions to these but it's easier to write my own):
[+] [-] jrockway|14 years ago|reply