The following search should return questions tagged sql', with three answers or less, none of which have been accepted, and last active on the specified date.
[sql] answers:..3 lastactive:2014-04-16 hasaccepted:0
; Surround selected text with an HTML snippet for highlighting technical details (that aren't code) in FogBugz case event comments. | |
; Alt + Shift + t | |
!+t::SendInput ^x<span style="background-color:WhiteSmoke;border:1px dotted Black">^v</span> | |
; Include 'quote trigger text' for forwarding emails to FogBugz; all contents following the text will be hidden in FogBugz. | |
; Alt + Shift + o | |
!+o::SendInput -----Original Message----- |
(defn f [a b & c] | |
(* a (apply + `(~b ~@c)))) | |
(f 1 2 3) ; -> 5 | |
;; Wrapping the function | |
(defn wrapping-f [a b & c] | |
(apply f `(~a ~b ~@c))) |
The following search should return questions tagged sql', with three answers or less, none of which have been accepted, and last active on the specified date.
[sql] answers:..3 lastactive:2014-04-16 hasaccepted:0
exec sp_executesql N'SELECT this_.ThingId as ThingId261_0_, this_.SomethingRelatedId as SomethingRelatedId261_0_, this_.Label as Label261_0_, this_.IsAwesome as IsAwesome261_0_, this_.IsAmazing as IsAmazing261_0_, this_.IsCool as IsCool261_0_, this_.FriendlyName as FriendlyName261_0_, this_.TypeId as Ty8_261_0_, this_.StatusId as StatusId9_261_0_, this_.LastUpdatedUserId as LastUpdatedUserId261_0_ FROM Things this_ WHERE this_.ThingId in (@p0, @p1, @p2, @p3, @p4, @p5, @p6, @p7, @p8, @p9, @p10, @p11, @p12, @p13, @p14)',N'@p0 int,@p1 int,@p2 int,@p3 int,@p4 int,@p5 int,@p6 int,@p7 int,@p8 int,@p9 int,@p10 int,@p11 int,@p12 int,@p13 int,@p14 int',@p0=9436,@p1=9411,@p2=8905,@p3=8829,@p4=8803,@p5=8804,@p6=8683,@p7=8930,@p8=10012,@p9=10012,@p10=10012,@p11=8449,@p12=8470,@p13=8461,@p14=8443 |
# Remove a file from the repository, but not the file system; the 'f' option forces the removal; the 'r' option performs a recursive removal (if a directory is specified) | |
git rm -f -r --cached './Mri.Web.Mvc/DocumentArchiveErrors_*.xls' | |
# Fix commits (not already pushed to a remote repository); also, see the much more verbose example below | |
git rebase --interactive $parent_of_flawed_commit | |
git rebase --interactive flawed_commit_hash^ # Note the '^' | |
# Change message of last commit; this is only safe is it has not already been pushed to a remote repository | |
git commit --amend -m "New commit message" |
SELECT NumberedDate = DATEADD( day, DATEDIFF(day, 0, GETDATE()) - Number + 1, 0 ) | |
INTO #lastSixtyDays | |
FROM dbo.Numbers | |
WHERE Number < 62; |
Command: | |
C:\Program Files (x86)\Compare It!\wincmp3.exe | |
Arguments: | |
%1 /=%6 %2 /=%7 |
-----Original Message----- | |
<span style="background-color:WhiteSmoke;border:1px dotted Black"></span> |
^(?:(?!\\Configs\\).)*\.config$ |
^(?:.(?!config$))*$ |