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
------------------------------------- | |
Translated Report (Full Report Below) | |
------------------------------------- | |
Incident Identifier: 1FBF2F37-DD83-4FAE-83DB-1D5F939BD929 | |
CrashReporter Key: 55C78E54-2CEA-D459-836B-B208E2242DA6 | |
Hardware Model: MacBookPro18,1 | |
Process: iPhone Mirroring [2896] | |
Path: /System/Applications/iPhone Mirroring.app/Contents/MacOS/iPhone Mirroring | |
Identifier: com.apple.ScreenContinuity |
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
{ | |
"$schema": "https://zed.dev/schema/themes/v0.1.0.json", | |
"name": "Vesper", | |
"author": "Rauno Freiberg", | |
"themes": [ | |
{ | |
"name": "Vesper", | |
"appearance": "dark", | |
"style": { | |
"border": "#101010", |
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 | |
# wp-local-setup-proxy.sh | |
# Automates the configuration of a WordPress (WP) site to proxy missing media files from a production server. | |
# ----------------------------------------------------------------------------------------- | |
# To use this script from anywhere on your system, follow these steps: | |
# For macOS and Linux: | |
# | |
# Using one line: |
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
<?php | |
namespace App\Livewire; | |
use Livewire\Attributes\Url; | |
use Livewire\Component; | |
use WP_Query; | |
class PostSearch extends Component | |
{ |
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
<?php | |
add_filter( 'acf/json/load_paths', 'set_custom_json_load_paths' ); | |
function set_custom_json_load_paths( $paths ) { | |
$paths[] = get_stylesheet_directory() . '/acf-json/post-types'; | |
$paths[] = get_stylesheet_directory() . '/acf-json/field-groups'; | |
$paths[] = get_stylesheet_directory() . '/acf-json/taxonomies'; | |
$paths[] = get_stylesheet_directory() . '/acf-json/option-pages'; | |
return $paths; | |
} |
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
import React, { Component, Fragment } from 'react'; | |
import QRCodeScanner from 'react-native-qrcode-scanner'; | |
import styles from './scanStyle' | |
import { | |
TouchableOpacity, | |
Text, | |
StatusBar, | |
Linking, | |
View | |
} from 'react-native'; |
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
proxy: | |
mannequin: | |
- appname-styleguide.lndo.site | |
node: | |
- appname-bs.lndo.site:3000 | |
services: | |
mannequin: | |
type: compose | |
services: | |
image: php:7.3 |
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
/////////////////////////// | |
// /resources/views/partials/shortcodes/faqs.blade.php | |
<ul class="accordion span12" data-allow-all-closed="true" data-deep-link="true" data-deep-link-smudge="true" data-deep-link-smudge-delay="600" data-accordion id="deeplinked-accordion-with-smudge"> | |
@foreach($faqs as $faq) | |
<li class="accordion-item" data-accordion-item> | |
<a href="#{{ $category }}{{ $loop->iteration }}" class="accordion-title">{!! $faq->post_title !!}</a> | |
<div class="accordion-content" data-tab-content id="answer{{ $loop->iteration }}"> | |
{!! $faq->post_content !!} | |
</div> | |
</li> |
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 lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Who should drive?</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<!-- Styles --> | |
<style type="text/css"> |
NewerOlder