in OS X 10.4 to macOS sierra 10.12 and maybe higher!
Copy this entire code block and paste it into your terminal and push Return to create this file for you with correct permissions. It will (probably) ask for your password:
in OS X 10.4 to macOS sierra 10.12 and maybe higher!
Copy this entire code block and paste it into your terminal and push Return to create this file for you with correct permissions. It will (probably) ask for your password:
#!/bin/sh | |
run_it () { | |
# Pretty message function | |
NiceMsg () { | |
printf "\033[0;32m$1\033[0m\n" | |
} | |
# Version compare function |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>limit.maxfiles</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>launchctl</string> | |
<string>limit</string> |
#!/bin/sh | |
hot_patch () { | |
echo "=> Hot-Patching Meteor 1.4.2 to not pass --unsafe-perm to springboarded version..." | |
echo "=> https://github.com/meteor/meteor/issues/7959" | |
echo "=> REMOVE THIS when Meteor 1.4.2.1 comes out!" | |
echo "$(dirname "$(readlink "$HOME/.meteor/meteor")")/tools/cli/main.js" | \ | |
grep '/1\.4\.2/' | \ | |
xargs perl -0pi.bak \ | |
-e 's/(^\h+var newArgv.*?$)/$1\n\n newArgv = newArgv.filter(function (arg) { return arg !== "--unsafe-perm"; });/ms' | |
} |
I hereby claim:
To claim this, I am signing this object:
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>limit.maxfiles</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>launchctl</string> | |
<string>limit</string> |
20010 silly gunzTarPerm extractEntry fn/symbol/replace.js | |
20011 silly gunzTarPerm modified mode [ 'fn/symbol/replace.js', 438, 420 ] | |
20012 silly gunzTarPerm extractEntry fn/system/global.js | |
20013 silly gunzTarPerm modified mode [ 'fn/system/global.js', 438, 420 ] | |
20014 silly gunzTarPerm extractEntry library/fn/reflect/get-own-property-descriptor.js | |
20015 silly gunzTarPerm modified mode [ 'library/fn/reflect/get-own-property-descriptor.js', 438, 420 ] | |
20016 silly gunzTarPerm extractEntry library/fn/reflect/get-prototype-of.js | |
20017 silly gunzTarPerm modified mode [ 'library/fn/reflect/get-prototype-of.js', 438, 420 ] | |
20018 silly gunzTarPerm extractEntry library/fn/reflect/get-own-property-descriptor.js | |
20019 silly gunzTarPerm modified mode [ 'library/fn/reflect/get-own-property-descriptor.js', 438, 420 ] |
# Install NVM | |
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.29.0/install.sh | bash | |
# Install Node Version 0.10.32 | |
# info: https://github.com/creationix/nvm | |
nvm install v0.10.32 | |
nvm use v0.10.32 | |
# Install requirements for Android SDK | |
# info: https://github.com/meteor/meteor/wiki/Mobile-Development-Install:-Android-on-Linux |
Dosare = new Meteor.Collection('dosare'); | |
var soap = Meteor.npmRequire('soap'); | |
var startDate = '2014-01-10'; | |
var stopDate = '2014-01-12'; | |
var url = 'http://portalquery.just.ro/Query.asmx?wsdl'; | |
var args = { | |
institutie: 'CurteadeApelBUCURESTI', | |
data_start: startDate, |
// publish-composite | |
Meteor.publishComposite = function () {}; | |
beforeEach(function () { | |
Meteor.publishComposite = function () {}; | |
}); | |
var originalMeteorCollection = Meteor.Collection; | |
Meteor.Collection = function () { |