brew install redis
Set up launchctl to auto start redis
$ ln -sfv /usr/local/opt/redis/*.plist ~/Library/LaunchAgents
/usr/local/opt/redis/
is a symlink to /usr/local/Cellar/redis/x.y.z
(e.g., 2.8.7
)
<?php | |
// | |
add_action('tribe_events_before_view','tribe_custom_fields_meta'); | |
function tribe_custom_fields_meta(){ | |
global $post; | |
// force this to run only on single event views | |
if( is_single() && tribe_is_event( $post->ID ) ){ | |
if( tribe_is_recurring_event( tribe_is_recurring_event( $post->ID ) ) ) { | |
tribe_register_meta( 'tribe_custom_fields_vaa', array( |
<?php | |
// add custom venue meta items | |
add_action('tribe_events_before_view','custom_venue_info'); | |
function custom_venue_info(){ | |
global $post; | |
// force this to run only on single event views | |
if( is_single() && tribe_is_event( $post->ID ) ){ | |
$room = get_post_meta( $post->ID, '_VenueRoom', true ); | |
tribe_register_meta( 'tribe_venue_room', array( |
upstream calc_example_org_upstream { | |
server 127.0.0.1:8005; | |
#server 127.0.0.1:8006; | |
#keepalive 64; | |
} | |
server { | |
listen 80; | |
server_name www.calc.example.org; |
People
![]() :bowtie: |
π :smile: |
π :laughing: |
---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
# import module | |
Import-Module psAzD | |
# set default parameters | |
$params = @{ | |
Organization = "myOrganization" | |
Project = "Test" | |
PersonalAccessToken = "Azure DevOps Personal Access Token here" | |
} | |
Set-AzDDefaultParameters @params |
resources|where (resourceGroup =~ ('rg-INSERT-YOUR-RG-NAME-HERE'))|extend typeDisplayName=case( | |
type =~ 'microsoft.insights/components','Application Insights', | |
type =~ 'microsoft.insights/privatelinkscopes','Azure Monitor Private Link Scope', | |
type =~ 'microsoft.insights/webtests','Availability test', | |
type =~ 'microsoft.insights/workbooks','Azure Workbook', | |
type =~ 'microsoft.insights/workbooktemplates','Azure Workbook Template', | |
type =~ 'microsoft.appplatform/spring','Azure Spring Cloud', | |
type =~ 'microsoft.appplatform/tanzu','Azure Spring Cloud', | |
type =~ 'microsoft.cache/redisenterprise','Redis Enterprise', | |
type =~ 'microsoft.cache/redisenterprise/databases','Cache', |