- Main Repo: https://github.com/sendgrid/sendgrid-nodejs
- Advanced Use Cases: https://github.com/sendgrid/sendgrid-nodejs/tree/main/docs/use-cases
- Robo3T is recommended as a desktop client for managing the Mongo database.
CONNECT TO BITNAMI MEAN STACK
chmod 400 YourPEM.pem
ssh -i YourPEM.pem ubuntu@yourserveraddress.amazonaws.com
ssh -i YourPEM.pem bitnami@youripaddress
SETUP SSH TUNNEL TO CONNECT WITH ROBO 3T
BITNAMI SETUP TUTORIAL
- https://aws.amazon.com/marketplace/server/procurement?productId=7045c7ce-794f-40b1-ae20-1955a798aef6
- https://scotch.io/tutorials/deploying-a-mean-app-to-amazon-ec2-part-1
- https://gist.github.com/azat-co/6075685
CONNECT TO BITNAMI MEAN STACK
chmod 400 YourPEM.pem
ssh -i YourPEM.pem ubuntu@yourserveraddress.amazonaws.com
ssh -i YourPEM.pem bitnami@serveripaddress
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
| 1. Reset the SMC. Turn off your Mac. Hold down Shift+Control+Option buttons. Push power button for 5 seconds. | |
| Wait till the power supply turns amber. Details here: https://support.apple.com/en-ca/HT201295 | |
| 2. Chrome will make the keyboard fail. Test to see if the keyboard works outside of Chrome. You can disable | |
| Hardware Acceleration to improve performance. |
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
| Right-click the repo in the main window, and select 'Convert to SSH' |
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
| defaults write com.microsoft.Outlook NSUserKeyEquivalents -dict-add "Send" "\U200B" |
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
| sudo killall -STOP -c usbd |
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
| #!/bin/sh | |
| # Reference: https://apple.stackexchange.com/questions/62715/applications-dont-show-up-in-spotlight | |
| sudo mdutil -a -i off | |
| sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.metadata.mds.plist | |
| sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.metadata.mds.plist | |
| sudo mdutil -a -i on / |
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
| do | |
| sleep $[RANDOM%3600+1] | |
| osascript -e "set volume 10" | |
| say "balls" | |
| done |
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
| - (void)facebookLoginWithCompletion:(void (^)(NSString *userID, NSString *email, NSString *fullName))completion | |
| { | |
| self.accountStore = [[ACAccountStore alloc] init]; | |
| ACAccountType *accountType = [self.accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierFacebook]; | |
| NSDictionary *options = @{ | |
| ACFacebookAppIdKey:FACEBOOKAPPID, | |
| ACFacebookPermissionsKey: @[@"read_stream", @"basic_info"], | |
NewerOlder