#Quick Guide
sudo atsutil databases -remove
atsutil server -shutdown
atsutil server -ping
#Extended Guide from http://doc.extensis.com/Font-Management-in-OSX-Best-Practices-Guide.pdf
#Quick Guide
sudo atsutil databases -remove
atsutil server -shutdown
atsutil server -ping
#Extended Guide from http://doc.extensis.com/Font-Management-in-OSX-Best-Practices-Guide.pdf
<?php echo file_get_contents( get_stylesheet_directory_uri() . '/img/icons/your-logo-file.svg' ); ?> |
Here's a very basic nginx configuration for a website running concrete5:
# Define the server configuration
server {
# Define the ports the server is listening to
# In case this is the default website, you can add default_server before the semicolon
listen 80;
listen [::]:80 ipv6only=on;
xattr -d com.apple.quarantine /path/to/app/myMacApp.app |
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Windows.Forms; | |
using System.IO; |
<?php | |
/** | |
* Single Event Meta Template | |
* | |
* Override this template in your own theme by creating a file at: | |
* [your-theme]/tribe-events/modules/meta.php | |
* | |
* @package TribeEventsCalendar | |
*/ |
<?php $proj_events = tribe_get_events( array( | |
'posts_per_page' => 3, | |
'eventDisplay' => 'list' // only upcoming | |
), true ); ?> | |
<?php if( $proj_events->have_posts() ) : | |
?> | |
<div class="project-related__block project-related__block--events"> | |
<h3>Events</h3> | |
<ul class="bulletless-list"> | |
<?php while( $proj_events->have_posts() ) : $proj_events->the_post(); ?> |
<?php | |
$taxonomy = 'project_category'; | |
$terms = wp_get_post_terms($post->ID, $taxonomy); | |
//print_rr($terms); | |
foreach ($terms as $term) { | |
$term_link = get_term_link( $term, $taxonomy ); | |
if ( is_wp_error( $term_link ) ) | |
echo $term_link->get_error_message(); | |
Exporting password + one-time code data from iCloud Keychain is now officially supported in macOS Monterey and Safari 15 (for Monterey, Big Sur, and Catalina). You can access it in the Password Manager’s “gear” icon (System Preferences > Passwords on Monterey, and Safari > Passwords everywhere else), or via the File > Export > Passwords... menu item). You shouldn't need to hack up your own exporter anymore.
After my dad died, I wanted to be able to have access any of his online accounts going forward. My dad was a Safari user and used iCloud Keychain to sync his credentials across his devices. I don’t want to have to keep an OS X user account around just to access his accounts, so I wanted to export his credentials to a portable file.