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
| Virtualization Guide: Host PC and VMware VM | |
| Last updated: 2026-07-06 | |
| This guide covers two different setups that conflict with each other on many Windows hosts: | |
| Host PC mode: Claude workspace, WSL 2, Docker Desktop on the host. | |
| VMware nested virtualization mode: Docker Desktop inside a Windows VMware guest. | |
| You may need to switch between these modes depending on what you want to run. | |
| VMware Guest VM |
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
| elementor-pro.php | |
| Line No - 17 | |
| if ( get_option('_elementor_pro_license_data') ) { | |
| delete_option( '_elementor_pro_license_data'); | |
| } | |
| update_option( 'elementor_pro_license_key', '*********' ); | |
| update_option( '_elementor_pro_license_v2_data', [ 'timeout' => strtotime( '+12 hours', current_time( 'timestamp' ) ), 'value' => json_encode( [ 'success' => true, 'license' => 'valid', 'expires' => '01.01.2030', 'features' => [] ] ) ] ); | |
| add_filter( 'elementor/connect/additional-connect-info', '__return_empty_array', 999 ); |
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 | |
| if ( ! defined( 'ABSPATH' ) ) { | |
| exit; // Exit if accessed directly. | |
| } | |
| class RHEA_Agents_Widget extends \Elementor\Widget_Base { | |
| public function get_name() { | |
| return 'ere-agents-widget'; | |
| } |
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
| add_filter( 'elementor_pro/custom_fonts/font_display', function( $current_value, $font_family, $data ) { | |
| return 'swap'; | |
| }, 10, 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
| #include<stdio.h> | |
| int main(){ | |
| int n; | |
| printf("How many number to find: "); | |
| scanf("%d", &n); | |
| int i, a[n]; | |
| for(i=0;i<=(n-1);i++) | |
| scanf("%d", &a[i]); | |
| int b[n/2],c[n/2]; |
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
| #include <stdio.h> | |
| int main(){ | |
| int n; | |
| printf("Type your count number I found maximum number: "); | |
| scanf("%d", &n); | |
| int a[n]; | |
| int i; | |
| for(i=0; i<=(n-1); i++){ | |
| scanf("%d", &a[i]); | |
| } |
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
| /* | |
| * In order to enable this script, follow these steps: | |
| *** Open the Google Sheet you want to use, | |
| ** From the Tools menu select "Script Editor" | |
| * Paste this script into code editor and hit Save. | |
| * | |
| *** Then click: | |
| ** "Publish" & select "Deploy as web app... | |
| *** Select: | |
| ** Execute the app as: Me (youremail@gmail.com) |
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
| <style> | |
| .totalpoll-question-content { | |
| margin-bottom: 1em; | |
| margin-left: 0px !important; | |
| } | |
| .totalpoll-question-choices label { | |
| display: none; | |
| } | |
| a.loadMore, a.loadLess { |
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 | |
| // child here | |
| function ptc_my_theme_enqueue_styles() | |
| { | |
| $parent_style = "parent-style"; // | |
| //wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' ); | |
| wp_enqueue_style( | |
| "child-style", | |
| get_stylesheet_directory_uri() . "/style.css", |
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 | |
| // child here | |
| function ptc_my_theme_enqueue_styles() | |
| { | |
| $parent_style = "parent-style"; // | |
| //wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' ); | |
| wp_enqueue_style( | |
| "child-style", | |
| get_stylesheet_directory_uri() . "/style.css", |
NewerOlder