HOST=yournal.meteor.com
CMD=`meteor mongo $HOST --url | tail -1 | sed 's_mongodb://\([a-z0-9\-]*\):\([a-f0-9\-]*\)@\(.*\)/\(.*\)_mongodump -u \1 -p \2 -h \3 -d \4_'`
$CMD -o /path/to/dump
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Web.Mvc; | |
/// <summary> | |
/// This model binder converts the value "on" to true. | |
/// It's necessary for form-checkboxes (bootstrap) that sends "on" instead a boolean value | |
/// </summary> | |
public class OnOffModelBinder : IModelBinder | |
{ | |
public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if exists(select * from sys.procedures where name = 'test_proc') | |
begin | |
drop procedure test_proc | |
end | |
go | |
create procedure test_proc | |
@in int, | |
@out int output, | |
@inout int output |
removing meteor (usually not needed!)
# user settings
sudo rm /usr/local/bin/meteor
#meteor installation
rm -rf ~/.meteor
removing meteorite
To create a symbolic link, the syntax of the command is similar to a copy or move command: existing file first, destination file second. For example, to link the directory /export/space/common/archive to /archive for easy access, use:
ln -s /export/space/common/archive /archive
To link the runtime control script /etc/init.d/httpd to /etc/rc2.d/S77httpd, use:
cd /etc/rc2.d ln -s ../init.d/httpd S77httpd
copied from http://collidercreative.com/adding-custom-local-packages-to-meteor-with-meteorite/
##STEP 1: ADD PACKAGE PATH TO SMART.JSON FILE
To have Meteor load a local package you need to add the package and path to your smart.json file like so:
{
"packages": {
"font-awesome-4": {},
void Main()
{
GetTypeFromList(new List<string>()).Dump();
GetTypeFromFunc((string s, int i) => true).Dump();
}
public Type GetTypeFromList<TType>(IEnumerable<TType> dummy)
{
return typeof(TType);
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BEGIN TRY | |
... | |
END TRY | |
BEGIN CATCH | |
ROLLBACK TRANSACTION; | |
THROW; | |
END CATCH |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
in the watch window or quickwatch: | |
"$exception": the current exception that is currently available. it has a much better debug experience in the quickwatch because it can look into the exception's type | |
"{num}#": eg "1#". this is a reference to an object with ObjectId. it acts as a weak-reference and does not affect the GC'ability of the object. http://blogs.msdn.com/b/zainnab/archive/2010/03/04/make-objectid-vstipdebug0015.aspx | |
"$ReturnValue": contains the return value from the last exited method. The autos-window contains a much better display of that. http://blogs.msdn.com/b/visualstudioalm/archive/2013/06/27/seeing-function-return-values-in-the-debugger-in-visual-studio-2013.aspx | |
"$user": displays the information about the current user - eg to check for permissions, impersonations, etc | |
"{number-variable},h": displays the variable as hex | |
"{number-variable},d": displays the variable as decimal/number |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nodejs is called differently on ubunto (for whatever reason) - https://github.com/FredrikNoren/ungit/issues/401 | |
sudo ln -s /usr/bin/nodejs /usr/bin/node | |
sudo -H npm install -g ungit |