This file contains 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
ls -s ~/path/to/notes.bbprojectd ~/Library/Application Support/BBEdit/Startup Item |
This file contains 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
mysql -u root --password="${PASSWORD}" <<EOF | |
CREATE DATABASE ${DB_NAME}; | |
CREATE USER '${APP_USER}'@'localhost' IDENTIFIED BY '${APP_PASSWORD}'; | |
GRANT ALL ON ${DB_NAME}.* TO '${APP_USER}'@'localhost' | |
EOF |
This file contains 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
cat > /etc/ssh/sshd_config << "EOF" | |
Include /etc/ssh/sshd_config.d/*.conf | |
#Port 22 | |
#AddressFamily any | |
#ListenAddress 0.0.0.0 | |
#ListenAddress :: | |
... | |
EOF |
This file contains 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
location /blog/ { | |
proxy_pass http://YOUR_IP_ADDRESS/; # this last forward slash is important | |
proxy_http_version 1.1; | |
proxy_cache_bypass $http_upgrade; | |
# Proxy headers | |
proxy_set_header Upgrade $http_upgrade; | |
proxy_set_header Connection "upgrade"; | |
proxy_set_header Host $host; | |
proxy_set_header X-Real-IP $remote_addr; |
This file contains 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
define( 'WP_HOME', 'https://yoursite.com/blog'); | |
define( 'WP_SITEURL', 'https://yoursite.com/blog'); | |
/** | |
* This is needed for a reverse proxy setup that terminates SSL and forwards /blog to another host. | |
* Without it, the Wordpress host doesn't know that it needs to make requests to itself using https. | |
*/ | |
if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') { | |
$_SERVER['HTTPS'] = 'on'; | |
} |
This file contains 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/bash | |
set -e | |
# Sets up an new myql instalation (Ubuntu 20.04)s | |
# 1. Downloads mysql-server if necessary | |
# 2. Secures the installation | |
# 3. Sets the root password | |
# 4. Creates an app related DB |
This file contains 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
static func load(_ entityId: Int, completion: @escaping ( (SampleServiceResponse?) -> Void)) { | |
let urlString = "https://api.sweetpeamobile.com/v1/sampleService?locationId=\(locationId)" | |
AF.request(urlString).responseDecodable(of: SampleServiceResponse.self) { response in | |
switch response.result { | |
case .success(let decodedResponse): | |
completion(decodedResponse) | |
case .failure(let error): | |
print("Networking error: \(error.localizedDescription)") | |
completion(nil) | |
} |
This file contains 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
// First, delete the two storyboard entries in the Info.plist (one newer one for SceneDelegate and a newer one for AppDelegate) | |
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { | |
guard let windowScene = scene as? UIWindowScene else { | |
return | |
} | |
let blueViewController = UIViewController() | |
blueViewController.view.backgroundColor = .blue | |
This file contains 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
#import "UIImage+Extension.h" | |
@implementation UIImage (Extension) | |
- (UIImage *)imageWithColor:(UIColor *)color | |
{ | |
UIGraphicsBeginImageContextWithOptions(self.size, NO, self.scale); | |
CGContextRef context = UIGraphicsGetCurrentContext(); | |
CGContextTranslateCTM(context, 0, self.size.height); | |
CGContextScaleCTM(context, 1.0, -1.0); |
This file contains 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
Verifying my Blockstack ID is secured with the address 13XP5d1aPsUQZHt55f3WyYMCHvaWQjgDKu https://explorer.blockstack.org/address/13XP5d1aPsUQZHt55f3WyYMCHvaWQjgDKu |
NewerOlder