Snippets Collections
import os
import zipfile

def zipdir(path, ziph):
    # ziph is zipfile handle
    for root, dirs, files in os.walk(path):
        for file in files:
            ziph.write(os.path.join(root, file),
                       os.path.relpath(os.path.join(root, file),
                                       os.path.join(path, '..')))

with zipfile.ZipFile('/content/m1.Zip', 'w', zipfile.ZIP_DEFLATED) as zipf:
    zipdir('/content/m1', zipf)
   const sibling = el.previousElementSibling; // parent wrapper
    
      if (sibling) {
        const classList = sibling.getAttribute('class');
        if (classList !== null && classList !== undefined && classList !== '') {
          if (sibling.classList.contains(navLinkClass)) {
           	// do something
          }
        }
      }
<div class="text-center">
              <input class="btn btn-2 submitBtn" type="submit" id="quoteSubmit" name="quote" value="Submit Request"  disabled="disabled">
            </div>



            <div class="col-md-12 mb-3">
            <div class="form-group" style="margin-left: 25px;">
              <input type="checkbox" class="form-check-input" id="click" required="required">
              <label class="form-check-label" for="click">by clicking the submit button below you will be giving permission to contact via SMS regarding your digital services</label>
            </div>
          </div>







$(document).ready(function() {
    // Attach a change event listener to the checkbox
        $(document).on('change', "#click", function(e) {
            console.log('clicked');
            // Check if the checkbox is checked
            if ($(this).is(':checked')) {
                // If checked, enable the submit button
                $('.submitform').removeAttr('disabled');
                console.log('disabled');
            } else {
                // If not checked, disable the submit button
                $('.submitform').attr('disabled', 'disabled');
                console.log('enabled');
            }
        });
    });
{
	"blocks": [
		{
			"type": "header",
			"text": {
				"type": "plain_text",
				"text": ":need-feedback::blob-hype:INTRODUCING: THE HAPPINESS RADAR:blob-hype::need-feedback:"
			}
		},
		{
			"type": "context",
			"elements": [
				{
					"text": "*October 11, 2023*  |  WX Announcements",
					"type": "mrkdwn"
				}
			]
		},
		{
			"type": "divider"
		},
		{
			"type": "section",
			"text": {
				"type": "mrkdwn",
				"text": "We have something new and fantastic to share with you. We're thrilled to introduce the :sparkles:*Happiness Radar*:sparkles:\n\n\n *What is the Happiness Radar, you ask?*:blob_thinking: \n\n Our incredible Grads in Wellington have been hard at work, and they've created a super user-friendly and straightforward way for you to share your feedback on how much you enjoy our Socials and events. Our Auckland office has the honour of being the first to trial the Happiness Radar, just in time for Friday Social! \n\n Using smileys, you can let us know how much you enjoyed a particular experience or event. It will be conveniently accessible on iPads, with one stationed in the kitchen area and another positioned at the entrance. All you have to do is use smileys to let us know how much you enjoyed the social.We genuinely value your opinions, and this is fantastic way to make your voice heard!\n\n\n We can't wait to hear from you and continue to bring you amazing experiences! \n\n\n *Thank you,*\n\n *WX*:wx:"
			}
		},
		{
			"type": "divider"
		}
	]
}
// Register the custom post type "buy From US"
function create_buy_from_us_post_type() {
    $labels = array(
        'name' => _x('Buy From US', 'Post Type General Name'),
        'singular_name' => _x('Buy From US', 'Post Type Singular Name'),
        'menu_name' => _x('Buy From US', 'Admin Menu text'),
        'name_admin_bar' => _x('Buy From US', 'Add New on Toolbar'),
        'archives' => __('Buy From US Archives'),
        'attributes' => __('Buy From US Attributes'),
        'parent_item_colon' => __('Parent Buy From US:'),
        'all_items' => __('All Buy From US'),
        'add_new_item' => __('Add New Buy From US'),
        'add_new' => __('Add New'),
        'new_item' => __('New Buy From US'),
        'edit_item' => __('Edit Buy From US'),
        'update_item' => __('Update Buy From US'),
        'view_item' => __('View Buy From US'),
        'view_items' => __('View Buy From US'),
        'search_items' => __('Search Buy From US'),
        'not_found' => __('Not found'),
        'not_found_in_trash' => __('Not found in Trash'),
        'featured_image' => __('Featured Image'),
        'set_featured_image' => __('Set featured image'),
        'remove_featured_image' => __('Remove featured image'),
        'use_featured_image' => __('Use as featured image'),
        'insert_into_item' => __('Insert into Buy From US'),
        'uploaded_to_this_item' => __('Uploaded to this Buy From US'),
        'items_list' => __('Buy From US list'),
        'items_list_navigation' => __('Buy From US list navigation'),
        'filter_items_list' => __('Filter Buy From US list'),
    );

    $args = array(
        'labels' => $labels,
        'label' => __('Buy From US'),
        'description' => __(''),
        'menu_icon' => 'dashicons-admin-home',
        'supports' => array('title', 'editor', 'excerpt', 'thumbnail', 'page-attributes', 'post-formats'),
       'taxonomies' => array(), // Add the custom taxonomy to the post type
        'public' => true,
        'show_ui' => true,
        'show_in_menu' => true,
        'menu_position' => 5,
        'show_in_admin_bar' => true,
        'show_in_nav_menus' => true,
        'can_export' => true,
        'has_archive' => true,
        'hierarchical' => true,
        'exclude_from_search' => true,
        'show_in_rest' => true,
        'publicly_queryable' => true,
        'capability_type' => 'post',
	     'rewrite' => array('slug' => 'buy-from-us/%buy_cat%'),
    );

    register_post_type('buy-from-us', $args);

    $taxonomy_args = array(
        'labels' => array(
            'name' => 'Category',
            'singular_name' => 'Category',
            'menu_name' => 'Category',
        ),
        'hierarchical' => true,
        'rewrite' => array('slug' => 'buy_cat', 'with_front' => false),
    );

    register_taxonomy('buy_cat', array('buy-from-us'), $taxonomy_args);
}

add_action('init', 'create_buy_from_us_post_type');


function buy_from_us_loop($atts) {
    ob_start();

    $categories = get_terms(
        array(
            'taxonomy' => 'buy_cat',
            'order' => 'asc'
        )
    );
?>
<div class="row buyus">
    <?php
    foreach ($categories as $category) :
    ?>
        <div class="col-md-3">
            <?php
            $arg = array(
                'post_type' => 'buy-from-us',
                'posts_per_page' => -1,
                'tax_query' => array(
                    array(
                        'taxonomy' => 'buy_cat',
                        'field' => 'slug',
                        'terms' => $category->slug,
                    ),
                ),
            );

            $data = new WP_Query($arg);
            if ($data->have_posts()) {
                echo '<ul>';
                while ($data->have_posts()) {
                    $data->the_post();

                    $category = get_the_category();
                    $buy_cats = get_the_terms(get_the_ID(), 'buy_cat');

                    $category_url = get_category_link($category[0]->term_id);
                    $buy_cat_url = get_term_link($buy_cats[0]->term_id, 'buy_cat');

                   echo '<li><a href="' . get_permalink() .'">';
                    the_title();
                    echo '</a></li>';
                }

                echo '</ul>';
            }
            wp_reset_postdata();
            ?>
        </div>
    <?php endforeach; ?>
</div>
<?php
    return ob_get_clean();
}

add_shortcode('buy_from_us', 'buy_from_us_loop');


function change_buy_permalink( $post_link, $post ) {
if ( is_object( $post ) && $post->post_type == 'buy-from-us' ) {
$terms = wp_get_object_terms( $post->ID, 'buy_cat' );
if ( $terms ) {
return str_replace( '%buy_cat%', $terms[0]->slug, $post_link );
}
}
return $post_link;
}
add_filter( 'post_type_link', 'change_buy_permalink', 10, 2 );

// Register the custom post type "Sell To US"
function create_sell_to_us_post_type() {
    $labels = array(
        'name' => _x('Sell To US', 'Post Type General Name'),
        'singular_name' => _x('Sell To US', 'Post Type Singular Name'),
        'menu_name' => _x('Sell To US', 'Admin Menu text'),
        'name_admin_bar' => _x('Sell To US', 'Add New on Toolbar'),
        'archives' => __('Sell To US Archives'),
        'attributes' => __('Sell To US Attributes'),
        'parent_item_colon' => __('Parent Sell To US:'),
        'all_items' => __('All Sell To US'),
        'add_new_item' => __('Add New Sell To US'),
        'add_new' => __('Add New'),
        'new_item' => __('New Sell To US'),
        'edit_item' => __('Edit Sell To US'),
        'update_item' => __('Update Sell To US'),
        'view_item' => __('View Sell To US'),
        'view_items' => __('View Sell To US'),
        'search_items' => __('Search Sell To US'),
        'not_found' => __('Not found'),
        'not_found_in_trash' => __('Not found in Trash'),
        'featured_image' => __('Featured Image'),
        'set_featured_image' => __('Set featured image'),
        'remove_featured_image' => __('Remove featured image'),
        'use_featured_image' => __('Use as featured image'),
        'insert_into_item' => __('Insert into Sell To US'),
        'uploaded_to_this_item' => __('Uploaded to this Sell To US'),
        'items_list' => __('Sell To US list'),
        'items_list_navigation' => __('Sell To US list navigation'),
        'filter_items_list' => __('Filter Sell To US list'),
    );

    $args = array(
        'labels' => $labels,
        'label' => __('Sell To US'),
        'description' => __(''),
        'menu_icon' => 'dashicons-admin-home',
        'supports' => array('title', 'editor', 'excerpt', 'thumbnail', 'page-attributes', 'post-formats'),
       'taxonomies' => array(), // Add the custom taxonomy to the post type
        'public' => true,
        'show_ui' => true,
        'show_in_menu' => true,
        'menu_position' => 5,
        'show_in_admin_bar' => true,
        'show_in_nav_menus' => true,
        'can_export' => true,
        'has_archive' => true,
        'hierarchical' => true,
        'exclude_from_search' => true,
        'show_in_rest' => true,
        'publicly_queryable' => true,
        'capability_type' => 'post',
		'rewrite' => array('slug' => 'sell_cat', 'with_front' => false),
    );

    register_post_type('sell-to-us', $args);

    $taxonomy_args = array(
        'labels' => array(
            'name' => 'Category',
            'singular_name' => 'Category',
            'menu_name' => 'Category',
        ),
        'hierarchical' => true,
        'rewrite' => array('slug' => 'sell_cat', 'with_front' => false),
    );

    register_taxonomy('sell_cat', array('sell-to-us'), $taxonomy_args);
}

add_action('init', 'create_sell_to_us_post_type');


function sell_to_us_loop($atts) {
    ob_start();

    $categories = get_terms(
        array(
            'taxonomy' => 'sell_cat',
            'order' => 'asc'
        )
    );
?>
<div class="row sellus">
    <?php
    foreach ($categories as $category) :
    ?>
        <div class="col-md-4">
            <div class="category">
                <a href="<?php echo get_category_link($category->term_id); ?>">
                    <?php echo $category->name; ?>
                </a>
            </div>

            <?php
            $arg = array(
                'post_type' => 'sell-to-us',
                'posts_per_page' => -1,
                'tax_query' => array(
                    array(
                        'taxonomy' => 'sell_cat',
                        'field' => 'slug',
                        'terms' => $category->slug,
                    ),
                ),
            );

            $data = new WP_Query($arg);
            if ($data->have_posts()) {
                echo '<ul>';
                while ($data->have_posts()) {
                    $data->the_post();

                    $category = get_the_category();
                    $sell_cats = get_the_terms(get_the_ID(), 'sell_cat');

                    $category_url = get_category_link($category[0]->term_id);
                    $sell_cat_url = get_term_link($sell_cats[0]->term_id, 'sell_cat');

                    echo '<li><a href="' .$sell_cat_url  . basename(get_permalink()) . '">';
                    the_title();
                    echo '</a></li>';
                }

                echo '</ul>';
            }
            wp_reset_postdata();
            ?>
        </div>
    <?php endforeach; ?>
</div>
<?php
    return ob_get_clean();
}

add_shortcode('sell_to_us', 'sell_to_us_loop');
SELECT C.CON_IN_CODIGO,     
       (SELECT MAX(FA.PFA_DT_INICIAL)
          FROM GLO_PROCESSO_FLUXO_ANDA FA
         INNER JOIN GLO_PROCESSO_FLUXO FL
            ON FA.PFLU_IN_CODIGO = FL.PFLU_IN_CODIGO
           AND FL.PFLU_CHAVE_PK = C.CON_IN_CODIGO
           AND FL.PFLU_NOMETABELA = 'RH_FORM_CONTRATACAO') DATA_MOV
  FROM RH_FORM_CONTRATACAO C  
 WHERE UPPER(c.CON_ST_STATUS) NOT IN('FINALIZADO','CANCELADO')
 and (SELECT MAX(FA.PFA_DT_INICIAL)
          FROM GLO_PROCESSO_FLUXO_ANDA FA
         INNER JOIN GLO_PROCESSO_FLUXO FL
            ON FA.PFLU_IN_CODIGO = FL.PFLU_IN_CODIGO
           AND FL.PFLU_CHAVE_PK = C.CON_IN_CODIGO
           AND FL.PFLU_NOMETABELA = 'RH_FORM_CONTRATACAO') < ADD_MONTHS(SYSDATE,-2);
           
FROM ubuntu

RUN apt-get update \
 && apt-get install -y apache2

COPY html/* /var/www/html/

WORKDIR /var/www/html

CMD ["apachectl", "-D", "FOREGROUND"]

EXPOSE 80
apiVersion: v1
kind: Service
metadata:
name: taskmaster-svc
spec:
selector:
  app: taskmaster
ports:
  - protocol: TCP
    port: 80
    targetPort: 5000
    nodePort: 30007
type: NodePort
apiVersion: apps/v1
kind: Deployment
metadata:
name: taskmaster
labels:
  app: taskmaster
spec:
replicas: 1
selector:
  matchLabels:
    app: taskmaster
template:
  metadata:
    labels:
      app: taskmaster
  spec:
    containers:
      - name: taskmaster
        image: ishwarshinde041/microservicespythonapp:latest
        ports:
          - containerPort: 5000
        imagePullPolicy: Always
apiVersion: v1
kind: Service
metadata:
labels:
  app: mongo
name: mongo
spec:
ports:
  - port: 27017
    targetPort: 27017
selector:
  app: mongo
        {%- if section.settings.payment_enable -%}
          <div class="footer__payment">
            <span class="visually-hidden">{{ 'sections.footer.payment' | t }}</span>
            <ul class="list list-payment" role="list">
              {%- for type in shop.enabled_payment_types -%}
                <li class="list-payment__item">
                  {{ type | payment_type_svg_tag: class: 'icon icon--full-color' }}
                </li>
              {%- endfor -%}
            </ul>
          </div>
        {%- endif -%}
<!-- Add HTML code to the header or the footer.

​

For example, you can use the following code for loading the jQuery library from Google CDN:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3..1/jquery.min.js"></script>

​
6
or the following one for loading the Bootstrap library from jsDelivr:

<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha34-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2FCUG65" crossorigin="anonymous">
8
​
9
-- End of the comment --> 

​

​
#include<iostream>
#include<iomanip>
using namespace std;
int main(){
double avg;
int num,sum=0,cont; 

do{
    cout<<"input values"<<endl;
     cin>>num;

    sum += num;
    cont += 1;
                     }
  
while(num != 0);

avg = (static_cast<double>(sum))/(cont-1);
cout<<avg<<endl;









class Solution {
public:
    vector<int> findMinHeightTrees(int n, vector<vector<int>>& edges) {
        vector<vector<int>> graph(n);
        vector<int> indegree(n, 0), ans;

        for(auto e : edges){
            graph[e[0]].push_back(e[1]);
            graph[e[1]].push_back(e[0]);
            indegree[e[0]]++;
            indegree[e[1]]++;
        }
        queue<int> q;
        for(int i = 0; i < n ;i++)
            if(indegree[i] == 1)
                q.push(i), indegree[i]--;
        
        while(!q.empty()){
            int s = q.size();
            ans.clear();
            for(int i = 0 ; i < s ;i++){
                int curr = q.front(); q.pop();
                ans.push_back(curr);
                for(auto child : graph[curr])
                {
                    indegree[child]--;
                    if(indegree[child] == 1)
                        q.push(child);
                }
            }
        }
        if(n == 1)ans.push_back(0);
        return ans;
    }
};
apiVersion: apps/v1
kind: Deployment
metadata:
name: mongo
labels:
    app: mongo
spec:
selector:
  matchLabels:
    app: mongo
template:
  metadata:
    labels:
      app: mongo
  spec:
    containers:
      - name: mongo
        image: mongo
        ports:
          - containerPort: 27017
        volumeMounts:
          - name: storage
            mountPath: /data/db
    volumes:
      - name: storage
        persistentVolumeClaim:
          claimName: mongo-pvc
kubectl apply -f mongo-pvc.yml
class Solution {
public:
    vector<int> duplicates(vector<int>& nums){
        unordered_set<int> uSet;
        int n = nums.size();
        vector<int> dup(n, 0);
        for(int i = 0 ; i < n ;i++){
            if(uSet.find(nums[i]) != uSet.end()){
                dup[i] = 1;
            }
            if(i != 0)
                dup[i] += dup[i-1];
            uSet.insert(nums[i]);
        }
        return dup;
    }
    int minOperations(vector<int>& nums) {
        sort(nums.begin(), nums.end());
        int req = nums.size() - 1 , ans = nums.size() - 1, n =nums.size();
        vector<int> d = duplicates(nums);
        for(int ptr = 0; ptr < n-1 ;ptr++ ){
            int idx = lower_bound(nums.begin(), nums.end(), req + nums[ptr]) - nums.begin();
            if(idx < n ){
                int val = nums[ptr] + req;
                if(nums[idx] != val)
                    ans = min(ans, n - idx + ptr + d[idx] - d[ptr]);
                else
                    ans = min(ans, n - idx + ptr - 1 + d[idx] - d[ptr]);
            } 
            else
                ans = min(ans, d[n-1] - d[ptr]+ptr);
        }
        return ans;

    }
};
public class Main {
    public static void main(String[] args) {

        String testpro1 = "TestPro";
        String testpro2 = "TestPro";

        System.out.println(testpro1.equals(testpro2));
    }
}
kubectl apply -f mongo-pvc.yml
public class Main { 
    public static void main(String[] args) {
      
        int a = 7;
        int b = 7;

        System.out.println(a == b);
    }
}
kubectl apply -f mongo-pv.yml
apiVersion: v1
kind: PersistentVolume
metadata:
name: mongo-pv
spec:
capacity:
  storage: 512Mi
volumeMode: Filesystem
accessModes:
  - ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
hostPath:
  path: /home/node/mongodata
apiVersion: v1
kind: PersistentVolume
metadata:
name: mongo-pv
spec:
capacity:
  storage: 512Mi
volumeMode: Filesystem
accessModes:
  - ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
hostPath:
  path: /home/node/mongodata
FROM python:alpine3.7

COPY . /app

WORKDIR /app

RUN pip install -r requirements.txt

ENV PORT 5000

EXPOSE 5000

ENTRYPOINT [ "python" ]

CMD [ "app.py" ]
docker build . -t <username>/microserviceflaskpythonapp:latest
FROM python:alpine3.7
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
ENV PORT 5000
EXPOSE 5000
ENTRYPOINT [ "python" ]
CMD [ "app.py" ]
docker exec -it "<container ID>" bash
docker run -d --mount source=”<your docker volume>”,target=/”<path of WORKDIR from Dockerfile>”-p 8001:80 “<image>”
git clone https://github.com/ishwarshinde041/docker-projects.git
docker stop “<container-id>”

docker start “<container-id>”
// Online C++ compiler to run C++ program online
#include <iostream>
#include<iomanip>
using namespace std;
int main() {
    int table,sp,ep,ans;
    cout<<"enter a table,start point and end point respectively"<<endl;
    cin>>table>>sp>>ep;
    
    for(int i=sp;i<=ep;i++){
        ans = table*i;
        cout<<ans<<endl;
    }
    cout<<"bye"<<endl;
    
    
  

    return 0;
}
docker pull ishwarshinde041/apache-web
{
    "base": [
        {
            "label": "Adres - ulica",
            "value": "addressStreet",
            "type": "text",
            "requried": true
        },
        {
            "label": "Numer budynku",
            "value": "addressBuildingNumber",
            "type": "text",
            "requried": false
        },
        {
            "label": "Metraż powierzchni użytkowej",
            "value": "surface",
            "type": "number",
            "requried": true
        },
        {
            "label": "Metraż działki (w tym ogródek)",
            "value": "landSurface",
            "type": "number",
            "requried": true
        },
        {
            "label": "Pomieszczenia",
            "value": "rooms",
            "type": "ROOM",
            "requried": true
        },
        {
            "label": "Czy kuchnia jest oddzielna?",
            "value": "kitchenSeperate",
            "type": "boolean",
            "requried": true
        },
        {
            "label": "Ilość Pięter",
            "value": "floors",
            "type": "number",
            "requried": true
        },
        {
            "label": "Typ Budynku",
            "value": "buildingType",
            "type": "list",
            "options": [
                {
                    "label": "Mieszany",
                    "value": "MIXED"
                },
                {
                    "label": "Tradycyjny",
                    "value": "TRADITIONAL"
                },
                {
                    "label": "Drewniany",
                    "value": "WOODEN"
                },
                {
                    "label": "Kanadyjski",
                    "value": "CANADIAN"
                },
                {
                    "label": "Szkieletowy",
                    "value": "SKELETAL"
                },
                {
                    "label": "Modułowy",
                    "value": "MODULAR"
                },
                {
                    "label": "Rama H",
                    "value": "RAM_H"
                },
                {
                    "label": "Inny",
                    "value": "OTHER"
                }
            ],
            "requried": false
        },
        {
            "label": "Rodzaj Budynku",
            "value": "buildingKind",
            "type": "list",
            "options": [
                {
                    "label": "Dom wolnostojący",
                    "value": "DETACHED_HOUSE"
                },
                {
                    "label": "Bliźniak",
                    "value": "SIBLING"
                },
                {
                    "label": "Szeregowiec",
                    "value": "ROW"
                },
                {
                    "label": "Dworek/rezydencja",
                    "value": "RESIDENT"
                },
                {
                    "label": "Dom z funkcją usługową",
                    "value": "UTILITY"
                },
                {
                    "label": "Siedlisko",
                    "value": "KEEP"
                },
                {
                    "label": "Dom letniskowy",
                    "value": "COTTAGE"
                },
                {
                    "label": "Inny",
                    "value": "OTHER"
                }
            ],
            "requried": true
        },
        {
            "label": "Rok budowy",
            "value": "buildYear",
            "type": "number",
            "requried": true
        },
        {
            "label": "Czy jest balkon/taras?",
            "value": "isBalcony",
            "type": "boolean",
            "requried": true
        },
        {
            "label": "Wielkość balkonu/tarasu",
            "value": "balconySurface",
            "type": "number",
            "requried": true,
            "ifValueTrue": "isBalcony",
            "unit": "m2"
        },
        {
            "label": "Czy jest miejsce parkingowe/garaż/ platformy parkingowe, na ile samochodów?",
            "value": "parking",
            "type": "list",
            "options": [
                {
                    "label": "Nie ma",
                    "value": "NOTHING"
                },
                {
                    "label": "1 samochód",
                    "value": "ONE_CAR"
                },
                {
                    "label": "2 samochody",
                    "value": "TWO_CAR"
                },
                {
                    "label": "Inne",
                    "value": "OTHER"
                }
            ],
            "requried": true
        },
        {
            "label": "Czy mieszkanie(lokal) jest przyjazne osobom niepełnosprawnym / wózkom dziecięcym?",
            "value": "disabilities",
            "type": "boolean",
            "requried": true
        },
        {
            "label": "Forma własności",
            "value": "propertyForm",
            "type": "list",
            "options": [
                {
                    "label": "pełna własność",
                    "value": "full"
                },
                {
                    "label": "spółdzielcze własnościowe z KW",
                    "value": "KW"
                },
                {
                    "label": "spółdzielcze własnościowe bez KW",
                    "value": "NO_KW"
                },
                {
                    "label": "partycypacja TBS",
                    "value": "OTHER"
                },
                {
                    "label": "komunalne",
                    "value": "OTHER"
                },
                {
                    "label": "spółdzielcze-własnościowe prawo do lokalu",
                    "value": "OTHER"
                }
            ],
            "requried": true
        },
        {
            "label": "Numer KW",
            "value": "kwNumber",
            "type": "text",
            "requried": true,
            "parentValue": "propertyForm",
            "ifValueSelected": "KW"
        },
        {
            "label": "Można założyć KW?",
            "value": "canKW",
            "type": "boolean",
            "requried": true,
            "parentValue": "propertyForm",
            "ifValueSelected": "NO_KW"
        },
        {
            "label": "Czy wyjście do ogrodu jest bezpośrednio z jakiegoś pomieszczenia? Jakiego?",
            "value": "gardenExit",
            "type": "text",
            "requried": true
        },
        {
            "label": "Czy Podjazd utwardzony ?",
            "value": "isDrivewayPaved",
            "type": "boolean",
            "requried": true
        },
        {
            "label": "Czy dom znajduje się na zamkniętym osiedlu?",
            "value": "isGatedLocation",
            "type": "boolean",
            "requried": true
        },
        {
            "label": "Czy dom jest podpiwniczony?",
            "value": "isBasement",
            "type": "boolean",
            "requried": true
        }
    ],
    "surroundings": [
        {
            "label": "Czy jest coś blisko, co przysłania okna?",
            "value": "isBlockingWindows",
            "type": "boolean",
            "requried": true
        },
        {
            "label": "Czy okna wychodzą na ulicę?",
            "value": "isStreetFromWinodws",
            "type": "boolean",
            "requried": true
        },
        {
            "label": "Czy okna wychodzą na plac zabaw/Ośrodek Sportowy?",
            "value": "isPlaygroundFromWinodws",
            "type": "boolean",
            "requried": true
        },
        {
            "label": "Czy jest wiata śmietnikowa/pomieszczenie śmietnikowe? ",
            "value": "isGarbageRoom",
            "type": "boolean",
            "requried": true
        },
        {
            "label": "Jeśli tak, czy jest blisko okien? ",
            "value": "isGarbageRoomNearWindow",
            "type": "boolean",
            "requried": true,
            "ifValueTrue": "isGarbageRoom"
        },
        {
            "label": "Czy nieruchomość znajduje się w strefie płatnego parkowania? ",
            "value": "isPaidParking",
            "type": "boolean",
            "requried": true
        }
    ],
    "houseCondition": [
        {
            "label": "Stan ogólny",
            "value": "generalCondition",
            "type": "list",
            "options": [
                {
                    "label": "Bardzo zły",
                    "value": "VERY_BAD"
                },
                {
                    "label": "Zły",
                    "value": "BAD"
                },
                {
                    "label": "Umiarkowany",
                    "value": "MODERATE"
                },
                {
                    "label": "Dobry",
                    "value": "GOOD"
                },
                {
                    "label": "Bardzo dobry",
                    "value": "VERY_GOOD"
                },
                {
                    "label": "Doskonały",
                    "value": "PERFECT"
                }
            ],
            "requried": true
        },
        {
            "label": "Stan instalacji elektrycznej",
            "value": "electricanCondition",
            "type": "list",
            "options": [
                {
                    "label": "Miedziana nowoczesna",
                    "value": "COPPER_MODERN"
                },
                {
                    "label": "Miedziana starsza",
                    "value": "COPPER_OLD"
                },
                {
                    "label": "Aluminiowa",
                    "value": "ALUMINUM"
                }
            ],
            "requried": true
        },
        {
            "label": "Stan instalacji wodno-kanalizacyjnej",
            "value": "sewageCondition",
            "type": "list",
            "options": [
                {
                    "label": "Wymieniona",
                    "value": "REPLACED"
                },
                {
                    "label": "Do wymiany",
                    "value": "TO_EXCHANGE"
                }
            ],
            "requried": true
        },
        {
            "label": "Czy jest Kanalizacja/Szambo/Przydomowa Oczyszczalnia Ścieków?",
            "value": "isSewageTreatment",
            "type": "text",
            "requried": true
        },
        {
            "label": "Czy jest sprawna wentylacja?",
            "value": "isVentilationWorking",
            "type": "boolean",
            "requried": true
        },
        {
            "label": "Czy jest Rekuperacja?",
            "value": "isRecuperaton",
            "type": "boolean",
            "requried": true
        },
        {
            "label": "Typ okien",
            "value": "windowsType",
            "type": "list",
            "options": [
                {
                    "label": "PCV",
                    "value": "PCV"
                },
                {
                    "label": "Drewniane",
                    "value": "WOODEN"
                },
                {
                    "label": "Inne",
                    "value": "OTHER"
                }
            ],
            "requried": true
        },
        {
            "label": "Stan okien",
            "value": "windowsCondition",
            "type": "list",
            "options": [
                {
                    "label": "Do wymiany",
                    "value": "TO_EXCHANGE"
                },
                {
                    "label": "Dostateczny",
                    "value": "SUFFICIENT"
                },
                {
                    "label": "Świeżo po wymianie",
                    "value": "REPLACED"
                }
            ],
            "requried": true
        },
        {
            "label": "Dach",
            "value": "roof",
            "type": "list",
            "options": [
                {
                    "label": "Jednospadowy",
                    "value": "SINGLE_SLOPE"
                },
                {
                    "label": "Dwuspadowy",
                    "value": "GABLED"
                },
                {
                    "label": "Czterospadowy",
                    "value": "HIPPED"
                },
                {
                    "label": "Płaski",
                    "value": "FLAT"
                }
            ],
            "requried": true
        },
        {
            "label": "Stan dachu",
            "value": "roofCondition",
            "type": "list",
            "options": [
                {
                    "label": "Do natychmiastowego remontu",
                    "value": "FOR_IMMEDIATE_RENOVATION"
                },
                {
                    "label": "Do naprawy",
                    "value": "TO_FIXED"
                },
                {
                    "label": "Dobry",
                    "value": "GOOD"
                },
                {
                    "label": "Idealny",
                    "value": "PERFECT"
                },
                {
                    "label": "Nowy",
                    "value": "NEW"
                }
            ],
            "requried": true
        },
        {
            "label": "Izolacja Zewnętrzna",
            "value": "externalInsulation",
            "type": "list",
            "options": [
                {
                    "label": "Styropian",
                    "value": "STYROFOAM"
                },
                {
                    "label": "Wełna",
                    "value": "WOOL"
                },
                {
                    "label": "Inna",
                    "value": "OTHER"
                }
            ],
            "requried": true
        },
        {
            "label": "Jak Energochłonny jest Dom?",
            "value": "houseEnergyIntensive",
            "type": "list",
            "options": [
                {
                    "label": "1 - Bardzo energochłonny",
                    "value": "1"
                },
                {
                    "label": "2 - Energochłonny",
                    "value": "2"
                },
                {
                    "label": "3 - Umiarkowany",
                    "value": "3"
                },
                {
                    "label": "4 - Energooszczędny",
                    "value": "4"
                },
                {
                    "label": "5 - Pasywny",
                    "value": "5"
                }
            ],
            "requried": true
        },
        {
            "label": "Rodzaj podłóg",
            "value": "floorType",
            "type": "list",
            "options": [
                {
                    "label": "Panele",
                    "value": "PANELS"
                },
                {
                    "label": "Deska",
                    "value": "PLANK"
                },
                {
                    "label": "Parkiet",
                    "value": "PARQUET"
                },
                {
                    "label": "Deska barlinecka",
                    "value": "BARLINEK_BOARD"
                },
                {
                    "label": "Gres",
                    "value": "STONEWARE"
                },
                {
                    "label": "Panele winylowe",
                    "value": "VINYL_PANELS"
                },
                {
                    "label": "PVC",
                    "value": "PVC"
                },
                {
                    "label": "Żywica",
                    "value": "RESIN"
                },
                {
                    "label": "Inne",
                    "value": "OTHER"
                }
            ],
            "requried": true,
            "multiSelect": true
        },
        {
            "label": "Stan podłóg",
            "value": "floorCondition",
            "type": "list",
            "options": [
                {
                    "label": "Do wymiany",
                    "value": "TO_EXCHANGE"
                },
                {
                    "label": "Dostateczny",
                    "value": "SUFFICIENT"
                },
                {
                    "label": "Świeżo po wymianie",
                    "value": "REPLACED"
                }
            ],
            "requried": true
        },
        {
            "label": "Stan ścian i sufitów",
            "value": "wallsCondition",
            "type": "list",
            "options": [
                {
                    "label": "Do wymiany",
                    "value": "TO_EXCHANGE"
                },
                {
                    "label": "Dostateczny",
                    "value": "SUFFICIENT"
                },
                {
                    "label": "Świeżo po wymianie",
                    "value": "REPLACED"
                }
            ],
            "requried": true
        },
        {
            "label": "Stan Ogrodu",
            "value": "gardenCondition",
            "type": "list",
            "options": [
                {
                    "label": "Bardzo zaniedbany",
                    "value": "VERY_NEGLECTED"
                },
                {
                    "label": "Zaniedbany",
                    "value": "NEGLECTED"
                },
                {
                    "label": "Umiarkowany",
                    "value": "MODERATE"
                },
                {
                    "label": "Zadbany",
                    "value": "WELL_KEPT"
                },
                {
                    "label": "Bardzo zadbany",
                    "value": "VERY_WELL_KEPT"
                }
            ],
            "requried": true
        },
        {
            "label": "Czy na Działce są Duże Drzewa?",
            "value": "isBigTrees",
            "type": "boolean",
            "requried": true
        },
        {
            "label": "Czy Ujęcie Własne czy Woda Miejska?",
            "value": "waterType",
            "type": "list",
            "options": [
                {
                    "label": "Ujęcie własne",
                    "value": "OWN_TAKE"
                },
                {
                    "label": "Woda Miejska",
                    "value": "CITY_WATER"
                }
            ],
            "requried": true
        },
        {
            "label": "Czy jest umeblowane",
            "value": "isFurnished",
            "type": "boolean",
            "requried": true
        },
        {
            "label": "Jakie meble",
            "value": "furnitures",
            "type": "text",
            "requried": true
        }
    ],
    "extras": [
        {
            "label": "Czy jest Instalacja Fotowoltaiczna?",
            "value": "isPhotovoltaicInstallation",
            "type": "boolean",
            "requried": true
        },
        {
            "label": "Czy jest Magazyn Energii?",
            "value": "isEnergyStorage",
            "type": "boolean",
            "requried": true
        },
        {
            "label": "Czy jest Stacja do Ładowania Aut Elektrycznych?",
            "value": "isStationForElectricCars",
            "type": "boolean",
            "requried": true
        },
        {
            "label": "Czy w Domu Zastosowano Rozwiązania Inteligentne?",
            "value": "isSmartHome",
            "type": "list",
            "options": [
                {
                    "label": "Ogrzewanie",
                    "value": "HEATING"
                },
                {
                    "label": "Sterowanie oświetleniem",
                    "value": "LIGHTING_CONTROL"
                },
                {
                    "label": "Automatyczne rolety/zasłony",
                    "value": "AUTOMATIC_BLINDS"
                }
            ],
            "requried": true,
            "multiSelect": true
        },
        {
            "label": "Czy w Domu Zainstalowany został Monitoring?",
            "value": "isCCTV",
            "type": "boolean",
            "requried": true
        },
        {
            "label": "Czy został Zamontowany System Alarmowy?",
            "value": "isAlarm",
            "type": "boolean",
            "requried": true
        }
    ],
    "features": [
        {
            "label": "Czy na Działce/ w domu są...",
            "value": "isSmartHome",
            "type": "list",
            "options": [
                {
                    "label": "Grill",
                    "value": "GRILL"
                },
                {
                    "label": "Altanka",
                    "value": "ARBOR"
                },
                {
                    "label": "Schowek",
                    "value": "STORAGE"
                },
                {
                    "label": "Plac zabaw",
                    "value": "PLAYGROUND"
                },
                {
                    "label": "Boisko",
                    "value": "COURT"
                },
                {
                    "label": "Basen",
                    "value": "SWIMMING_POOL"
                },
                {
                    "label": "Sauna",
                    "value": "SWEAT_ROOM"
                },
                {
                    "label": "Pomieszczenie gospodarcze",
                    "value": "UTILITY_ROOM"
                },
                {
                    "label": "Szaklarnia/warzywniak",
                    "value": "GREENHOUSE"
                }
            ],
            "requried": true,
            "multiSelect": true
        },
        {
            "label": "Czy są miejsca do przechowywania?",
            "value": "isStorageSpace",
            "type": "boolean",
            "requried": true
        },
        {
            "label": "Typ Ogrzewania",
            "value": "heatingType",
            "type": "list",
            "options": [
                {
                    "label": "Gazowe",
                    "value": "GAS"
                },
                {
                    "label": "Pompa ciepła powietrzna",
                    "value": "AIR_HEAT_PUMP"
                },
                {
                    "label": "Pompa ciepła gruntowa",
                    "value": "GROUND_HEAT_PUMP"
                },
                {
                    "label": "Elektryczne",
                    "value": "ELECTRIC"
                },
                {
                    "label": "Miejskie",
                    "value": "URBAN"
                },
                {
                    "label": "Piec na węgiel",
                    "value": "COAL_FURNACE"
                },
                {
                    "label": "Piec na ekogroszek",
                    "value": "ECO_PEA_FURNACE"
                },
                {
                    "label": "Piec na pellet",
                    "value": "PELLET_FURNACE"
                },
                {
                    "label": "Inne",
                    "value": "OTHER"
                }
            ],
            "requried": true
        },
        {
            "label": "Ogrzewanie wody",
            "value": "waterHeatingType",
            "type": "list",
            "options": [
                {
                    "label": "Gazowe",
                    "value": "GAS"
                },
                {
                    "label": "Pompa ciepła",
                    "value": "HEAT_PUMP"
                },
                {
                    "label": "Elektryczne przepływowe",
                    "value": "ELECTRIC_FLOW"
                },
                {
                    "label": "Boiler",
                    "value": "BOILER"
                },
                {
                    "label": "Miejskie",
                    "value": "URBAN"
                },
                {
                    "label": "Inne",
                    "value": "OTHER"
                }
            ],
            "requried": true
        },
        {
            "label": "Czy jest klimatyzacja? ",
            "value": "isAirConditioning",
            "type": "boolean",
            "requried": true
        },
        {
            "label": "Czy są jakiekolwiek opłaty dodatkowe(np. fundusz remontowy, czynsz administracyjny, opłaty za prąd części wspólnych)",
            "value": "isAdditionalFees",
            "type": "text",
            "requried": false
        },
        {
            "label": "Zapotrzebowanie na energię cieplną wg. Świadectwa charakterystyki energetycznej",
            "value": "energyDemand",
            "type": "text",
            "requried": true
        }
    ],
    "location": [
        {
            "label": "W okolicy",
            "value": "inArea",
            "type": "list",
            "options": [
                {
                    "label": "Sklepy",
                    "value": "SHOPS"
                },
                {
                    "label": "Szkoły",
                    "value": "SCHOOLS"
                },
                {
                    "label": "Przystanki komunikacji publicznej",
                    "value": "PUBLIC_TRANSPORT_STOPS"
                },
                {
                    "label": "Park/tereny zielone",
                    "value": "PARKS"
                },
                {
                    "label": "Przychodnia",
                    "value": "CLINIC"
                },
                {
                    "label": "Apteka",
                    "value": "PHARMACY"
                },
                {
                    "label": "Szpital",
                    "value": "HOSPITAL"
                },
                {
                    "label": "Budynki kultury",
                    "value": "CULTURAL_BUILDINGS"
                },
                {
                    "label": "Centrum handlowe",
                    "value": "SHOPPING_MALL"
                }
            ],
            "requried": true,
            "multiSelect": true
        },
        {
            "label": "Skala ciszy w nieruchomości",
            "value": "silenceScale",
            "type": "list",
            "options": [
                {
                    "label": "Głośne",
                    "value": "LOUD"
                },
                {
                    "label": "Umiarkowane",
                    "value": "MODERATE"
                },
                {
                    "label": "Ciche",
                    "value": "QUIET"
                }
            ],
            "requried": true
        },
        {
            "label": "Bezpieczeństwo okolicy",
            "value": "areaSafety",
            "type": "list",
            "options": [
                {
                    "label": "Niebezpieczne",
                    "value": "DANGEROUS"
                },
                {
                    "label": "Umiarkowane",
                    "value": "MODERATE"
                },
                {
                    "label": "Bezpieczne",
                    "value": "SAFE"
                }
            ],
            "requried": true
        },
        {
            "label": "Miejscowy plan zagospodarowania przestrzennego?",
            "value": "localDevelopmentPlan",
            "type": "text",
            "requried": true
        }
    ],
    "otherAspects": [
        {
            "label": "Czy są Jakiekolwiek Problemy Prawne związane z nieruchomością",
            "value": "propertyLegalProblems",
            "type": "text",
            "requried": false
        },
        {
            "label": "Jakie są Koszty Utrzymania (np. opłaty za media, czynsz)",
            "value": "maintenanceCosts",
            "type": "text",
            "requried": true
        },
        {
            "label": "Czy jest Możliwość Negocjacji Ceny",
            "value": "priceNegotiate",
            "type": "text",
            "requried": false
        },
        {
            "label": "Czy są Miejsca Parkingowe dla Gości?",
            "value": "parkingForGuests",
            "type": "text",
            "requried": true
        },
        {
            "label": "Czy są Jakieś Planowane Budowy w Okolicy, które mogą Wpłynąć na Wartość Nieruchomości lub Jakość Życia (np. budowa drogi, stacji metra, centrum handlowego, itp.)?",
            "value": "arePlannedConstructions",
            "type": "text",
            "requried": false
        },
        {
            "label": "Czy jest dostęp do internetu i jakiej jakości?",
            "value": "internetAccess",
            "type": "list",
            "options": [
                {
                    "label": "Brak internetu",
                    "value": "NO_INTERNET"
                },
                {
                    "label": "Szerokopasmowy",
                    "value": "BROADBAND"
                },
                {
                    "label": "Radiowy",
                    "value": "RADIO"
                },
                {
                    "label": "Światłowód",
                    "value": "FIBER_OPTIC"
                },
                {
                    "label": "Inne",
                    "value": "OTHER"
                }
            ],
            "requried": true
        },
        {
            "label": "Jaka jest historia nieruchomości? Czy były jakiekolwiek poważne problemy lub naprawy w przeszłości, takie jak zalanie, pożar, remonty?",
            "value": "propertyHistory",
            "type": "text",
            "requried": false
        },
        {
            "label": "Czy są Jakiekolwiek Problemy z Szkodnikami?",
            "value": "pestProblems",
            "type": "text",
            "requried": true
        },
        {
            "label": "Czy są Jakiekolwiek Ograniczenia dotyczące Zmian w Nieruchomości? (np. czy budynek jest objęty ochroną konserwatora).",
            "value": "propertyRestrictions",
            "type": "text",
            "requried": false
        },
        {
            "label": "Czy są Jakiekolwiek Wspólne Obszary, takie jak Basen, Siłownia, Patio, itp.?",
            "value": "sharedAreas",
            "type": "text",
            "requried": true
        },
        {
            "label": "Czy jest strefa rewitalizacji lub inny pierwokup?",
            "value": "isRevitalizationAreas",
            "type": "boolean",
            "requried": true
        },
        {
            "label": "Jeśli tak to jakie?",
            "value": "revitalizationAreas",
            "type": "text",
            "requried": true,
            "ifValueTrue": "isRevitalizationAreas"
        }
    ]
}
List<Id> cliIds = new List<Id>();
for (ContractLineItem eachCli : [SELECT Id FROM ContractLineItem WHERE Product2.Name = 'SVC-PRMCARE' AND CEC_Status__c = 'Active' 
                                 AND Status = 'Active' AND AssetId NOT IN (SELECT AssetId FROM Entitlement WHERE Name = 'JUNIPER PREMIUM CARE SUPPORT') LIMIT 1000])
{
    cliIds.add(eachCli.Id);
}

CEC_CLI_EntitlementCreation.cecEntitlementCreation(cliIds);
REG LOAD HKLM\Default C:\Users\Default\NTUSER.DAT
 
# Removes Widgets from the Taskbar
New-itemproperty "HKLM:\Default\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "TaskbarDa" -Value "0" -PropertyType Dword
 
# Removes Chat from the Taskbar
New-itemproperty "HKLM:\Default\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "TaskbarMn" -Value "0" -PropertyType Dword
 
# Default StartMenu alignment 0=Left
New-itemproperty "HKLM:\Default\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "TaskbarAl" -Value "0" -PropertyType Dword
 
REG UNLOAD HKLM\Default
#include <iostream>

using namespace std;

int main()
{
    int n1;
    int n2;
    cout << "Type Your Range Numbers\n";
    cin >> n1;
    cin >> n2;
    if (n1 > n2)
    {
        for (int i = (n2 + 1); i < (n1 + 1); i++)
        {
        if (i % 2 != 0)
            {
               cout << i << "\n";
            }
        cout << "=================\n";
        
        }
    }
    if (n1 < n2)
    {
        for (int i = (n1 + 1); i < (n2 - 1); i++)
    {
        if (i % 2 != 0)
        {
           cout << i << "\n";
        }
        cout << "=================\n";
        
    }
    }

    
    

    /*for (int i = (n1 + 1); i < (n2 - 1); i++)
    {
        if (i % 2 != 0)
        {
           cout << i << "\n";
        }
        cout << "=================\n";
        
    } */
    
    /*
    Test Case 1
    Number One: 1
    Number Two: 9
    Output: 3, 5, 7
  
    Test Case 2
    Number One: 2
    Number Two: 15
    Output: 3, 5, 7, 9, 11, 13

    Test Case 3
    Number One: 8
    Number Two: 2
    Output: 3, 5, 7
    */
    return 0;
}
function removeChar(str) {
  return str.slice(1, -1);
}

//OR

var s = "0000test";
while(s.charAt(0) === '0')
{
 s = s.substring(1);
}
#include <iostream>

using namespace std;

int main()
{
    string products[] = {"Item 1", "Item 2", "Item3"};
    string sizes[] = {"Small", "Large", "X-Large"};
    
    for (int i = 0; i < 3; i++)
    {
        cout << "Product Name: \n";
        cout << products[i] << "\n";
        cout << "Sizes: \n";
        for(int j = 0; j < 3; j++)
        {
            cout << sizes[j];
            if(j < 2)
            {
                cout << ", ";
            }
        }
        cout << "\n";
        cout << "=====================\n";
    }
    return 0;
}
 [SOURCE CODE]

[WARD]

[PRIORITY]

[PATIENT TYPE CODE]

[YEAR]

[SEX]

[REQ ITEM ORDER DATETIME]
docker-compose up –d

docker-compose down –d
version: '3'
services:
db:
 image: mysql
 container_name: mysql_db
 restart: always
 environment:
    - MYSQL_ROOT_PASSWORD="test@123"
web:
image: apache-web
build: .
depends_on:
   - db
container_name: apache_web
restart: always
ports:
  - "8001:80"
version: '3'
services:
db:
 image: mysql
 container_name: mysql_db
 restart: always
 environment:
    - MYSQL_ROOT_PASSWORD="test@123"
web:
image: apache-web
build: .
depends_on:
   - db
container_name: apache_web
restart: always
ports:
  - "8001:80"
version: '3'
services:
db:
 image: mysql
 container_name: mysql_db
 restart: always
 environment:
    - MYSQL_ROOT_PASSWORD="test@123"
web:
image: apache-web
build: .
depends_on:
   - db
container_name: apache_web
restart: always
ports:
  - "8001:80"
<script>
  document.addEventListener('DOMContentLoaded', function () {
      var codeBlocks = document.querySelectorAll('pre code');

      codeBlocks.forEach(function (codeBlock) {
          var copyButton = document.createElement('button');
          copyButton.className = 'copy-button';
          copyButton.textContent = 'Copy';

          copyButton.addEventListener('click', function () {
              var textArea = document.createElement('textarea');
              textArea.value = codeBlock.textContent;
              document.body.appendChild(textArea);
              textArea.select();
              document.execCommand('copy');
              document.body.removeChild(textArea);

              copyButton.textContent = 'Copied!';
              setTimeout(function () {
                  copyButton.textContent = 'Copy';
              }, 2000);
          });

          codeBlock.parentNode.insertBefore(copyButton, codeBlock);
      });
  });
</script>
star

Wed Oct 11 2023 06:03:45 GMT+0000 (Coordinated Universal Time) https://colab.research.google.com/drive/1rZhSnQnWyigw4kgUQAFY3PQIO3HA6La2#scrollTo=sv6XyqFcTrxl

@20ucs113 #python

star

Wed Oct 11 2023 05:36:53 GMT+0000 (Coordinated Universal Time)

@davidmchale #javascript #ignorewrapper #click

star

Wed Oct 11 2023 05:09:24 GMT+0000 (Coordinated Universal Time) https://www.clarisco.com/decentraland-clone-script

@islajones123 #decentralandclone script #decentralandclone software

star

Wed Oct 11 2023 05:00:28 GMT+0000 (Coordinated Universal Time) https://www.clarisco.com/rarible-clone-script

@islajones123 #raribleclone script #raribleclone script development

star

Tue Oct 10 2023 23:39:23 GMT+0000 (Coordinated Universal Time)

@hamzakhan123

star

Tue Oct 10 2023 23:21:49 GMT+0000 (Coordinated Universal Time) https://app.slack.com/block-kit-builder/T49PT3R50#%7B%22blocks%22:%5B%7B%22type%22:%22header%22,%22text%22:%7B%22type%22:%22plain_text%22,%22text%22:%22:need-feedback::blob-hype:INTRODUCING:%20THE%20HAPPINESS%20RADAR:blob-hype::need-feedback:%22%7D%7D,%7B%22type%22:%22context%22,%22elements%22:%5B%7B%22text%22:%22*October%2011,%202023*%20%20%7C%20%20WX%20Announcements%22,%22type%22:%22mrkdwn%22%7D%5D%7D,%7B%22type%22:%22divider%22%7D,%7B%22type%22:%22section%22,%22text%22:%7B%22type%22:%22mrkdwn%22,%22text%22:%22We%20have%20something%20new%20and%20fantastic%20to%20share%20with%20you.%20We're%20thrilled%20to%20introduce%20the%20:sparkles:*Happiness%20Radar*:sparkles:%5Cn%5Cn%5Cn%20*What%20is%20the%20Happiness%20Radar,%20you%20ask?*:blob_thinking:%20%5Cn%5Cn%20Our%20incredible%20Grads%20in%20Wellington%20have%20been%20hard%20at%20work,%20and%20they've%20created%20a%20super%20user-friendly%20and%20straightforward%20way%20for%20you%20to%20share%20your%20feedback%20on%20how%20much%20you%20enjoy%20our%20Socials%20and%20events.%20Our%20Auckland%20office%20has%20the%20honour%20of%20being%20the%20first%20to%20trial%20the%20Happiness%20Radar,%20just%20in%20time%20for%20Friday%20Social!%20%5Cn%5Cn%20Using%20smileys,%20you%20can%20let%20us%20know%20how%20much%20you%20enjoyed%20a%20particular%20experience%20or%20event.%20It%20will%20be%20conveniently%20accessible%20on%20iPads,%20with%20one%20stationed%20in%20the%20kitchen%20area%20and%20another%20positioned%20at%20the%20entrance.%20All%20you%20have%20to%20do%20is%20use%20smileys%20to%20let%20us%20know%20how%20much%20you%20enjoyed%20the%20social.We%20genuinely%20value%20your%20opinions,%20and%20this%20is%20fantastic%20way%20to%20make%20your%20voice%20heard!%5Cn%5Cn%5Cn%20We%20can't%20wait%20to%20hear%20from%20you%20and%20continue%20to%20bring%20you%20amazing%20experiences!%20%5Cn%5Cn%5Cn%20*Thank%20you,*%5Cn%5Cn%20*WX*:wx:%22%7D%7D,%7B%22type%22:%22divider%22%7D%5D%7D

@FOHWellington

star

Tue Oct 10 2023 22:33:56 GMT+0000 (Coordinated Universal Time)

@hamzakhan123

star

Tue Oct 10 2023 21:08:01 GMT+0000 (Coordinated Universal Time)

@hamzakhan123

star

Tue Oct 10 2023 20:26:35 GMT+0000 (Coordinated Universal Time)

@hallancma #apex #javascript

star

Tue Oct 10 2023 18:12:04 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Tue Oct 10 2023 18:10:13 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Tue Oct 10 2023 18:08:55 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Tue Oct 10 2023 18:07:04 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Tue Oct 10 2023 15:40:47 GMT+0000 (Coordinated Universal Time)

@bisratekle

star

Tue Oct 10 2023 15:29:06 GMT+0000 (Coordinated Universal Time) https://profitkommando.de/wp-admin/post-new.php?post_type

@soldan6 #undefined

star

Tue Oct 10 2023 14:59:18 GMT+0000 (Coordinated Universal Time)

@yolobotoffender

star

Tue Oct 10 2023 14:44:39 GMT+0000 (Coordinated Universal Time)

@DxBros #trees #topologicalsort #minimumheighttrees #bfs

star

Tue Oct 10 2023 14:44:27 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Tue Oct 10 2023 14:43:07 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Tue Oct 10 2023 14:22:18 GMT+0000 (Coordinated Universal Time)

@TestProSupport

star

Tue Oct 10 2023 14:17:37 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Tue Oct 10 2023 14:16:54 GMT+0000 (Coordinated Universal Time)

@TestProSupport

star

Tue Oct 10 2023 14:16:17 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Tue Oct 10 2023 14:15:31 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Tue Oct 10 2023 14:13:29 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Tue Oct 10 2023 14:11:16 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Tue Oct 10 2023 14:09:23 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Tue Oct 10 2023 14:08:20 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Tue Oct 10 2023 14:05:27 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Tue Oct 10 2023 14:03:18 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Tue Oct 10 2023 13:59:44 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Tue Oct 10 2023 13:54:45 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Tue Oct 10 2023 13:36:11 GMT+0000 (Coordinated Universal Time)

@yolobotoffender

star

Tue Oct 10 2023 12:22:33 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Tue Oct 10 2023 11:38:41 GMT+0000 (Coordinated Universal Time)

@krzysztofzalesk

star

Tue Oct 10 2023 11:16:57 GMT+0000 (Coordinated Universal Time)

@kchan

star

Tue Oct 10 2023 11:08:47 GMT+0000 (Coordinated Universal Time) https://superuser.com/questions/1773865/registry-taskbar-settings-for-default-user

@See182

star

Tue Oct 10 2023 11:03:31 GMT+0000 (Coordinated Universal Time)

@akaeyad

star

Tue Oct 10 2023 09:18:25 GMT+0000 (Coordinated Universal Time) https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0/solutions/javascript

@Paloma

star

Tue Oct 10 2023 08:33:24 GMT+0000 (Coordinated Universal Time)

@akaeyad

star

Tue Oct 10 2023 08:09:53 GMT+0000 (Coordinated Universal Time)

@HUMRARE7 #sql #vba #ilink #lis #gqry

star

Tue Oct 10 2023 08:00:12 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Tue Oct 10 2023 07:52:23 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041

star

Tue Oct 10 2023 07:46:37 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041

star

Tue Oct 10 2023 07:46:37 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041

star

Tue Oct 10 2023 07:43:24 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041

star

Tue Oct 10 2023 07:39:52 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041

star

Tue Oct 10 2023 07:34:36 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041

star

Tue Oct 10 2023 07:22:50 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension