sudo xcodebuild -runFirstLaunch
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/bash | |
| while [ `passenger-config list-instances --json | jq length` -ne 1 ]; do | |
| echo "Waiting until NGINX done reloading..." | |
| sleep 1 | |
| done | |
| sudo -n -- passenger-config reopen-logs &> /dev/null || true | |
| passenger-config restart-app ~ --ignore-app-not-running |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>Welcome!</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <style> | |
| body { | |
| text-align: center; | |
| font-family: "Segoe UI", Roboto, sans-serif; |
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
| user nginx; | |
| worker_processes auto; | |
| error_log /var/log/nginx/error.log; | |
| pid /run/nginx.pid; | |
| include /usr/share/nginx/modules/*.conf; | |
| events { | |
| worker_connections 1024; | |
| } |
This is a way to compile Redox OS in MacOS Apple Silicon using Podman.
This gist follows the book but specifics to MacOS Apple Silicon for easy and fastest installation. For native bootstrap follow another gist (WIP)
cd ~/Document
git clone https://gitlab.redox-os.org/redox-os/redox
cd redoxMain article: https://computingforgeeks.com/upgrade-to-rocky-linux-9-from-rocky-linux-8/
There are some adjustment that I need to aware with. For instance I have to disable many old modules also upgrading my REMI and postgres data.
Using PHP from builtin rocky linux repo turns out have a devastating consequences... It's much better to move away from it and use remi repo.
dnf update -y
REPO_URL="https://download.rockylinux.org/pub/rocky/9/BaseOS/x86_64/os/Packages/r"sudo nano /Library/LaunchDaemons/com.docker.vmnetd.plist
<?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>
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
| $manifest = (Get-AppxPackage Microsoft.SecHealthUI -AllUsers).InstallLocation + '\AppxManifest.xml'; | |
| Add-AppxPackage -DisableDevelopmentMode -Register $manifest; |
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
| { | |
| " ": ["\\space"], | |
| "#": ["\\#"], | |
| "$": ["\\textdollar"], | |
| "%": ["\\%"], | |
| "&": ["\\&"], | |
| "'": ["\\textquotesingle"], | |
| "*": ["\\ast"], | |
| "‚": [","], | |
| "−": ["-"], |
This file has been truncated, but you can view the full file.
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
| -- -------------------------------------------------------- | |
| -- Host: 127.0.0.1 | |
| -- Server version: 10.4.13-MariaDB - mariadb.org binary distribution | |
| -- Server OS: Win64 | |
| -- HeidiSQL Version: 11.1.0.6116 | |
| -- -------------------------------------------------------- | |
| /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | |
| /*!40101 SET NAMES utf8 */; | |
| /*!50503 SET NAMES utf8mb4 */; |