Snippets Collections
coco/
└── annotations/
    └── coco_annotations.json
coco_to_yolo.py
coco_converted/
├── images/
└── labels/
    └── coco_annotations/
        └── image1.txt
        └── image2.txt
python coco_to_yolo.py
.\venv\Scripts\activate.ps1
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
 
typedef struct
{
    char **arr;
    int size;
} Arr;
 
typedef struct
{
    char *Name;
    int Count;
    float Rating;
} Product;
 
Arr input(FILE *f);
 
int main(void)
{
    Arr nouns;
    Arr adj;
 
    Product pr1;
 
    FILE *fn;
    FILE *fa;
    FILE *out;
 
    char *name;
    int i;
    int j;
    int n;
    int a;
 
    srand(time(NULL));
 
    fn = fopen("noun.txt", "r");
 
    if (fn == NULL)
    {
        printf("Error openning file");
        return 1;
    }
 
    fa = fopen("adj.txt", "r");
    
    if(fa == NULL)
    {
        printf("Error openning file");
        fclose(fn);
        return 1;
    }
 
    out = fopen("output.txt", "w");
 
    if(fgetc(fn) == EOF || fgetc(fa) == EOF)
    {
        fclose(fn);
        fclose(fa);
        fclose(out);
        printf("file is empty!");
        return 1;
    }
    else
    {
        fseek(fn, 0, SEEK_SET);
        fseek(fa, 0, SEEK_SET);
    }
 
    nouns = input(fn);
    adj = input(fa);
 
    n = rand() % nouns.size;
    a = rand() % adj.size;
 
    pr1.Count = rand() % 100;
    pr1.Rating = (float)(rand() % 100) / 10.0; // Generating a float rating between 0 and 10
 
    name = malloc(sizeof(char));
 
    i = 0;
    j = 0;
 
    while (1)
    {
        if (adj.arr[a][i] != '\0')
        {
            name = realloc(name, sizeof(char) * (i + 1));
            name[i] = adj.arr[a][i];
            i++;
        }
        else
        {
            name = realloc(name, sizeof(char) * (i + 1));
            name[i] = ' ';
            i++;
            break;
        }
    }
 
    while (1)
    {
        if (nouns.arr[n][j] != '\0')
        {
            name = realloc(name, sizeof(char) * (i + 1));
            name[i] = nouns.arr[n][j];
            i++;
            j++;
        }
        else
        {
            name = realloc(name, sizeof(char) * (i + 1));
            name[i] = '\0';
            break;
        }
    }
    pr1.Name = name;
 
    fprintf(out, "%s %d %.1f", pr1.Name, pr1.Count, pr1.Rating);
 
    free(name);
    for (int k = 0; k < nouns.size; k++)
    {
        free(nouns.arr[k]);
    }
    for (int k = 0; k < adj.size; k++)
    {
        free(adj.arr[k]);
    }
    free(nouns.arr);
    free(adj.arr);
 
    fclose(fn);
    fclose(fa);
    fclose(out);
 
    return 0;
}
 
Arr input(FILE *f)
{
    char **arr;
    char r;
    int size_w = 0;
    int count_w = 0;
 
    arr = malloc(sizeof(char *));
    arr[0] = malloc(sizeof(char));
 
    while ((r = fgetc(f)) != EOF)
    {
        if (r != '\0' && r != ' ')
        {
            if (r == '\n')
            {
                arr[count_w] = realloc(arr[count_w], (size_w + 1) * sizeof(char));
                arr[count_w][size_w] = '\0';
                count_w += 1;
                arr = realloc(arr, (count_w + 1) * sizeof(char *));
                arr[count_w] = malloc(sizeof(char));
                size_w = 0;
            }
            else
            {
                arr[count_w] = realloc(arr[count_w], (size_w + 1) * sizeof(char));
                arr[count_w][size_w] = r;
                size_w += 1;
            }
        }
    }
    count_w++;
    return (Arr){arr, count_w};
}
cd path\to\your\project\directory
coco/
└── annotations/
    └── coco_annotations.json
coco_to_yolo.py
from ultralytics.data.converter import convert_coco
convert_coco(labels_dir='annotations', use_segments=True)
coco/
└── annotations/
    └── coco_annotations.json
 {
      "id": 9,
      "width": 359,
      "height": 269,
      "file_name": "dog.4121.jpg",
      "license": 0,
      "flickr_url": "",
      "coco_url": "",
      "date_captured": 0
    },
    {
      "id": 10,
      "width": 200,
      "height": 297,
      "file_name": "dog.4123.jpg",
      "license": 0,
      "flickr_url": "",
      "coco_url": "",
      "date_captured": 0
    }
  ],
  "annotations": [
    {
      "id": 1,
      "image_id": 1,
      "category_id": 1,
      "segmentation": [
        [
          479.0, 63.0, 471.0, 63.0, 463.0, 69.0, 460.0, 75.0, 460.0, 86.0,
          450.0, 101.0, 425.0, 110.0, 415.0, 116.0, 398.0, 120.0, 392.0, 120.0,
          390.0, 118.0, 389.0, 106.0, 386.0, 101.0, 385.0, 69.0, 381.0, 63.0,
          372.0, 66.0, 345.0, 86.0, 333.0, 87.0, 326.0, 90.0, 309.0, 90.0,
          295.0, 86.0, 286.0, 86.0, 283.0, 89.0, 283.0, 100.0, 289.0, 111.0,
          289.0, 116.0, 283.0, 123.0, 276.0, 143.0, 264.0, 159.0, 250.0, 172.0,
          223.0, 213.0, 206.0, 247.0, 192.0, 286.0, 186.0, 324.0, 191.0, 335.0,
          190.0, 353.0, 197.0, 362.0, 218.0, 370.0, 237.0, 374.0, 257.0, 375.0,
          277.0, 380.0, 293.0, 377.0, 296.0, 369.0, 292.0, 357.0, 307.0, 342.0,
          314.0, 331.0, 323.0, 308.0, 323.0, 286.0, 325.0, 284.0, 330.0, 288.0,
          333.0, 307.0, 337.0, 316.0, 342.0, 321.0, 355.0, 323.0, 360.0, 318.0,
          363.0, 309.0, 360.0, 277.0, 353.0, 262.0, 339.0, 250.0, 343.0, 235.0,
          354.0, 222.0, 364.0, 193.0, 372.0, 183.0, 392.0, 168.0, 409.0, 163.0,
          427.0, 152.0, 445.0, 135.0, 475.0, 112.0, 483.0, 87.0, 483.0, 70.0
        ]
      ],
var xmlResponse = '<?xml version="1.0" encoding="UTF-8"?> <data code="0" name="piece-shipment-list" request-id="f1fc982b-fd81-4b63-92ae-eb60d1dd9262"> <data airway-bill-number="" delivery-event-flag="1" dest-country="DE" division="DPEED" domestic-id="" error-status="0" event-country="DE" event-location="" ice="DLVRD" identifier-type="2" international-flag="0" leitcode="" matchcode="" name="piece-shipment" order-preferred-delivery-day="false" origin-country="DE" pan-recipient-address="Heinrich-Brüning-Str. 7 53113 Bonn" pan-recipient-city="53113 Bonn" pan-recipient-name="Deutsche Post DHL" pan-recipient-postalcode="53113" pan-recipient-street="Heinrich-Brüning-Str. 7" piece-code="00340434161094022115" piece-customer-reference="" piece-id="8e464a3e-219a-459b-823b-07d9d92732e3" piece-identifier="340434161094022115" product-code="00" product-key="" product-name="DHL PAKET (parcel)" pslz-nr="5066934803" recipient-city="53113 Bonn" recipient-id="5" recipient-id-text="different person present" recipient-name="Kraemer" recipient-street="Heinrich-Brüning-Str. 7" ric="OTHER" routing-code-ean="" ruecksendung="false" searched-piece-code="00340434161094022115" searched-ref-no="" shipment-code="" shipment-customer-reference="" shipment-height="0.0" shipment-length="0.0" shipment-weight="0.0" shipment-width="0.0" shipper-address="" shipper-city="" shipper-name="No sender data has been transferred to DHL." shipper-street="" short-status="Delivery successful" standard-event-code="ZU" status="The shipment has been successfully delivered" status-liste="0" status-timestamp="18.03.2016 10:02" upu=""> <data _build-time="2017-01-14 19:56:42.000775" leitcode="5311304400700" name="piece-event-list" order-preferred-delivery-day="false" piece-id="8e464a3e-219a-459b-823b-07d9d92732e3" piece-identifier="340434161094022115" pslz-nr="5066934803" routing-code-ean="" ruecksendung="false"> <data event-country="Germany" event-location="Bremen" event-short-status="Posting at PACKSTATION" event-status="The shipment has been posted by the sender at the PACKSTATION" event-text="The shipment has been posted by the sender at the PACKSTATION" event-timestamp="17.03.2016 11:43" ice="SHRCU" name="piece-event" ric="PCKST" ruecksendung="false" standard-event-code="ES" /> <data event-country="Germany" event-location="Bremen" event-short-status="Transportation to parcel center of origin" event-status="The shipment has been taken from the PACKSTATION for onward transportation" event-text="The shipment has been taken from the PACKSTATION for onward transportation" event-timestamp="17.03.2016 13:53" ice="LDTMV" name="piece-event" ric="MVMTV" ruecksendung="false" standard-event-code="AA" /> <data event-country="Germany" event-location="" event-short-status="Pick-up successful" event-status="The shipment has been picked up" event-text="The shipment has been picked up" event-timestamp="17.03.2016 13:55" ice="PCKDU" name="piece-event" ric="PUBCR" ruecksendung="false" standard-event-code="AE" /> <data event-country="Germany" event-location="Bremen" event-short-status="Parcel center of origin" event-status="The shipment has been processed in the parcel center of origin" event-text="The shipment has been processed in the parcel center of origin" event-timestamp="17.03.2016 15:49" ice="LDTMV" name="piece-event" ric="MVMTV" ruecksendung="false" standard-event-code="AA" /> <data event-country="Germany" event-location="Neuwied" event-short-status="Destination parcel center" event-status="The shipment has been processed in the destination parcel center" event-text="The shipment has been processed in the destination parcel center" event-timestamp="18.03.2016 03:35" ice="ULFMV" name="piece-event" ric="UNLDD" ruecksendung="false" standard-event-code="EE" /> <data event-country="" event-location="" event-short-status="In delivery" event-status="The shipment has been loaded onto the delivery vehicle" event-text="The shipment has been loaded onto the delivery vehicle" event-timestamp="18.03.2016 09:00" ice="SRTED" name="piece-event" ric="NRQRD" ruecksendung="false" standard-event-code="PO" /> <data event-country="Germany" event-location="Bonn" event-short-status="Delivery successful" event-status="The shipment has been successfully delivered" event-text="The shipment has been successfully delivered" event-timestamp="18.03.2016 10:02" ice="DLVRD" name="piece-event" ric="OTHER" ruecksendung="false" standard-event-code="ZU" /> </data> </data> </data>';

// Parse the XML response
var parser = new XMLDocument2();
parser.parseXML(xmlResponse);

// Get the value of the "short-status" attribute from the <data> element
var shortStatus = parser.getNode('/data/data').getAttribute('short-status');;

// Print the value of the "short-status" attribute
gs.info("Short Status: " + shortStatus);
import React from 'react'
import { CardElement, Elements, StripeProvider } from '@stripe/react-stripe-js'
import { loadStripe } from '@stripe/stripe-js'

const stripePromise = loadStripe('<YOUR_STRIPE_PUBLISHABLE_KEY>')

const PaymentForm = () => {
  return (
    <CardElement />
  )
}

const App = () => {
  return (
    <StripeProvider stripe={stripePromise}>
      <Elements>
        <PaymentForm />
      </Elements>
    </StripeProvider>
  )
}

export default App
get 
app.get('/products', (req, res) => {
  const products = [
    {
      id: 1,
      name: 'Furniture 1',
      price: 1000,
      size: 'L',
      fabricTexture: 'Smooth',
      woodTexture: 'Polished',
      woodType: 'Oak',
      fabricType: 'Cotton',
    },
    // ... more products
  ];

  res.send(products);
});

post
app.post('/products', (req, res) => {
  const newProduct = {
    id: Date.now(),
    name: req.body.name,
    price: req.body.price,
    size: req.body.size,
    fabricTexture: req.body.fabricTexture,
    woodTexture: req.body.woodTexture,
    woodType: req.body.woodType,
    fabricType: req.body.fabricType,
  };

  const products = [
    {
      id: 1,
      name: 'Furniture 1',
      price: 1000,
      size: 'L',
      fabricTexture: 'Smooth',
      woodTexture: 'Polished',
      woodType: 'Oak',
      fabricType: 'Cotton',
    },
    // ... more products
  ];

  products.push(newProduct);

  res.send(newProduct);
});

get by id 
app.get('/products/:id', (req, res) => {
  const products = [
    {
      id: 1,
      name: 'Furniture 1',
      price: 1000,
      size: 'L',
      fabricTexture: 'Smooth',
      woodTexture: 'Polished',
      woodType: 'Oak',
      fabricType: 'Cotton',
    },
    // ... more products
  ];

  const product = products.find((p) => p.id === parseInt(req.params.id));

  if (!product) {
    return res.status(404).send({ error: 'Product not found' });
  }

  res.send(product);
});

put
app.put('/products/:id', (req, res) => {
  const products = [
    {
      id: 1,
      name: 'Furniture 1',
      price: 1000,
      size: 'L',
      fabricTexture: 'Smooth',
      woodTexture: 'Polished',
      woodType: 'Oak',
      fabricType: 'Cotton',
      updated: false,
    },
    // ... more products
  ];

  const product = products.find((p) => p.id === parseInt(req.params.id));

  if (!product) {
    return res.status(404).send({ error: 'Product not found' });
  }

  product.name = req.body.name || product.name;
  product.price = req.body.price || product.price;
  product.size = req.body.size || product.size;
  product.fabricTexture = req.body.fabricTexture || product.fabricTexture;
  product.woodTexture = req.body.woodTexture || product.woodTexture;
  product.woodType = req.body.woodType || product.woodType;
  product.fabricType = req.body.fabricType || product.fabricType;

  res.send(product);
});
---------------------------------------------------------------------------------------------------
https://www.slideshare.net/AvinashKumar896/a-seminar-report-on-artificial-intelligence
---------------------------------------------------------------------------------------------------
https://www.slideshare.net/sachinkumar831/sophia-robot
---------------------------------------------------------------------------------------------------
  
green comuting --> 
 
  https://blogs.nvidia.com/blog/what-is-green-computing/#:~:text=Green%20computing%2C%20or%20sustainable%20computing,software%20are%20designed%20and%20used.
---------------------------------------------------------------------------------------------------
  
// Online C compiler to run C program online
#include <stdio.h>

int main() {
    int a;
    int b;
    
    printf("Enter marks from part 1 :");
    scanf("%d",&a);
    
    printf("Enter marks from part 2: ");
    scanf("%d",&b);
    
    int totalMarks =(a+b)/2;
    printf("Total marks of the paper: %d\n",totalMarks);
    
if(totalMarks>=75){
        printf("Grade: A");
    }
    else if(totalMarks>=65){
        printf("Grade: B");
    }else if(totalMarks>=55){
        printf("Grade: C");
    }else if(totalMarks>=35){
        printf("Grade: S");
    }else{
        printf("fail");
    }
    return 0 ;
}
# Remove break line in sequences
awk '/^>/ { print (NR==1 ? "" : RS) $0; next } { printf "%s", $0 } END { printf RS }' input.fa > output.fa
// Assuming you have a model for the table you want to insert into
$model = new YourModel;
$model->packages = json_encode(request('packages')); // Store the selected packages as a JSON array
$model->save();


===================
  $packages = json_decode($model->packages);
#include<stdio.h>
int main(){
     int a;
     int b;
     
     
     printf("Enter number for a:");
     scanf("%d",&a);
     
     printf("Enter number for b:");
     scanf("%d",&b);
     
     int value = a+b;
     printf("The value is: %d\n",value);
    
    
    
    return 0;
}
<div class="enhanceable_content tabs" title="ingesloten inhoud">
    <ul style="list-style-type: none; padding: 0; margin: 0;">
        <li style="display: inline-block; background-color: red; padding: 10px 20px; border-radius: 10px;"><a style="text-decoration: none; color: white; font-family: 'Arial', sans-serif;" href="#fragment-1">Tabblad 1</a></li>
        <li style="display: inline-block; background-color: red; padding: 10px 20px; border-radius: 10px;"><a style="text-decoration: none; color: white; font-family: 'Arial', sans-serif;" href="#fragment-2">Tabblad 2</a></li>
        <li style="display: inline-block; background-color: red; padding: 10px 20px; border-radius: 10px;"><a style="text-decoration: none; color: white; font-family: 'Arial', sans-serif;" href="#fragment-3">Tabblad 3</a></li>
        <li style="display: inline-block; background-color: red; padding: 10px 20px; border-radius: 10px;"><a style="text-decoration: none; color: white; font-family: 'Arial', sans-serif;" href="#fragment-4">Tabblad 4</a></li>
        <li style="display: inline-block; background-color: red; padding: 10px 20px; border-radius: 10px;"><a style="text-decoration: none; color: white; font-family: 'Arial', sans-serif;" href="#fragment-5">Tabblad 5</a></li>
    </ul>
    <div id="fragment-1">
        <p>INHOUD 1</p>
    </div>
    <div id="fragment-2">
        <p>INHOUD 2</p>
    </div>
    <div id="fragment-3">
        <p>INHOUD 3</p>
    </div>
    <div id="fragment-4">
        <p>INHOUD 4</p>
    </div>
    <div id="fragment-5">
        <p>INHOUD 5</p>
    </div>
</div>
<div class="enhanceable_content tabs" title="ingesloten inhoud">
    <ul>
        <li><a href="#fragment-1">Regulier traject</a></li>
        <li><a href="#fragment-2">Afstandstraject</a></li>
    </ul>
    <div id="fragment-1">
        <p>INHOUD REGULIER TRAJECT</p>
    </div>
    <div id="fragment-2">
        <p>INHOUD AFSTANDSTRAJECT</p>
    </div>
</div>
//Groene knop (OLO)
<a href="HIER JOUW LINK" class="btn btn-large btn-primary" style="background-color: #5ab946;">Voorbeeld 1</a>
//Lichtgroen knop (OLO)
<a href="HIER JOUW LINK" class="btn btn-large btn-primary" style="background-color: #bfd200;">Voorbeeld 2</a>
//Donkergroene knop (OSO)
<a href="HIER JOUW LINK" class="btn btn-large btn-success" style="background-color: #008b00;">Voorbeeld 3</a>
//Oranje knop
<a href="HIER JOUW LINK" class="btn btn-large btn-warning" style="background-color: #f26a34;">Voorbeeld 4</a>
//Blauwe knop
<a href="HIER JOUW LINK" class="btn btn-large btn-primary">Voorbeeld 5</a>
git filter-branch --tree-filter 'rm -f test_data_recommendation.csv' HEAD
git clone -b minha-branch https://gitlab.com/seu_usuario/seu_repositorio.git

git rm --cached nome_do_arquivo

git rm -r --cached nome_da_pasta
jennyca@htb[/htb]$ tree .

.
└── Penetration-Testing
	│
	├── Pre-Engagement
	│       └── ...
    ├── Network-Pentesting
	│       ├── Linux
	│       │   ├── Information-Gathering
	│		│   │   └── ...
	│       │   ├── Vulnerability-Assessment
    │       │   │	└── ...
    │       │	└── ...
    │       │    	└── ...
    │		├── Windows
    │ 		│   ├── Information-Gathering
    │		│   │   └── ...
    │		│   └── ...
    │       └── ...
    ├── WebApp-Pentesting
	│       └── ...
    ├── Social-Engineering
	│       └── ...
    ├── .......
	│       └── ...
    ├── Reporting
    │   └── ...
	└── Results
	    └── ...
jennyca@htb[/htb]$ tree .

.
└── Penetration-Testing
	│
	├── Pre-Engagement
	│       └── ...
    ├── Network-Pentesting
	│       ├── Linux
	│       │   ├── Information-Gathering
	│		│   │   └── ...
	│       │   ├── Vulnerability-Assessment
    │       │   │	└── ...
    │       │	└── ...
    │       │    	└── ...
    │		├── Windows
    │ 		│   ├── Information-Gathering
    │		│   │   └── ...
    │		│   └── ...
    │       └── ...
    ├── WebApp-Pentesting
	│       └── ...
    ├── Social-Engineering
	│       └── ...
    ├── .......
	│       └── ...
    ├── Reporting
    │   └── ...
	└── Results
	    └── ...
const str = 'abcab';

const freq = (str) => 
    str.split('').reduce((obj, char) => {
        obj[char] = (obj[char] || 0) + 1;
        return obj;
    }, {})

console.log(freq('zCu3zezCaX'));
function generate_gallery_tab_navigation($atts)
{
    $args = array(
        'taxonomy' => 'gallery_category',
        'hide_empty' => -1,
        'orderby' => 'name',
        'order' => 'ASC'
    );

    $categories = get_categories($args);

    ob_start(); ?>

    <div class="project-tabs-wrapper">
        <ul class="nav nav-pills mb-3" id="pills-tab" role="tablist">
            <?php if (!empty ($categories)): ?>
                <?php $nav_counter = 1; ?>
                <?php foreach ($categories as $category): ?>
                    <li class="nav-item" role="presentation">
                        <button class="nav-link <?php echo ($nav_counter === 1) ? 'active' : ''; ?>"
                            id="pills-<?php echo $category->slug; ?>-tab" data-bs-toggle="pill"
                            data-bs-target="#pills-<?php echo $category->slug; ?>" type="button" role="tab"
                            aria-controls="pills-<?php echo $category->slug; ?>"
                            aria-selected="<?php echo ($nav_counter === 1) ? 'true' : 'false'; ?>">
                            <?php echo $category->name; ?>
                        </button>
                    </li>
                    <?php $nav_counter++; ?>
                <?php endforeach; ?>
            <?php endif; ?>
        </ul>
    </div>

    <?php
    return ob_get_clean();
}
add_shortcode('gallery_tab_navigation', 'generate_gallery_tab_navigation');

function generate_gallery_tab_content($atts)
{
    $args = array(
        'post_type' => 'gallery',
        'posts_per_page' => -1,
        'order' => 'ASC',
    );

    $gallery_posts = new WP_Query($args);

    ob_start(); ?>

    <div class="tab-content" id="pills-tabContent">
        <?php if ($gallery_posts->have_posts()): ?>
            <?php 
            $active_set = false;
            while ($gallery_posts->have_posts()): $gallery_posts->the_post();
                $categories = get_the_terms(get_the_ID(), 'gallery_category');
                if ($categories): ?>
                    <?php foreach ($categories as $category): ?>
                        <div class="tab-pane fade <?php echo (!$active_set) ? 'show active' : ''; ?>"
                             id="pills-<?php echo $category->slug; ?>" role="tabpanel"
                             aria-labelledby="pills-<?php echo $category->slug; ?>-tab">
                            <div class="gallerys">
                                <div class="row">
                                    <?php 
                                    $category_posts_args = array(
                                        'post_type' => 'gallery',
                                        'posts_per_page' => -1,
                                        'tax_query' => array(
                                            array(
                                                'taxonomy' => 'gallery_category',
                                                'field' => 'term_id',
                                                'terms' => $category->term_id,
                                            ),
                                        ),
                                    );
                                    $category_posts = new WP_Query($category_posts_args);
                                    if ($category_posts->have_posts()): ?>
                                        <?php while ($category_posts->have_posts()): $category_posts->the_post(); ?>
                                            <div class="col-md-4 gall-img">
                                                <div class="gallery_inner">
                                                    <a class="fancybox" data-fancybox="gallery"
                                                       href="<?php echo wp_get_attachment_url(get_post_thumbnail_id()); ?>">
                                                        <?php the_post_thumbnail(); ?>
                                                    </a>
                                                </div>
                                            </div>
                                        <?php endwhile; ?>
                                    <?php endif; ?>
                                </div>
                            </div>
                        </div>
                        <?php 
                        $active_set = true;
                        ?>
                    <?php endforeach; ?>
                <?php endif; ?>
            <?php endwhile; ?>
        <?php endif; ?>
    </div>

    <?php
    wp_reset_postdata();
    return ob_get_clean();
}
add_shortcode('gallery_tab_content', 'generate_gallery_tab_content');

n=int(input("enter no.of elements: "))
m1=[]
for i in range (n):
    x=int(input())
    m1.append(x)
print (m1)
c=int(input("enter no.of elements present in list"))
r=int(input("enter no.of elements presend in sub list"))
m1=[]
for i in range (c):
    n=[]
    for j in range (r):
        x=int(input())
        n.append(x)
    
    m1.append(n)
print (m1)
<!-------- // -------- FareHarbor Lightframe API and Floating Book Now Button -------- // -------->
<script src="https://fareharbor.com/embeds/api/v1/?autolightframe=yes"></script>

<!-- Fareharbor floating button on specific pages only -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    var allowedPages = [
        "https://chateaufeely.com/visits/feely-organic-wine-tours-options/",
        "https://chateaufeely.com/visits/",
        "https://chateaufeely.com/visits/courtes/",
        "https://chateaufeely.com/visits/half-day/",
        "https://chateaufeely.com/visits/day-tours/",
        "https://chateaufeely.com/fr/visites/",
        "https://chateaufeely.com/fr/visites/courtes/",
        "https://chateaufeely.com/fr/visites/demie-journee/",
        "https://chateaufeely.com/fr/visites/journee/"
    ];

    function isAllowedPage() {
        var currentPage = window.location.href;
        return allowedPages.includes(currentPage);
    }

    if(isAllowedPage()) {
        var buttonText;
        if (window.location.href.includes("/fr/")) {
            buttonText = "RÉSERVEZ";
        } else {
            buttonText = "BOOK NOW";
        }

        var buttonDesktop = $('<a>', {
            href: "https://fareharbor.com/embeds/book/chateaufeely/?full-items=yes",
            text: buttonText,
            class: "fh-hide--mobile fh-font--inherit fh-color--white fh-fixed--side fh-icon--cal fh-button-true-flat-color",
            style: "font-weight:bold !important; letter-spacing: .7px !important; border-radius: 3px !important; box-shadow:none !important; transform:rotate(0deg) !important; margin-top: 8em !important; padding: .5em 1.4em .3em 1.4em !important;"
        });
        var buttonMobile = $('<a>', {
            href: "https://fareharbor.com/embeds/book/chateaufeely/?full-items=yes",
            text: buttonText,
            class: "fh-hide--desktop fh-size--small fh-fixed--side fh-button-true-flat-color fh-color--white",
            style: "font-family: !important; font-weight:bold !important; letter-spacing: .7px !important; box-shadow:none !important; padding: 0em 2em !important;"
        });

        $('body').append(buttonDesktop);
        $('body').append(buttonMobile);
    }
});
</script>
<div class="map">
	<iframe src="{{Locations.0.MapUrl}}" width="100%" frameborder="0"></iframe>
</div>
 downloadPdfByType:(type = "") => {
        const data = {
            "employment_page":employment_page,
            "trust_and_will_page":trust_and_will_page,
            "power_of_attorney_page":powerAttorney,
            "life_insurance":life_Insurance,
            "safe_deposit_page":safe_deposit_page,
            "business_page":business_page,
            "jewelry-inventory":jewelry_inventory,
            "real_estate_page":real_estate,
            "letter_to_loved_ones":letter_to_loved_ones,
            "obituary_final_wishes_page":obituaryFinal,
        }
        if (data[type]){
            const link = document.createElement('a');
            link.href = data[type];
            link.download = `${type}.pdf`;
            document.body.appendChild(link);
            link.click();
            document.body.removeChild(link);
        }
    }
add_action('woocommerce_after_main_content', 'mobile_sidebar',15);

function mobile_sidebar(){
    ?>
    <script>

    let sidebar = document.getElementById("secondary");
    
    function checkWidth(){
        let width = window.innerWidth;
        if (width<982){
            sidebar.style="display:none";
        }else{
            sidebar.style="display:block";
        }
    }

    checkWidth();

    window.addEventListener('resize', checkWidth);
    
    </script>
    <?php
}

add_action('woocommerce_before_main_content', 'show_filters',15);

function show_filters(){
    echo '<button id="filterButton">Φίλτρα Αναζήτησης</button>';

    ?>

    <script>

    let filterButton = document.getElementById("filterButton");
    let sidebars = document.getElementById("secondary");
        
        function checkWidth(){
            let width = window.innerWidth;
            if (width>982){
                filterButton.style="display:none";
            }else{
                filterButton.style="display:block";
            }
        }

        checkWidth();

        window.addEventListener('resize', checkWidth);
        
        filterButton.addEventListener('click', showFilters);
        let i = 1;
        
        function showFilters(){
            
            if(i%2===0){
              sidebars.style="display:block"; 
              i++;
            }else{
             sidebars.style="display:none";
             i++;
            }
        }
    </script>
    <?php
}
class Solution:
    def merge(self, nums1: List[int], m: int, nums2: List[int], n: int) -> None:
        nums1[0:] = nums1[0:m]
        nums1.extend(nums2)
        stop_this = False

        if(m!=0 and n != 0):
            first_of_1 = nums1[0]
            first_of_2 = nums2[0]
            last_of_2 = nums2[-1]


            if(first_of_1 > first_of_2 and first_of_1 > last_of_2):
                nums2.extend(nums1)
                nums1[0:] = nums2

        print("fff=",nums1)


        for j in range(0,len(nums1)):
            if(stop_this):
                break
            
            for i in range(0,len(nums1)):
                if i == len(nums1)-1:
                    break

                if(nums1[i]>nums1[i+1]):
                    first_val = nums1[i]
                    nums1[i] = nums1[i+1]
                    nums1[i+1] = first_val
                    break
                if j == len(nums1)-1:
                    stop_this = True
        if(n == 1 ):
            nums1[0:] = list(set(nums1))
        print(nums1)

p88 = Solution()

p88.merge([0],0, [1],1)
function getDirection() {

  

  // DECLARE SHEET

  var ss = SpreadsheetApp.getActiveSpreadsheet();

  var mapSheet = ss.getSheetByName("MAP");

  

  var start = mapSheet.getRange('B1').getValue();

  var end = mapSheet.getRange('B2').getValue();

  

  var directions = Maps.newDirectionFinder()

    .setOrigin(start)

    .setDestination(end)

    .setMode(Maps.DirectionFinder.Mode.DRIVING)

    .getDirections();

  

  //Logger.log(directions.routes[0].legs[0].duration.text);

 

  //CLEAR QUESTION AND ANSWER

  mapSheet.getRange('A6:D500').clear();

  

  //NEXT ROW ON MAP SHEET

  var nextRow = mapSheet.getLastRow() + 1;

 

  for (var i = 0; i < directions.routes[0].legs.length; i++) 

  {

    var endAddress = directions.routes[0].legs[i].end_address;

    var startAddress = directions.routes[0].legs[i].start_address;

    var distance = directions.routes[0].legs[i].distance.text;

    var duration = directions.routes[0].legs[i].duration.text;

    

    mapSheet.getRange(nextRow,1).setValue(startAddress);

    mapSheet.getRange(nextRow,2).setValue(endAddress);

    mapSheet.getRange(nextRow,3).setValue(distance);

    mapSheet.getRange(nextRow,4).setValue(duration);

    

    nextRow++;

 

  }

}
import serial
import struct
import time  # Added import for time module

# Define communication constants and machine information
BAUD_RATE = 38400
DATA_BITS = 8
STOP_BITS = 1
PARITY = serial.PARITY_NONE
NODE_ID = 0x01

# Define commands for motor control
SET_CONTROLWORD_CMD = 0x2B
SET_OPERATION_MODE_CMD = 0x2F
SET_TARGET_POSITION_CMD = 0x41
READ_STATUSWORD_CMD = 0x4B
SET_PROFILE_SPEED_CMD = 0x23

# Define functions to calculate checksum and send commands
def calculate_checksum(data):
    return (-sum(data) % 256) & 0xFF

def send_command(serial_port, cmd, index, sub_index, data=None):
    if data is None:
        data = b''
    packet = bytes([NODE_ID, cmd, index & 0xFF, index >> 8, sub_index, *data])
    checksum = calculate_checksum(packet)
    packet += bytes([checksum])
    serial_port.write(packet)
    response = serial_port.read(8)
    return response

# Motor control functions
def move_to_position(serial_port, position):
    response = send_command(serial_port, SET_TARGET_POSITION_CMD, 0x607A, 0x00, data=list(struct.pack('<i', position)))
    print(f"Response (Move to Position {position}):", response.hex())

def set_speed(serial_port, speed):
    speed_bytes = struct.pack('<i', speed)
    response = send_command(serial_port, SET_PROFILE_SPEED_CMD, 0x6081, 0x00, data=list(speed_bytes))
    print(f"Response (Set Speed {speed}):", response.hex())

def start_motion(serial_port):
    response = send_command(serial_port, SET_CONTROLWORD_CMD, 0x6040, 0x00, data=[0x0F, 0x00, 0x00, 0x00])  # Start motion
    print("Response (Start motion):", response.hex())

def stop_motion(serial_port):
    response = send_command(serial_port, SET_CONTROLWORD_CMD, 0x6040, 0x00, data=[0x06, 0x00, 0x00, 0x00])  # Stop motion
    print("Response (Stop motion):", response.hex())

def move_to_positions(serial_port, positions):
    for pos in positions:
        move_to_position(serial_port, pos)
        time.sleep(1)  # Added delay to allow time for motion
        set_speed(serial_port, 200)  # Set speed to 200 RPM
        start_motion(serial_port)
        time.sleep(5)  # Added delay to simulate motion time
        stop_motion(serial_port)

# Main function
def main():
    serial_port = serial.Serial('COM3', baudrate=BAUD_RATE, bytesize=DATA_BITS, stopbits=STOP_BITS, parity=PARITY, timeout=1)

    try:
        positions = [5000001, 6000001, 7000001]
        move_to_positions(serial_port, positions)

    finally:
        serial_port.close()

if __name__ == "__main__":
    main()
%%[/* INITIAL SEND Subject line/Preheader */

set @language = System_Language__c
Set @ESvalue= "es" 
Set @PTvalue= "pt" 
Set @FRvalue= "fr" 
Set @JPvalue= "ja"
Set @ITvalue= "it" 
Set @RUvalue= "ru" 
Set @DEvalue= "de" 
Set @ENvalue= "en"
/* Does it match; ; if no match, output of IndexOf(1,2) will be "0" */ 

if @language == "Spanish" OR IndexOf(@language,@ESvalue) > 0 then 
    Set @Subject = "¿Sabías que hemos hecho grandes cambios en ®VisionLink en el último año?" 
    Set @Preheader = "¡Inicie sesión y comience hoy mismo!"
elseif @language == "Portuguese" OR IndexOf(@language,@PTvalue) > 0 then 
    Set @Subject = "Sabia que fizemos grandes mudanças para VisionLink® no último ano?" 
    Set @Preheader = "Entre e comece hoje!"
elseif @language == "French" OR IndexOf(@language,@FRvalue) > 0 then 
    Set @Subject = "Saviez-vous que nous avons apporté de grands changements à ®VisionLink au cours de la dernière année?" 
        Set @Preheader = "Connectez-vous et commencez dès aujourd'hui!"
elseif @language == "Japanese" OR IndexOf(@language,@JPvalue) > 0 then 
    Set @Subject = "VisionLink®が大きく変わったことをご存知ですか?"
    Set @Preheader = "サインインして、今日からはじめましょう!"
elseif @language == "Italian" OR IndexOf(@language,@ITvalue) > 0 then 
    Set @Subject = "Sapevate che nell'ultimo anno abbiamo apportato alcune modifiche importanti a VisionLink®?"
    Set @Preheader = "Accedi e inizia oggi stesso!"
elseif @language == "Russian" OR IndexOf(@language,@RUvalue) > 0 then 
    Set @Subject = "Знаете ли вы, что в прошлом году мы внесли некоторые болышие изменения в VisionLink®?" 
    Set @Preheader = "Вход и начало работы уже сегодня!"
elseif @language == "German" OR IndexOf(@language,@DEvalue) > 0 then 
    Set @Subject = "Wussten Sie, dass wir im vergangenen Jahr einige große änderungen an VisionLink® vorgenommen haben?" 
    Set @Preheader = "Melden Sie sich an und legen Sie noch heute los!"
else 
    Set @Subject = "Did you know that we've made some big changes to VisionLink® in the last year?" 
    Set @Preheader = "Sign in and get started today!"
endif]%%
%%[
Set @language = System_Language__c
Set @ESvalue= "es_" 
Set @PTvalue= "pt_" 
Set @FRvalue= "fr_" 
Set @JPvalue= "ja_"
Set @ITvalue= "it_" 
Set @RUvalue= "ru_" 
Set @DEvalue= "de_" 
Set @ENvalue= "en_"
/* Does it match; ; if no match, output of IndexOf(1,2) will be "0" */ 
  
  SET @firstName = AttributeValue("FirstName")
SET @UNvalue= "?" 
SET @firstName = ProperCase(@firstName)
IF @firstName == "unknown" OR IndexOf(@firstName,@UNvalue) > 0 then set @FirstName = "" ENDIF
if @language == "Spanish" OR IndexOf(@language,@ESvalue) > 0 then 
    IF NOT EMPTY(@firstName) then set @greeting = Concat(@firstName, ", h")
   ELSE SET @greeting = "H"
ENDIF
elseif @language == "Portuguese" OR IndexOf(@language,@PTvalue) > 0 then 
    IF NOT EMPTY(@firstName) then set @greeting = Concat(@firstName, ", n")
   ELSE SET @greeting = "N"
   ENDIF
elseif @language == "French" OR IndexOf(@language,@FRvalue) > 0 then 
    IF NOT EMPTY(@firstName) then set @greeting = Concat(@firstName, ", n")
   ELSE SET @greeting = "N"
   ENDIF
elseif @language == "Japanese" OR IndexOf(@language,@JPvalue) > 0 then 
    IF NOT EMPTY(@firstName) then set @greeting = Concat(@firstName, ", V")
   ELSE SET @greeting = "V"
   ENDIF
elseif @language == "Italian" OR IndexOf(@language,@ITvalue) > 0 then 
    IF NOT EMPTY(@firstName) then set @greeting = Concat(@firstName, ", a")
   ELSE SET @greeting = "A"
   ENDIF
elseif @language == "Russian" OR IndexOf(@language,@RUvalue) > 0 then 
    IF NOT EMPTY(@firstName) then set @greeting = Concat(@firstName, ", м")
   ELSE SET @greeting = "М"
   ENDIF
elseif @language == "German" OR IndexOf(@language,@DEvalue) > 0 then 
    IF NOT EMPTY(@firstName) then set @greeting = Concat(@firstName, ", w")
   ELSE SET @greeting = "W"
   ENDIF
else 
    IF NOT EMPTY(@firstName) then set @greeting = Concat(@firstName, ", w")
   ELSE SET @greeting = "W"
   ENDIF
endif]%%
int pH_Value; 
float Voltage;

void setup() 
{ 
  Serial.begin(9600);
  pinMode(pH_Value, INPUT); 
} 
 
void loop() 
{ 
  pH_Value = analogRead(A0); 
  Voltage = pH_Value * (5.0 / 1023.0); 
  Serial.println(Voltage); 
  delay(500); 
}


<div className="container">
      <h5 className="w-100 d-flex justify-content-center p-3 ">Add New Department</h5>
      <div className="row">
        <div className="col-md-12">
          {/* <h6>Add Your Detail</h6> */}
          <form onSubmit={onSubmitChange}>
            <div className="w-100 d-flex justify">
              {/* <label className="form-label">Student Name</label> */}
              {/* <input

                type="text"
                className="form-control"
                id="name"
                placeholder="Enter Your Name"
                name="ad_name"
                onChange={(e) => changeUserFieldHandler(e)}
                required
              /> */}





<input
  type="text"
  className="form-control col"
  id="name"
  placeholder="Enter Your Name"
  name="ad_name"
  onChange={(e) => changeUserFieldHandler(e)}
  required
/>



            </div>

         
            <div className="mb-3 mt-3">
              {/* <label className="form-label">Class Coordinator(s) Name</label> */}
              <input
                type="text"
                className="form-control"
                id="password"
                placeholder="Enter Name"
                name="ad_username"
                onChange={(e) => changeUserFieldHandler(e)}
                required
              />
            </div>

            <div className="mb-3 mt-3">
              {/* <label className="form-label">Leave Date From</label> */}
              <input
                type="email"
                className="form-control"
                id="date_from"
                name="ad_email_id"
                onChange={(e) => changeUserFieldHandler(e)}
                required
              />
            </div>

            <div className="mb-3 mt-3">
              {/* <label className="form-label">Leave Time From</label> */}
              <input
                type="number"
                className="form-control"
                id="time_from"
                name="ad_phone_number"
                onChange={(e) => changeUserFieldHandler(e)}
                required
              />
            </div>

            <div className="mb-3 mt-3">
              {/* <label className="form-label">Leave Date Up to</label> */}
              <input
                type="password"
                className="form-control"
                id="date_up_to"
                name="ad_password"
                onChange={(e) => changeUserFieldHandler(e)}
                required
              />
            </div>

       

            {/* Add some space */}
            <div style={{ marginTop: "20px" }}>
              <button type="submit" className="btn btn-primary">
                Submit
              </button>
            </div>
          </form>
        </div>
      </div>
    </div>
sudo apt-get install audacity -y
 sudo du -ah / --exclude=/proc --exclude=/sys --exclude=/dev --exclude=/home/virtfs | sort -rh | head -n 20
getcwd()
##cd
chdir("...")
## cd ..
chdir("../")

#list
listdir
#make dir
makedirs()

## other shell
system("cd /Users")

#stats 
stat

##summary
walk 
import { Stat, StatBlockContainer } from "ui";
import { Meta, Story, Canvas, ArgsTable } from "@storybook/addon-docs";

<Meta title="Components/Data/Stat" component={Stat} />

export const Template = (args) => (
  <StatBlockContainer colour={args.colour} loading={false}>
    <Stat
      value={args.value}
      title={args.title}
      icon={args.icon !== "" ? args.icon : undefined}
      description={args.description}
      percentage={args.isPercentage ? args.percentage : undefined}
      colour={args.colour}
    />
  </StatBlockContainer>
);

# Stat

Description of a stat

## Props

<ArgsTable story="Default" />

## Examples

<Canvas>
  <Story
    name="Default"
    args={{
      value: 100,
      title: "Example",
      icon: "",
      description: "",
      percentage: 0.5,
      isPercentage: false,
      colour: "Primary",
    }}
  >
    {Template.bind({})}
  </Story>
</Canvas>
import {Stat, StatBlockContainer} from "ui";
import {ArgsTable, Canvas, Meta, Story} from "@storybook/addon-docs";

<Meta title="Components/Data/StatBlockContainer/old" component={Stat}/>

export const Template = (args) => (
    <StatBlockContainer colour={args.colour} loading={false}>
        {Array(args.numberOfStats).fill(
            <Stat
                value={args.value}
                title={args.title}
                icon={args.icon !== "" ? args.icon : undefined}
                description={args.description}
                percentage={args.isPercentage ? args.percentage : undefined}
                colour={args.colour}
            />
        )}
    </StatBlockContainer>
);

# Stat

Description of a stat

## Props

<ArgsTable story="Default"/>

## Examples

<Canvas>
    <Story
        name="Default"
        args={{
            numberOfStats: 3,
            value: 100,
            title: "Example",
            icon: "",
            description: "",
            percentage: 100,
            isPercentage: false,
            colour: "Primary",
        }}
    >
        {Template.bind({})}
    </Story>
</Canvas>
import { StatRow } from "ui";
import { Meta, Story, ArgsTable } from "@storybook/addon-docs";

<Meta title="Components/Data/StatRow" component={StatRow} />

export const Template = (args) => <StatRow {...args} />;

# StatRow

This component renders a StatRow.

## Props

<ArgsTable story="Default" />

## Examples

<Story
  name="Default"
  args={{
    label: "Example",
    value: "1K",
    loading: false,
  }}
>
  {Template.bind({})}
</Story>
import {DataTable} from "ui";
import {ArgsTable, Canvas, Meta, Story} from "@storybook/addon-docs";
import {paymentColumns, payments} from "../../examples/data/table";

<Meta title="Components/Data/Table/old" component={DataTable}/>

export const Template = (args) => (
    <DataTable
        columns={args.columns}
        data={args.data}
        showFilterInput={true}
        filterValue="email"
    />
);

# Table

Data Table comes from [Shadcn/ui](https://ui.shadcn.com/docs/components/data-table)

## Props

<ArgsTable story="Default"/>

## Examples

<Canvas>
    <Story
        name="Default"
        args={{
            columns: paymentColumns,
            data: payments
        }}
    >
        {Template.bind({})}
    </Story>
</Canvas>
star

Thu Mar 28 2024 12:23:26 GMT+0000 (Coordinated Universal Time)

@cvataicode #python

star

Thu Mar 28 2024 12:22:11 GMT+0000 (Coordinated Universal Time)

@cvataicode #python

star

Thu Mar 28 2024 12:11:20 GMT+0000 (Coordinated Universal Time)

@cvataicode #python

star

Thu Mar 28 2024 12:00:43 GMT+0000 (Coordinated Universal Time)

@cvataicode #python

star

Thu Mar 28 2024 11:59:48 GMT+0000 (Coordinated Universal Time)

@cvataicode #python

star

Thu Mar 28 2024 11:06:44 GMT+0000 (Coordinated Universal Time)

@Shmotyu

star

Thu Mar 28 2024 10:44:21 GMT+0000 (Coordinated Universal Time)

@cvataicode #python

star

Thu Mar 28 2024 10:43:21 GMT+0000 (Coordinated Universal Time)

@cvataicode #python

star

Thu Mar 28 2024 10:42:05 GMT+0000 (Coordinated Universal Time)

@cvataicode #python

star

Thu Mar 28 2024 10:39:35 GMT+0000 (Coordinated Universal Time)

@cvataicode #python

star

Thu Mar 28 2024 10:37:46 GMT+0000 (Coordinated Universal Time)

@cvataicode

star

Thu Mar 28 2024 10:35:39 GMT+0000 (Coordinated Universal Time)

@cvataicode #json

star

Thu Mar 28 2024 09:18:02 GMT+0000 (Coordinated Universal Time)

@felipems #javascript

star

Thu Mar 28 2024 09:08:48 GMT+0000 (Coordinated Universal Time)

@Jevin2090

star

Thu Mar 28 2024 08:50:59 GMT+0000 (Coordinated Universal Time)

@Jevin2090

star

Thu Mar 28 2024 08:48:38 GMT+0000 (Coordinated Universal Time)

@Jevin2090

star

Thu Mar 28 2024 07:28:03 GMT+0000 (Coordinated Universal Time)

@HTPrince

star

Wed Mar 27 2024 23:43:17 GMT+0000 (Coordinated Universal Time)

@rogueta #bash

star

Wed Mar 27 2024 16:58:44 GMT+0000 (Coordinated Universal Time)

@Lester695 #html

star

Wed Mar 27 2024 16:55:25 GMT+0000 (Coordinated Universal Time)

@Lester695 #html

star

Wed Mar 27 2024 16:48:52 GMT+0000 (Coordinated Universal Time)

@Lester695 #html

star

Wed Mar 27 2024 15:53:26 GMT+0000 (Coordinated Universal Time)

@CarlosR

star

Wed Mar 27 2024 15:49:15 GMT+0000 (Coordinated Universal Time) https://tusd.schoology.com/home

@HG_Entertain

star

Wed Mar 27 2024 14:43:29 GMT+0000 (Coordinated Universal Time)

@jdeveloper #php

star

Wed Mar 27 2024 14:11:45 GMT+0000 (Coordinated Universal Time) https://academy.hackthebox.com/module/87/section/880

@jennyca1974 #shell-session

star

Wed Mar 27 2024 14:07:40 GMT+0000 (Coordinated Universal Time) https://academy.hackthebox.com/module/87/section/880

@jennyca1974 #shell-session

star

Wed Mar 27 2024 11:34:25 GMT+0000 (Coordinated Universal Time)

@Harsh #javascript #string

star

Wed Mar 27 2024 10:47:34 GMT+0000 (Coordinated Universal Time)

@BilalRaza12

star

Wed Mar 27 2024 10:31:02 GMT+0000 (Coordinated Universal Time)

@pvignesh

star

Wed Mar 27 2024 10:30:45 GMT+0000 (Coordinated Universal Time)

@pvignesh

star

Wed Mar 27 2024 08:48:33 GMT+0000 (Coordinated Universal Time)

@Shira

star

Wed Mar 27 2024 06:46:08 GMT+0000 (Coordinated Universal Time)

@vishalsingh21

star

Wed Mar 27 2024 05:44:30 GMT+0000 (Coordinated Universal Time)

@Jevin2090

star

Tue Mar 26 2024 21:18:19 GMT+0000 (Coordinated Universal Time)

@Savvos

star

Tue Mar 26 2024 20:08:57 GMT+0000 (Coordinated Universal Time)

@nitinnr

star

Tue Mar 26 2024 19:41:27 GMT+0000 (Coordinated Universal Time)

@PhobiaCide #javascript #clipboard #ux

star

Tue Mar 26 2024 18:40:25 GMT+0000 (Coordinated Universal Time)

@LateefAhmad #python

star

Tue Mar 26 2024 16:41:03 GMT+0000 (Coordinated Universal Time)

@shirnunn

star

Tue Mar 26 2024 16:39:21 GMT+0000 (Coordinated Universal Time)

@shirnunn

star

Tue Mar 26 2024 07:47:48 GMT+0000 (Coordinated Universal Time) https://www.electroniclinic.com/ph-meter-arduino-ph-meter-calibration-diymore-ph-sensor-arduino-code/

@daniel1000

star

Tue Mar 26 2024 06:16:21 GMT+0000 (Coordinated Universal Time)

@codeing

star

Tue Mar 26 2024 05:02:20 GMT+0000 (Coordinated Universal Time) https://www.xda-developers.com/what-apps-run-on-chrome-os/

@pdiddy81

star

Mon Mar 25 2024 23:11:11 GMT+0000 (Coordinated Universal Time)

@RobertoSilvaZ #ssh #git #github #gitlab

star

Mon Mar 25 2024 18:31:43 GMT+0000 (Coordinated Universal Time)

@CarlosR

star

Mon Mar 25 2024 17:19:23 GMT+0000 (Coordinated Universal Time)

@rafal_rydz

star

Mon Mar 25 2024 17:19:05 GMT+0000 (Coordinated Universal Time)

@rafal_rydz

star

Mon Mar 25 2024 17:18:36 GMT+0000 (Coordinated Universal Time)

@rafal_rydz

star

Mon Mar 25 2024 17:18:16 GMT+0000 (Coordinated Universal Time)

@rafal_rydz

Save snippets that work with our extensions

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