Visit my blog or connect with me on Twitter
git init
or
#!/bin/sh | |
set -eux | |
hdiutil create -o /tmp/sequoia -size 16384m -volname ventura -layout SPUD -fs HFS+J | |
#hdiutil create -o /tmp/sequoia -size 6384m -volname ventura -layout SPUD -fs HFS+J | |
hdiutil attach /tmp/sequoia.dmg -noverify -mountpoint /Volumes/sequoia | |
sudo /Applications/Install\ macOS\ Sequoia.app/Contents/Resources/createinstallmedia --volume /Volumes/sequoia --nointeraction | |
hdiutil eject -force /Volumes/Install\ macOS\ Sequoia | |
hdiutil convert /tmp/sequoia.dmg -format UDTO -o ~/Desktop/sequoia.cdr | |
mv ~/Desktop/sequoia.cdr ~/Desktop/sequoia.iso |
#!/bin/sh | |
set -eux | |
hdiutil create -o /tmp/ventura -size 16384m -volname ventura -layout SPUD -fs HFS+J | |
hdiutil attach /tmp/ventura.dmg -noverify -mountpoint /Volumes/ventura | |
sudo /Applications/Install\ macOS\ Ventura\.app//Contents/Resources/createinstallmedia --volume /Volumes/vent\ | |
ura --nointeraction | |
hdiutil eject -force /Volumes/Install\ macOS\ Ventura | |
hdiutil convert /tmp/ventura.dmg -format UDTO -o ~/Desktop/ventura.cdr | |
mv ~/Desktop/ventura.cdr ~/Desktop/ventura.iso |
#!/bin/sh | |
hdiutil create -o /tmp/ventura -size 16384m -volname ventura -layout SPUD -fs HFS+J | |
hdiutil attach /tmp/ventura.dmg -noverify -mountpoint /Volumes/ventura | |
sudo /Applications/Install\ macOS\ Ventura\ beta.app//Contents/Resources/createinstallmedia --volume /Volumes/ventura --nointeraction | |
hdiutil eject -force /Volumes/Install\ macOS\ Ventura\ beta | |
hdiutil convert /tmp/ventura.dmg -format UDTO -o ~/Desktop/ventura.cdr | |
mv ~/Desktop/ventura.cdr ~/Desktop/ventura.iso |
diff -u -r --exclude=cache --exclude=wiki --exclude=pukiwiki.ini.php --new-file pukiwiki-1.5.3_utf8/lib/convert_html.php pukiwiki/lib/convert_html.php | |
--- pukiwiki-1.5.3_utf8/lib/convert_html.php 2020-02-09 09:21:33.000000000 +0900 | |
+++ pukiwiki/lib/convert_html.php 2022-03-30 14:04:39.000000000 +0900 | |
@@ -273,8 +273,11 @@ | |
function toString() | |
{ | |
- return $this->msg_top . $this->wrap(parent::toString(), | |
- 'h' . $this->level, ' id="' . $this->id . '"'); | |
+// return $this->msg_top . $this->wrap(parent::toString(), |
#!/bin/sh | |
if [ $# -ne 1 ]; then | |
echo "Please specify path to macOS Install application." | |
exit 1 | |
fi | |
installer_path="$1" | |
#echo "attach ${installer_path}" |
#!/bin/sh | |
# add this to your bitbar directory | |
# don't forget to chmod +x | |
# width and characters for the progress bars | |
# feel free to configure these | |
width=30 | |
fill_char="█" | |
empty_char="▁" |
defaults write com.apple.screencapture name "s" | |
defaults write com.apple.screencapture location ~/Desktop | |
defaults write com.apple.screencapture disable-shadow -boolean true | |
killall SystemUIServer |
Visit my blog or connect with me on Twitter
git init
or
--- ext/openssl/ossl_pkey_ec.c 2010-06-21 04:18:59.000000000 -0500 | |
+++ ext/openssl/ossl_pkey_ec.c 2013-12-10 13:30:18.919963527 -0600 | |
@@ -757,8 +757,10 @@ | |
method = EC_GFp_mont_method(); | |
} else if (id == s_GFp_nist) { | |
method = EC_GFp_nist_method(); | |
+ #if !defined(OPENSSL_NO_EC2M) | |
} else if (id == s_GF2m_simple) { | |
method = EC_GF2m_simple_method(); | |
+ #endif |
# Xcode (from gitignore.io) | |
# http://qiita.com/ikuwow/items/4fae81a099bf82f44749 | |
build/ | |
*.pbxuser | |
!default.pbxuser | |
*.mode1v3 | |
!default.mode1v3 | |
*.mode2v3 | |
!default.mode2v3 |