Snippets Collections
namespace myengine
{
    void load_ogg(const std::string& _path, std::vector<unsigned char>& _buffer,
        ALenum& _format, ALsizei& _freq)
    {

        int channels = 0;
        int sampleRate = 0;
        short* output = NULL;

        size_t samples = stb_vorbis_decode_filename(_path.c_str(),
            &channels, &sampleRate, &output);
        std::cout << samples << std::endl;

        if (samples == -1)
        {
            throw std::runtime_error("Failed to open file '" + _path + "' for decoding");
        }

        // Record the format required by OpenAL
        if (channels < 2)
        {
            _format = AL_FORMAT_MONO16;
        }
        else
        {
            _format = AL_FORMAT_STEREO16;
        }

        // Copy (# samples) * (1 or 2 channels) * (16 bits == 2 bytes == short)
        _buffer.resize(samples * channels * sizeof(short));
        memcpy(&_buffer.at(0), output, _buffer.size());

        // Record the sample rate required by OpenAL
        _freq = sampleRate;

        // Clean up the read data
        free(output);
    }
void DealersTurn(cards PlayerHand[], cards DealerHand[])//dealers turn function
{
	DealerTotalHandscore = 0;//sets ai hand score to 0 to reset it when they start thier turn

	for (i = 0; i < dealerCurrentHand; i++)//when dealer gets a card it adds to the value
	{
		DealerTotalHandscore += DealerHand[i].PlayerValue;
	}

	if (DealerTotalHandscore < 17)//if dealer is less than 17 they can draw a card
	{
		HitDealer(PlayerHand, DealerHand);//draws card for dealer
		Sleep(2000);//delay for immersion
		DealersTurn(PlayerHand, DealerHand);//dealers turn again since its below 17
	}

	if (DealerTotalHandscore >= 17)//if dealers hand is above 17
	{
		if (TotalHandscore > DealerTotalHandscore)//checks if players hand is bigger than the dealers hand, if player went over the game wouldve already end
		{
			Sleep(2000);//delay for suspense
			std::cout << "You win! Congrats! Your hand total is " << TotalHandscore << " The dealers was " << DealerTotalHandscore << std::endl;
			Sleep(2000);
			bank += currentbet * 2;
			std::cout << "You now have $" << bank << " in your bank" << std::endl;
			Sleep(2000);
			std::cout << "Do you want to continue playing? " << std::endl << "1.Yes " << std::endl << "2.No" << std::endl;
			Choice = 0;
			std::cin >> Choice;//player chooses to play or exit

			if (Choice == 1)
			{
				Choice = 0;
				reset();
			}

			if (Choice == 2)
			{
				Choice = 0;
				Quitgame();
			}
		}
	}
add_action( 'init', 'create_packages_taxonomies', 0 );
function create_packages_taxonomies() {
  $labels = array(
    'name' => _x( 'Packages Category', 'taxonomy general name' ),
    'singular_name' => _x( 'Packages Category', 'taxonomy singular name' ),
    'search_items' =>  __( 'Search Packages Category' ),
    'all_items' => __( 'All Packages Category' ),
    'parent_item' => __( 'Parent Packages Category' ),
    'parent_item_colon' => __( 'Parent Packages Category:' ),
    'edit_item' => __( 'Edit Packages Category' ), 
    'update_item' => __( 'Update  Packages Category' ),
    'add_new_item' => __( 'Add New Packages Category' ),
    'new_item_name' => __( 'New Packages Category' ),
    'menu_name' => __( 'Packages Category' ),
  );           
  register_taxonomy('packages_categories',array('packages'), array(
    'hierarchical' => true,
    'labels' => $labels,
    'show_ui' => true,
    'query_var' => true,
    'rewrite' => array( 'slug' => 'packages_categories' ),
  ));

}

add_action( 'init', 'codex_custom_init' );
function codex_custom_init() {
  $labels = array(
    'name' => _x('Packages', 'post type general name'),
    'singular_name' => _x('Packages', 'post type singular name'),
    'add_new' => _x('Add New Packages', 'Packages'),
    'add_new_item' => __('Add New Packages'),
    'edit_item' => __('Edit Packages'),
    'new_item' => __('New Packages'),
    'all_items' => __('All Packages'),
    'view_item' => __('View Packages'),
    'search_items' => __('Search Packages'),
    'not_found' =>  __('No Packages found'),
    'not_found_in_trash' => __('No Packages found in Trash'), 
    'parent_item_colon' => '',
    'menu_name' => 'Packages',
  );
  $args = array(
    'labels' => $labels,
    'public' => true,
    'publicly_queryable' => true,
    'show_ui' => true, 
    'show_in_menu' => true, 
    'query_var' => true,
    'rewrite' => true,
    'capability_type' => 'post',
    'has_archive' => true, 
    'menu_icon' => 'dashicons-layout',
    'hierarchical' => false,
    'menu_position' => null,
    'supports' => array( 'title', 'editor', 'thumbnail', 'excerpt')
  ); 
  register_post_type('packages',$args);}
<?php
get_header(); ?>

<div class="wrap single-merchandise">
  <div class="container-fluid">
    <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>

      <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
      <?php $description = $product->get_description();?>

        <section class="SinglePage boxsection">
          <div class="row">
            <div class="col-md-12">

              <div class="buttons">
                <div class="leftSection">
                  <div class="backbtn">
                    <a href="<?php echo get_home_url() ?>"><i class="fa fa-arrow-left"></i> Back to Plans</a>
                  </div>
                </div>

                <div class="rightSection">
                  <a class="primaryBtn" href="<?php echo get_field('product_button_link'); ?>" target="_blank">Buy Now</a>
                </div>
              </div>

              
            </div>
          </div>
         <div class="row">
           <div class="col-md-12">
             <div class="topOverview">
               <div class="featured">
                   <div class="thumbnail">
                       <img src="<?php the_post_thumbnail_url('full') ?>" alt=" <?php the_title(); ?> ">
                   </div>
                   <h3> <?php the_title(); ?> </h3>
                   <div class="shortDesc">
                     <?php echo $description; ?>
                   </div>
                   <div class="headTitle">
                       <div class="pricing"><?php the_field('product_price'); ?></div>
                   </div>
               </div>
             </div>
           </div>
         </div>
         </section>



         <div class="row">
           <div class="col-md-6">

            <!-- highlights section -->
             <div class="highlights boxsection">
              <div class="title">Highlights</div>
              <div id="owl-demo" class="owl-carousel highlightsSlider">
               <?php $campaign_section_box = get_field('campaign_section_box'); 
                foreach ($campaign_section_box as $Items) { ?>
                  <div class="row">
                    <div class="col-md-12">
                      <div class="items">
                        <div class="thumbnail">
                          <?php 
                          if ($Items['campaign_image']) { ?>
                             <img src="<?php echo $Items['campaign_image'];  ?>" alt="<?php the_title(); ?>">
                           <?php } else { ?>
                              <img src="<?php echo get_template_directory_uri() ?>/images/highlights.png" alt="<?php the_title(); ?>">
                          <?php } ?>                          
                        </div>
                        <div class="except">
                           <div class="highTitle"><?php echo $Items['campaign_title']; ?></div>
                           <div class="except"><?php echo $Items['campaign_short_description']; ?></div>
                        </div>
                      </div>
                    </div>
                  </div>
                <?php } ?>
                </div> <!-- owl-carousel -->
             </div>
             <!-- highlights section -->

             <!-- GALLERY section -->
             <div class="galleries boxsection">
              <div class="title">Gallery</div>
              <div id="owl-demo" class="owl-carousel gallerySlider">
               <?php $gallery_box_area = get_field('gallery_box_area'); 
                foreach ($gallery_box_area as $gall) { ?>
                  <div class="row">
                    <div class="col-md-12">
                      <div class="items">
                        <div class="thumbnail">
                          <?php 
                          if ($gall['gallery_image']) { ?>
                             <img src="<?php echo $gall['gallery_image'];  ?>" alt="<?php the_title(); ?>">
                           <?php } else { ?>
                              <img src="<?php echo get_template_directory_uri() ?>/images/highlights.png" alt="<?php the_title(); ?>">
                          <?php } ?>                          
                        </div>
                        <div class="except">
                           <div class="highTitle"><?php echo $gall['gallery_title']; ?></div>
                           <div class="except"><?php echo $gall['gallery_description']; ?></div>
                        </div>
                      </div>
                    </div>
                  </div>
                <?php } ?>
                </div> <!-- owl-carousel -->
             </div>
             <!-- GALLERY section -->

             <!-- REVIEWS section -->
             <div class="reviews boxsection">
              <div class="title">Verified Reviews</div>
              <div id="owl-demo" class="owl-carousel reviewsSlider">
               <?php $verified_reviews_box_area = get_field('verified_reviews_box_area'); 
                foreach ($verified_reviews_box_area as $rev) { ?>
                  <div class="row">
                    <div class="col-md-12">
                      <div class="items">
                        <div class="thumbnail">
                          <?php 
                          if ($rev['person_image']) { ?>
                             <img src="<?php echo $rev['person_image'];  ?>" alt="<?php the_title(); ?>">
                           <?php } else { ?>
                              <img src="<?php echo get_template_directory_uri() ?>/images/highlights.png" alt="<?php the_title(); ?>">
                          <?php } ?>                          
                        </div>
                        <div class="except">
                           <div class="highTitle"><?php echo $rev['person_name']; ?></div>
                           <div class="except"><?php echo $rev['person_review']; ?></div>
                        </div>
                      </div>
                    </div>
                  </div>
                <?php } ?>
                </div> <!-- owl-carousel -->
             </div>
             <!-- REVIEWS section -->





           </div>
           <div class="col-md-6">

            <!-- inforMation -->
            <section class="inforMation boxsection">
              <div class="title">Information</div>
              <div class="row">
                <div class="col-md-12">
                  <?php echo get_field('describe_ads_information');?>
                </div>
              </div>
            </section>
            <!-- inforMation -->

            <!-- casestudies section -->
            <div class="casestudies boxsection">
             <div class="title">Case Studies</div>
             <div id="owl-demo" class="owl-carousel casestudiesSlider">
              <?php $case_studies_box_area = get_field('case_studies_box_area'); 
               foreach ($case_studies_box_area as $case) { ?>
                 <div class="row">
                   <div class="col-md-12">
                     <div class="items">
                       <div class="thumbnail">
                        <a href="<?php echo $case['case_studies_pdf']; ?>#toolbar=0" target="_blank">
                          <img src="<?php echo get_template_directory_uri() ?>/images/icon-pdf.webp" alt="<?php the_title(); ?>">
                        </a>
                       </div>
                       <div class="except">
                          <div class="highTitle"><?php echo $case['case_studies_title']; ?></div>
                          <div class="except"><?php echo $case['case_studies_description']; ?></div>
                       </div>
                     </div>
                   </div>
                 </div>
               <?php } ?>
               </div> <!-- owl-carousel -->
            </div>
            <!-- casestudies section -->

            <!-- faqsection section -->
            <section class="faqsection boxsection">
              <div class="title">FAQ</div>
               <accordion>
                  <div class="accordion-container">
                     <?php
                        $faq_box_area = get_field('faq_box_area');
                        
                        foreach($faq_box_area as $faq) { ?>
                     <div class="set">
                        <a href="javascript:void(0)">
                        <?php echo $faq['faq_title']; ?>
                        </a>
                        <div class="content">
                           <?php echo $faq['faq_content']; ?>
                        </div>
                     </div>
                     <?php } ?>
                  </div>
               </accordion>
            </section>
            <!-- faqsection section -->

            


           </div> <!-- END RIGHT col-md-6 -->
         </div> <!-- MAIN ROW END -->
      </div><!-- #post-## -->

      

    <?php endwhile; // end of the loop. ?>
  </div>
  <!-- #content --> 
</div>
<!-- #container -->
<?php get_footer(); ?>
<?php
    /**
     * Template Name: Homepage 
     *
     * This is the template that displays all pages by default.
     * Please note that this is the WordPress construct of pages
     * and that other 'pages' on your WordPress site will use a
     * different template.
     *
     * @package WordPress
     * @subpackage Twenty_Ten
     * @since Twenty Ten 1.0
     */
    
    get_header(); ?>

<section class="mainWrapper">
    <div class="container-fluid">
        <div class="wrap">
<section class="section">
<tabsleft>
<?php 

// Query WooCommerce product categories
$args = array(
  'taxonomy' => 'product_cat',
  'hide_empty' => true,
);

$categories = get_terms($args);
$currentTabs = "current";
$count = 1;

if (!empty($categories)) {
echo '<div id="tabs-container">';
echo '<div class="row">';
echo '<div class="col-lg-3 col-md-3">';
echo '<ul class="tabs-left">';

  // Loop through the categories to create tabs
  foreach ($categories as $category) {
    if (!empty($categories)) {

        // get the thumbnail id using the queried category term_id
        $thumbnail_id = get_term_meta( $category->term_id, 'thumbnail_id', true ); 
        $image = wp_get_attachment_url( $thumbnail_id ); 

        // Get custom field data for the category (using ACF)
        $customYearly   = get_field('add_subscription_yearly_monthly', $category);
        $customPricing  = get_field('pricing_details', $category);

        
        echo '<li class="' .$currentTabs. '">';
            echo '<a href="#tabs'.$count.'">';
                echo '<div class="row">';
                    echo '<div class="col-md-4">';
                        echo '<img src="' . esc_url($image) . '" alt="' . esc_attr($category->name) . '">';
                    echo '</div>';
                    echo '<div class="col-md-8">';
                        echo '<div class="content">';
                            echo '<div class="title">' . $category->name . '</div>';
                            echo '<div class="subHeading">' . $customYearly . '</div>';
                            echo '<div class="pricing">' . $customPricing . '</div>';
                        echo '</div>';
                    echo '</div>';
                echo '</div>';
            echo '</a>';
        echo '</li>';
      $currentTabs = "";
      $count++;
      
    } 
  }
  echo '</ul>'; // left-tabs;
  echo '</div>';// col-lg-2 col-md-3;


echo '<div class="col-lg-9 col-md-9">';
 echo '<div class="tab-loop">';
// Loop through the categories again to display products under each tab;
        $Active = "block";
        $countDigit = 1;
        $maintabhtml = "maintabhtml";

  foreach ($categories as $category) {

    // Query products for the current category
    $product_args = array(
      'post_type' => 'product',
      'posts_per_page' => -1,
      'order' => 'ASC',
      'tax_query' => array(
        array(
          'taxonomy' => 'product_cat',
          'field' => 'slug',
          'terms' => $category->slug,
        ),
      ),
    );

   
    $products = new WP_Query($product_args);

    if ($products->have_posts()) {
        // custom my code;
        echo '<div id="tabs'.$countDigit.'" class="tabsleft-content '.$maintabhtml.'" style="display: '.$Active.';">'; 
        echo '<div class="row">';

      while ($products->have_posts()) {
        $products->the_post();
        // echo '<div class="product-item">';
        // echo '<h3>' . get_the_title() . '</h3>';
        // // Add more product details or custom fields as needed
        // echo '</div>';


        ?>
            <div class="col-md-6">
                <div class="prodItems">
                    <div class="row">
                        <div class="col-md-9 col-sm-12">
                            <div class="featured">
                                <div class="thumbnail">
                                    <img src="<?php the_post_thumbnail_url('full') ?>" alt=" <?php the_title(); ?> ">
                                </div>
                                <div class="headTitle">
                                    <h3> <?php the_title(); ?> </h3>
                                    <div class="subHeading"><?php the_field('add_subscription_yearlymonthly'); ?></div>
                                    <div class="pricing"><?php the_field('product_price'); ?></div>
                                </div>
                            </div>
                        </div>
                        <div class="col-md-3 col-sm-12">
                            <div class="button">
                                <a class="primaryBtn" href="<?php the_field('product_button_link'); ?>" target="_blank"><?php the_field('product_button_title'); ?></a>
                                <!-- <a class="readmoreBtn funnel" data-funnel="pro" href="javascript:void(0);" target="_blank">Learn More</a> -->
                                <a class="readmoreBtn" href="<?php the_permalink(); ?>">Learn More</a>
                            </div>
                        </div>
                    </div>
                    <div class="row">
                        <div class="col-md-12">
                            <div class="prodCont">
                                <?php the_content(); ?>
                            </div>
                        </div>
                    </div>
                </div>

            </div>
            <!-- END col-md-6 -->
        
        <?php 
      }
       echo '</div>'; 
        echo '</div>'; // tabsleft-content;

    } else {

      echo 'No products found for this category.';
    }
    //echo '</div>';
    $Active = "none";
    $countDigit++;
    $maintabhtml = "";
  }
  echo '</div>'; // tab-loop;
  echo '</div>'; // col-lg-10 col-md-9;
}

 ?>

</div>
</tabsleft>
</section>


            <?php // get_template_part( 'loop', 'page' );  ?>
        </div><!-- #content -->
    </div><!-- #container -->
</section>

<?php get_footer(); ?>
#include <iostream>
#include<iomanip>
using namespace std;
int main() {
int num;
cout<<"enter a number";
cin>>num;
for(int r=1;r<=num;r++){
      for(int s=0;s<=r-1;s++){
          cout<<' ';}
          
          for(int c=1;c<=2*num-2*r+1;c++){
             if(r==1){cout<<'*';}
             else if(c==r || c==2*num-2*r+1){cout<<'*';}
              else {cout<<' ';}
          }      
    cout<<endl;                
    
}  
    

          

  
    return 0;
}
public class Main {
    public static void main(String[] args) {
 
        String myFirstString = "Hello Test Pro Student!";
 
    }
}
public class Main {
    public static void main(String[ ] args) {

        int age = 21;

        if (age < 21) {
            throw new ArithmeticException("Sorry - We only sell to customers 21 years old and above!");
        }
        else {
            System.out.println("Order accepted!");
        }
    }
}
// Output: Order accepted!
public class Main {
    public static void main(String[ ] args) {

        int age = 19;

        if (age < 21) {
            throw new ArithmeticException("Sorry - We only sell to customers 21 years old and above!");
        }
        else {
            System.out.println("Order accepted!");
        }
    }
}
// Output: Exception in thread "main" java.lang.ArithmeticException: Sorry - We only sell to customers 21 years old and above!
//	at org.example.Main.main(Main.java:12)
#include<stdio.h>
int main()
{
    int m=0,l=100000;
    while (m<=100000){
        while(m%3==0 || m%5==0)
        printf("%d.\n",m++);
        m++;
    }
    m++;
}
In today's fast-paced digital age, technology is evolving at lightning speed. A breakthrough in various industries is the development of decentralized applications or Dapps. Innovative applications are changing how we interact with the internet and do business. Here's how a Dapp development company is shaping the future with this revolution.


What are Dapps?

Let's understand what Dapps are before we get into the revolution. A Dapp runs on a decentralized network of computers called a blockchain, not a traditional application. They aren't controlled by any central authority. Rather, they use smart contracts, which are self-executing contracts with the terms written into the code. Transparency and security go hand in hand.


Industries are being shaped by technologies

Finance and Banking: As Dapps takes over the financial sector, things are changing. Smart contracts automate transactions, cutting out middlemen and reducing costs. Everyone gets faster, cheaper, and more secure financial services.
Logistics Management: The blockchain is streamlining supply chains by providing a transparent, immutable ledger. This ensures authenticity, traceability, and accountability, making it easier to track products.
Gaming: As Dapps are integrated into the gaming industry, it's transforming. In-game assets can be owned and traded securely with blockchain technology. Games become more empowering and gamers take control of their virtual possessions.
Real Estate: Property buying and selling involves a lot of paperwork and middlemen. Dapps simplifies this process by making property transactions transparent and efficient. Doing this will reduce fraud chances and speed up the closing process.
Healthcare: The security of patient data is paramount in healthcare. Using Dapps, you can store sensitive information on the blockchain. Only authorized people can access patient records, so they're tamper-proof.


The Future is Here

These industries are being transformed by the Dapp development company at the center of this revolution. By harnessing the power of blockchain technology, they are in a position to create solutions that ensure not only security and transparency but also are cost-effective and efficient at the same time. The work of these people is paving the way for a future in which trust and decentralization will serve as the cornerstones of our digital interactions in the future. 


Conclusion

In conclusion, Dapp Development Company is changing how we do business and interact with technology. These forward-thinking companies know blockchain's potential and are leading this revolution. As they shape industries, we can look forward to a more secure, transparent, and accessible future. We're living in the age of Dapps, and it's changing everything.
#include<iomanip>
using namespace std;
int main() {
    int num;
    cout<<"enter a number"<<endl;
    cin>>num;
    int i=0;
    for(int r=1;r<=num+1;r++){
          for(int c=1;c<=r;c++){
              cout<<'*';}
             
           int b = 2*num-2*r+2;
            for(int s=1;s<=b;s++){
                  
                  cout<<' ';
                  i=i+1;         }
                     for(int c=1;c<=r;c++){
                         cout<<'*'; }
                         cout<<endl;
                     }
                
   for(int r=1;r<=num;r++){
          for(int c=1;c<=num+1-r;c++){
            cout<<'*';}
            
            for(int s=0;s<=2*r-1;s++){
            cout<<' ';
                        }
               for(int c=1;c<=num+1-r;c++){
                cout<<'*';
                           }
                         cout<<endl;         
                
                }
                
                
                     
               
    return 0;
}
object-fit: fill;
object-fit: contain;
object-fit: cover;
object-fit: none;
object-fit: scale-down;
import pandas as pd
import sqlite3

# Create database
conn = sqlite3.connect('guests.db')
c = conn.cursor()

# Create table
c.execute('''CREATE TABLE guests
             (id INTEGER PRIMARY KEY AUTOINCREMENT,
              name TEXT,
              phone TEXT,
              email TEXT,
              visits INTEGER)''')

# Insert data
df = pd.read_csv('guests.csv')
df.to_sql('guests', conn, if_exists='append', index=False)

# Close connection
conn.close()
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>

#define n 10
//Linear Probing
void insert(int arr[])
{
	int i=1;
	int item,pos;
	int inserted=0;
	printf("Enter Item : ");
	scanf("%d",&item);
	pos=item%10;
	while(i<=10)
	{
		if(arr[pos]==-1)
		{
			arr[pos]=item;
			inserted=1;
			break;
		}
		else
		{
			pos=(pos+1)%n;
		}
		i++;
	}
	if(!inserted) printf("Overflow");

}

void search(int arr[])
{
	int i=1,item,pos,found=0;
	printf("Enter item to be searched : ");
	scanf("%d",&item);
	pos=item%10;
	while(i<=10)
	{
		if(arr[pos]==item)
		{
			printf("Found");
			found=1;
			break;
		}
		else pos=(pos+1)%n;
		i++;
	}
	if(!found) printf("Not Found");
}

void display(int arr[])
{
	int i;
	for(i=0;i<n;i++)
	{
		if(arr[i]!=-1) printf("\n%d",arr[i]);
		else  printf("\nNULL");
	}
}
void delete(int arr[])
{
	int i=1,item,pos,deleted=0;
	printf("Enter item to be deleted : ");
	scanf("%d",&item);
	pos=item%10;
	while(i<=10)
	{
		if(arr[pos]==item)
		{
			printf("Deleted Successfully ");
			arr[pos]=-1;
			deleted=1;
			break;
		}
		else pos=(pos+1)%n;
		i++;
	}
	if(!delete) printf("Not Found");
}

void main()
{
	int arr[n]={-1};
	int ch;
	int i;
	clrscr();
	for( i=0;i<10;i++)
	{
		arr[i]=-1;
	}
	while(1)
	{
		printf("\n1. Insert");
		printf("\n2. Search");
		printf("\n3. Display");
		printf("\n4. Delete");
		printf("\n5. Exit");
		printf("\nEnter Your Choice : ");
		scanf("%d",&ch);
		if(ch==1) insert(arr);
		else if(ch==2) search(arr);
		else if(ch==3) display(arr);
		else if(ch==4) delete(arr);
		else if(ch==5) break;
		else printf("Invalid Choice");
	}
	getch();
}
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>

#define n 10

struct Node
{
	int data;
	struct Node* next;
};
struct Node* createNode(int item)
{
	struct Node* newNode=(struct Node*)malloc(sizeof(struct Node));
	newNode->data=item;
	newNode->next=NULL;
	return newNode;
}

void search(struct Node* arr[])
{
	int item,pos;
	struct Node* temp;
	printf("Enter item to be searched :");
	scanf("%d",&item);
	pos=item%10;
	temp=arr[pos];
	while(temp!=NULL)
	{
		if(temp->data==item)
		{
			printf("Found");
			return;
		}
		temp=temp->next;
	}
	printf("Not Found");
}
void insert(struct Node* arr[])
{
	struct Node* temp;
	int pos,item;
	printf("Enter Item : ");
	scanf("%d",&item);
	pos=item%10;
	temp=arr[pos];
	if(temp==NULL)
	{
		arr[pos]=createNode(item);
		return;
	}
	while(temp->next!=NULL)
	{
		temp=temp->next;
	}
	temp->next=createNode(item);
}

void display(struct Node* arr[])
{
	int i;
	struct Node* temp;
	for(i=0;i<n;i++)
	{
		printf("\n");
		temp=arr[i];
		while(temp!=NULL)
		{
			printf("%d    ",temp->data);
			temp=temp->next;
		}

	}
}
void delete(struct Node* arr[])
{
    
	int i,item,pos,present;
	struct Node* temp;
	struct Node* prev;
	printf("Enter item to be deleted : ");
	scanf("%d",&item);
	pos=item%10;
	temp=arr[pos];
	prev=arr[pos];
	if(temp==NULL)
	{
	    printf("Not Found");
	    return ;
	}
	if(temp->data==item)
	{
		arr[pos]=NULL;
		return;
	}
	while(temp!=NULL)
	{
		if(temp->data==item)
		{
			present=1;
			break;
		}
		prev=temp;
		temp=temp->next;
	}
	if(present) prev->next=temp->next;
	else printf("Not Found");
	
}
void main()
{
	int i,ch;
	struct Node* arr[n];
	for(i=0;i<n;i++)
	{
		arr[i]=NULL;
	}
	while(1)
	{
		printf("\n1. Insert");
		printf("\n2. Search");
		printf("\n3. Delete");
		printf("\n4. Display");
		printf("\n5. Exit");
		printf("\n Enter Your Choice : ");
		scanf("%d",&ch);
		if(ch==1) insert(arr);
		else if(ch==2) search(arr);
		else if(ch==3) delete(arr);
		else if(ch==4) display(arr);
		else if(ch==5) break;
		else printf("Invalid Choice ");
	}
}
<html>

<body>
    <div class="dark relative min-h-screen transition-all ease-out" id="parent">
        <label for="check" class="mx-auto mt-4 block w-fit border px-4 py-2">
            <span>dark</span>
            <input type="checkbox" class="hidden" id="check" onclick="document.getElementById('parent').classList.toggle('dark')" />
        </label>
        <div class="absolute left-1/2 top-1/2 mx-auto max-w-md -translate-x-1/2 -translate-y-1/2 rounded-lg border p-4 shadow-xl">
            <h1 class="mb-2 border-b-2 border-indigo-400 pb-1 text-center text-xl">Lorem ipsum dolor sit amet.</h1>
            <div>
                <p class="text-emerald-600">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Soluta, illum rem.</p>
                <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Laboriosam molestias laborum odio.</p>
            </div>
        </div>
    </div>
</body>

</html>
Из-за слишком большого количества запросов с вашего IP в секунду Cloudflare ограничил доступ к сайту на 1 минуту.
function woodmart_child_enqueue_styles() {
    $the_time = current_datetime()->format('Y-m-d H:i:s');
    wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( 'woodmart-style' ), woodmart_get_theme_info( 'Version' ). '?' . $the_time  );
}
SELECT

  LEFT(CONVERT(varchar,[REQ ITEM CHECKIN DATETIME], 120),16) as วันที่รับแล็บ
     ,LEFT(CONVERT(varchar,[ORDER DATETIME], 120),16) as วันที่สั่ง
     ,[HN]
     ,[LN]
     ,[FULLNAME] as [ชื่อ-สกุล]
     ,[YEAR] as ปี
     ,[SEX] as เพศ
     ,[WARD NAME] as จุดที่สั่ง
     ,[REQ ITEM GROUP CODE] as CODE
     ,[RES ITEM NAME] as รายการตรวจ
     ,[RES ITEM RESULT] as ผลการตรวจ
     ,[RES ITEM STATE] as state
     ,[ORDER COMMENT] as comment



  FROM [LAB_DB].[dbo].[view_lab_statistic_Result_List]

WHERE 
  [ORDER INACTIVE] ='n' 
     AND ([REQ ITEM GROUP CODE] ='SP' or [REQ ITEM GROUP CODE] ='PA')
     AND ([REQ STATE] ='a' or [REQ STATE] ='u')
	 
	 
	 --[REQ ITEM CHECKIN DATETIME]
	 --Checkin
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Code Snippet</title>
    <!-- CSS -->
    <link rel="stylesheet" href="style.css">
    <!-- MATERIAL ICON -->
    <link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet">
    <!-- AOS LINK -->
    <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
</head>
<body>
    

    <!-- JAVASCRIPT -->
    <script src="script.js"></script>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
    <script>
        AOS.init();
      </script>
</body>
</html>
p + ggplot2::guides(size = "none")
class Solution{
public:
    using vs = vector<string>; using um = unordered_map<string,bool>;
    void fun(int idx,um& dict, string& s, vs& ans,vs sentence, const int& n){
        if(idx == s.length()){
            string main;
            for(auto word : sentence)
                main += word + ' ';
            main.pop_back();
            ans.push_back(main);
            return;
        }
        string temp = "";
        for(int i = idx; i < s.length(); i++){
            temp.push_back(s[i]);
            if(dict[temp]){
                sentence.push_back(temp);
                fun(i+1, dict, s, ans, sentence, n);
                sentence.pop_back();
            }
        }
    }
    vector<string> wordBreak(int n, vector<string>& d, string s)
    {
        // code here
        um dict;
        for(auto word : d)
            dict[word] = true;
        vs ans;
        vs sentence;
        fun(0, dict, s, ans, sentence, n);
        return ans;
    }
};
class Solution{
    public:
    void findPaths(int i, int j, vector<string>& paths ,string path, vector<vector<int>>& mat){
        if(i == mat.size()-1 && j == mat.size()-1)
        {
            paths.push_back(path);
            return;
        }
        int dx[4] = {0,1,0,-1};
        int dy[4] = {1,0,-1,0};
        char move[4] = {'R','D','L','U'};
        mat[i][j] = 0;
        for(int k = 0; k < 4; k++){
            int x = i + dx[k], y = j+ dy[k];
            if((x>=0 && x < mat.size() && y >= 0 && y < mat.size()) && mat[x][y] != 0){
                
                path.push_back(move[k]);
                findPaths(x, y, paths, path, mat);
                path.pop_back();
            }
        }
        mat[i][j] = 1;
    }
    vector<string> findPath(vector<vector<int>> &mat, int n) {
        // Your code goes here
        vector<string> paths;
        string path;
        if(mat[0][0] == 0)
            return paths;
        findPaths(0, 0, paths, path, mat);
        // sort(paths.begin(), paths.end());
        return paths;
        
    }
};
function pix()
{
  if (pixelDensity() === 2) {
    pixelDensity(1);
  }
}
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js" integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+" crossorigin="anonymous"></script>
#include <stdio.h>
#include <stdlib.h>

#define HASH_TABLE_SIZE 10

int hash(int key) {
    return key % HASH_TABLE_SIZE;
}

int insert(int hashTable[], int key) {
    int index = hash(key);
    
    while (hashTable[index] != -1) {
        index = (index + 1) % HASH_TABLE_SIZE;
    }
    
    hashTable[index] = key;
    return index;
}

int search(int hashTable[], int key) {
    int index = hash(key);
    
    while (hashTable[index] != -1) {
        if (hashTable[index] == key) {
            return 1;
        }
        index = (index + 1) % HASH_TABLE_SIZE;
    }
    
    return 0;
}

void display(int hashTable[]) {
    int i=0;
    printf("Hash Table Contents:\n");
    for (i = 0; i < HASH_TABLE_SIZE; i++) {
        if (hashTable[i] != -1) {
            printf("Index %d: %d\n", i, hashTable[i]);
        } else {
            printf("Index %d: NULL\n", i);
        }
    }
}

int main() {
    int hashTable[HASH_TABLE_SIZE];
    int choice,key;
    int i;
    for (i = 0; i < HASH_TABLE_SIZE; i++) {
        hashTable[i] = -1; 
    }
while (choice!=4) {
	printf("\nChoose an operation:\n");
	printf("1. Display hash table\n");
	printf("2. Insert a key\n");
	printf("3. Search for a key\n");
	printf("4. Exit\n");

	scanf("%d", &choice);

	switch (choice) {
	    case 1:
		display(hashTable);
		break;
	    case 2:
		printf("Enter a key to insert: ");
		scanf("%d", &key);
		insert(hashTable, key);
		printf("Key inserted into the hash table.\n");
		break;
	    case 3:
		printf("Enter a key to search: ");
		scanf("%d", &key);
		if (search(hashTable, key)) {
		    printf("%d is found in the hash table.\n", key);
		} else {
		    printf("%d is not found in the hash table.\n", key);
		}
		break;
	    case 4:
		exit(0);
	    default:
		printf("Invalid choice. Please choose again.\n");
		break;
	}
    }
    return 0;
}
font-family: ltc-nicholas-cochin-pro, sans-serif;
font-style: normal;
font-weight: 400;
        
#include <stdio.h>
#include <stdlib.h>

#define HASH_TABLE_SIZE 10

struct Node {
    int data;
    struct Node* next;
};

struct HashTable {
    struct Node* table[HASH_TABLE_SIZE];
};

// Hash function to compute the index
int hash(int key) {
    return key % HASH_TABLE_SIZE;
}

// Insert a key into the hash table
void insert(struct HashTable* ht, int key) {
    int index = hash(key);
    struct Node* newNode = (struct Node*)malloc(sizeof(struct Node));
    if (newNode == NULL) {
	fprintf(stderr, "Memory allocation failed.\n");
	exit(1);
    }
    newNode->data = key;
    newNode->next = ht->table[index];
    ht->table[index] = newNode;
}

// Search for a key in the hash table
int search(struct HashTable* ht, int key) {
    int index = hash(key);
    struct Node* current = ht->table[index];
    while (current != NULL) {
	if (current->data == key) {
	    return 1; // Key found
	}
	current = current->next;
    }
    return 0; // Key not found
}

void display(struct HashTable* ht) {
    int i;
    struct Node* current;
    for (i = 0; i < HASH_TABLE_SIZE; i++) {
	printf("Index %d: ", i);
	current = ht->table[i];
	while (current != NULL) {
	    printf("%d -> ", current->data);
	    current = current->next;
	}
	printf("NULL\n");
    }
}

int main() {
    struct HashTable ht;
    int i,choice,key;
    for (i = 0; i < HASH_TABLE_SIZE; i++) {
	ht.table[i] = NULL;
    }

    while (choice!=4) {
	printf("\nChoose an operation:\n");
	printf("1. Display hash table\n");
	printf("2. Insert a key\n");
	printf("3. Search for a key\n");
	printf("4. Exit\n");

	scanf("%d", &choice);

	switch (choice) {
	    case 1:
		printf("Hash Table Contents:\n");
		display(&ht);
		break;
	    case 2:
		printf("Enter a key to insert: ");
		scanf("%d", &key);
		insert(&ht, key);
		printf("Key inserted into the hash table.\n");
		break;
	    case 3:
		printf("Enter a key to search: ");
		scanf("%d", &key);
		if (search(&ht, key)) {
		    printf("%d is found in the hash table.\n", key);
		} else {
		    printf("%d is not found in the hash table.\n", key);
		}
		break;
	    case 4:
		exit(0);
	    default:
		printf("Invalid choice. Please choose again.\n");
		break;
	}
    }

    return 0;
}
font-family: alfabet, sans-serif;
font-style: normal;
font-weight: 100;
        
from numpy import hstack
from numpy.random import normal
from sklearn.mixture import GaussianMixture
import matplotlib.pyplot as plt
# generate a sample
X1 = normal(loc=20, scale=5, size=3000)
X2 = normal(loc=40, scale=5, size=7000)
X = hstack((X1, X2))
# plot the histogram
plt.hist(X, bins=50, density=True)
plt.show()
# reshape into a table with one column
X = X.reshape((len(X), 1))
# fit model
model = GaussianMixture(n_components=2, init_params='random')
model.fit(X)
yhat = model.predict(X) # predict latent values
print(yhat[:100])       # check latent value for first few points
print(yhat[-100:])      # check latent value for last few points
function custom_product_price($price, $product) {
    // Change the price for product with ID 46
    if ($product && $product->get_id() === 46) {
        $price = '500.00'; // Set the desired price
    }

    return $price;
}

add_filter('woocommerce_get_price_html', 'custom_product_price', 10, 2);
add_filter('woocommerce_cart_item_price', 'custom_product_price', 10, 2);
add_filter('woocommerce_cart_item_subtotal', 'custom_product_price', 10, 3);
netsh interface portproxy delete v4tov4 listenaddress=127.0.0.1 listenport=9000
netsh interface portproxy add v4tov4 listenaddress=127.0.0.1 listenport=9000 connectaddress=192.168.0.10 connectport=80
getUser() {
      const vm = this;
      vm.$loadingStore.openLoading();

      return new Promise((resolve, reject) => {
        vm.$api.authApi.getUser().then((response) => {
          if (response.data.ErrorMessage) {
            this.$notify({
              message: response.data.ErrorMessage,
              type: "error",
            });

            reject("失敗");
          } else {
            resolve(response.data);
          }
          vm.$loadingStore.closeLoading();
        });
      });
    },
class Solution
{
	public:
	//Function to find the level of node X.
	using pi = pair<int,int>;
	int nodeLevel(int V, vector<int> adj[], int X) 
	{
	    // code here
	    vector<bool> vis(V, false);
	    queue<pi> q;
	    q.push({0, 0});
	    vis[0] = true;
	    while(!q.empty()){
	        auto curr = q.front();q.pop();
	        if(curr.first == X)
	            return curr.second;
	       for(auto adjV : adj[curr.first]){
	           if(!vis[adjV]){
	               vis[adjV] = true;
	               q.push({adjV , curr.second + 1});
	           }
	       }
	    }
	    return -1;
	}
};
Email Source: Elementor Pro
Mailer: Google / Gmail
{
"error": {
"code": 401,
"message": "Request is missing required authentication credential. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.",
"errors": [
{
"message": "Login Required.",
"domain": "global",
"reason": "required",
"location": "Authorization",
"locationType": "header"
}
],
"status": "UNAUTHENTICATED",
"details": [
{
"@type": "type.googleapis.com/google.rpc.ErrorInfo",
"reason": "CREDENTIALS_MISSING",
"domain": "googleapis.com",
"metadata": {
"method": "caribou.api.proto.MailboxService.SendMessage",
"service": "gmail.googleapis.com"
}
}
]
}
}
Email Source: Elementor Pro
Mailer: Google / Gmail
{
"error": {
"code": 401,
"message": "Request is missing required authentication credential. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.",
"errors": [
{
"message": "Login Required.",
"domain": "global",
"reason": "required",
"location": "Authorization",
"locationType": "header"
}
],
"status": "UNAUTHENTICATED",
"details": [
{
"@type": "type.googleapis.com/google.rpc.ErrorInfo",
"reason": "CREDENTIALS_MISSING",
"domain": "googleapis.com",
"metadata": {
"method": "caribou.api.proto.MailboxService.SendMessage",
"service": "gmail.googleapis.com"
}
}
]
}
}
(function (root, factory) {
	if (typeof define === "function" && define.amd) {
		define("onDomReady", factory(root));
	} else if (typeof exports === "object") {
		module.onDomReady = factory(root);
	} else {
		root.onDomReady = factory(root);
	}
})(this, function (root) {
    "use strict";
    
    var win = window,
        doc = win.document,
        docElem = doc.documentElement,
        
        LOAD = "load",
        FALSE = false,
        ONLOAD = "on"+LOAD,
        COMPLETE = "complete",
        READYSTATE = "readyState",
        ATTACHEVENT = "attachEvent",
        DETACHEVENT = "detachEvent",
        ADDEVENTLISTENER = "addEventListener",
        DOMCONTENTLOADED = "DOMContentLoaded",
        ONREADYSTATECHANGE = "onreadystatechange",
        REMOVEEVENTLISTENER = "removeEventListener",
        
        isEventListener = ADDEVENTLISTENER in doc,
        isDomReady = FALSE,
        domReadyCallBacks = [];
        
    var exports = function (func) {
        function defer (func, wait) {
            setTimeout(func, +wait >= 0 ? wait : 1);
        }
        
        function ready (func) {
            if (!isDomReady) {
                if (!doc.body) {
                    return defer(ready);
                }
                
                isDomReady = true;

                while (func = domReadyCallBacks.shift()) {
                    defer(func);
                }
            }
        }
        
        function detach() {
            if (isEventListener) {
                doc[REMOVEEVENTLISTENER](DOMCONTENTLOADED, completed, FALSE);
                win[REMOVEEVENTLISTENER](LOAD, completed, FALSE);
            } else {
                doc[DETACHEVENT](ONREADYSTATECHANGE, completed);
                win[DETACHEVENT](ONLOAD, completed);
            }
        }
        
        function completed (event) {
            if (isEventListener || event.type === LOAD || doc[READYSTATE] === COMPLETE) {
                detach();
                ready();
            }
        }
        
        if (doc[READYSTATE] === COMPLETE) {
            defer(ready);
        } else if (isEventListener) {
            doc[ADDEVENTLISTENER](DOMCONTENTLOADED, completed, FALSE);
            win[ADDEVENTLISTENER](LOAD, completed, FALSE);
        } else {
            doc[ATTACHEVENT](ONREADYSTATECHANGE, completed);
            win[ATTACHEVENT](ONLOAD, completed );
        }
        
        isDomReady ? defer(func) : domReadyCallBacks.push(func);
    };
    
    return exports;
});

// An example of the use of function onDomReady.
onDomReady(function(){
    console.log("DOM IS READY");
});
/**
 *    @module
 *    @author daemon.devin <daemon.devin@gmail.com>
 *
 *    @param {String}   file - The path of the file you want to load.
 *    @param {Function} callback (optional) - Called after script load.
 */
var loader = loader || (Function() {
    return {
    	
    	load: function(file, callback) {

            var script = document.createElement('script');
            script.src = file, script.async = true;
            
  			// If defined, execute the callback after checking 
  			// if the script has been successfully loaded.
            if (callback !== undefined) {
            	
            	// IE calls `script.onreadystatechange()` continuously
            	// as the script loads. Use `script.onreadystatechange()`
            	// to check if the script has finished loading.
	        script.onreadystatechange = function() {
	                
	            // When the script finishes loading, IE sets 
	            // `script.readyState` to either 'loaded' or 'complete'.
	            if (script.readyState === 'loaded' ||
	                script.readyState === 'complete') {
	                    
                  	// Set `onreadystatechange()` to null to prevent 
                  	// it from firing again.
	                script.onreadystatechange = null;
	                    
	                // Execute the callback.
	                callback (file );
	            }
	        };
	            
	        // The following is one of the reasons IE is infereor
            // to all modern browsers.
	        script.onload = function () {
	            callback ( file );
	        };
            }
            
  			// Add the loaded script to the end of the document 
  			// so it won't hinder the rest of the page from loading.
            document.body.appendChild(script);
        } 
    };
}());
// Define your class
class MyModule {
  constructor($) {
    this.$ = $;
  }
  
  // Add methods and properties here
}

// Environment detection and initialization
(function() {
  if (typeof require === 'function' && typeof exports === 'object' && typeof module === 'object') {
    // CommonJS
    module.exports = MyModule;
  } else if (typeof define === 'function' && define.amd) {
    // AMD
    define(['jquery'], function($) {
      return new MyModule($);
    });
  } else {
    // Global
    if (typeof window.jQuery !== 'undefined') {
      window.MyModule = MyModule;
    }
  }
})();
class Main {
  public static void main (String[] args) {

    int c = 4;

    System.out.println (++c);
  }
}
// Output: 5
class Main {
  public static void main (String[] args) {

    int c = 4;

    System.out.println (--c);
  }
}
// Output: 3
class Main {
  public static void main (String[] args) {

    int a = 8;
    int b = 7;

    int result = a%b;

    System.out.println (result);
  }
}
// Output: 1
// Note: Output is 1 since the remainder is 1
class Main {
    public static void main(String[] args) {

       double a = 5;
       double b = 2;
      
       double result = a/b;
      
       System.out.println(result);
    }
}
// Output: 2.5
class Main {
  public static void main (String[] args) {

    int a = 8;
    int b = 7;

    int result = a*b;

    System.out.println (result);
  }
}
// Output: 56
class Main {
  public static void main (String[] args) {

    int a = 8;
    int b = 7;

    int result = a-b;

    System.out.println (result);
  }
}
// Output: 1
class Main {
  public static void main (String[] args) {
 
    int a = 8;
    int b = 7;
 
    int result = a+b;
 
    System.out.println (result);
  }
}
// Output: 15
star

Fri Oct 20 2023 15:47:08 GMT+0000 (Coordinated Universal Time)

@CloudWhisperer #c++

star

Fri Oct 20 2023 14:58:32 GMT+0000 (Coordinated Universal Time)

@CloudWhisperer #c++

star

Fri Oct 20 2023 14:53:17 GMT+0000 (Coordinated Universal Time) undefined

@bwilliams

star

Fri Oct 20 2023 14:41:39 GMT+0000 (Coordinated Universal Time)

@wasim_mm1

star

Fri Oct 20 2023 14:39:54 GMT+0000 (Coordinated Universal Time) https://store.phoenixagencyservices.io/product/facebook-ads-pro/

@wasim_mm1

star

Fri Oct 20 2023 14:38:18 GMT+0000 (Coordinated Universal Time) https://store.phoenixagencyservices.io/

@wasim_mm1

star

Fri Oct 20 2023 14:06:36 GMT+0000 (Coordinated Universal Time)

@yolobotoffender

star

Fri Oct 20 2023 13:40:22 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Fri Oct 20 2023 13:27:32 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Fri Oct 20 2023 13:25:31 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Fri Oct 20 2023 12:15:19 GMT+0000 (Coordinated Universal Time)

@usman_hamed

star

Fri Oct 20 2023 11:58:06 GMT+0000 (Coordinated Universal Time) https://www.firebeetechnoservices.com/dapp-development-company

@rachelgeller

star

Fri Oct 20 2023 10:21:24 GMT+0000 (Coordinated Universal Time)

@yolobotoffender

star

Fri Oct 20 2023 09:01:47 GMT+0000 (Coordinated Universal Time)

@kayengxiong #nuxt

star

Fri Oct 20 2023 06:54:16 GMT+0000 (Coordinated Universal Time)

@shivraj_92 #python #mysql

star

Fri Oct 20 2023 05:48:16 GMT+0000 (Coordinated Universal Time)

@109_Vivek

star

Fri Oct 20 2023 05:47:40 GMT+0000 (Coordinated Universal Time)

@109_Vivek

star

Fri Oct 20 2023 05:07:23 GMT+0000 (Coordinated Universal Time) https://play.tailwindcss.com/5xFxuQCFkW

@sadik #css #frontend #styling #tailwindcss

star

Fri Oct 20 2023 01:18:34 GMT+0000 (Coordinated Universal Time) https://case-battle.io/

@Leroy

star

Fri Oct 20 2023 00:28:04 GMT+0000 (Coordinated Universal Time)

@Muhammad_Waqar

star

Thu Oct 19 2023 23:58:36 GMT+0000 (Coordinated Universal Time)

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

star

Thu Oct 19 2023 18:49:06 GMT+0000 (Coordinated Universal Time)

@vs #r

star

Thu Oct 19 2023 17:50:17 GMT+0000 (Coordinated Universal Time) https://practice.geeksforgeeks.org/problems/word-break-part-23249/1

@DxBros #backtracking #dynamic_programming #hard

star

Thu Oct 19 2023 17:49:03 GMT+0000 (Coordinated Universal Time) https://practice.geeksforgeeks.org/problems/rat-in-a-maze-problem/1

@DxBros #backtracking #medium

star

Thu Oct 19 2023 17:17:01 GMT+0000 (Coordinated Universal Time)

@seb_prjcts_be

star

Thu Oct 19 2023 17:07:44 GMT+0000 (Coordinated Universal Time) https://getbootstrap.com/docs/5.3/getting-started/introduction/

@rashed

star

Thu Oct 19 2023 14:26:43 GMT+0000 (Coordinated Universal Time)

@Astik

star

Thu Oct 19 2023 13:57:10 GMT+0000 (Coordinated Universal Time) https://fonts.adobe.com/fonts/ltc-nicholas-cochin-pro#licensing-section

@lamberd

star

Thu Oct 19 2023 13:22:20 GMT+0000 (Coordinated Universal Time) https://playerok.com/profile/Froezed/products

@faigs

star

Thu Oct 19 2023 13:15:08 GMT+0000 (Coordinated Universal Time)

@Astik

star

Thu Oct 19 2023 12:55:27 GMT+0000 (Coordinated Universal Time) https://fonts.adobe.com/fonts/alfabet

@lamberd

star

Thu Oct 19 2023 08:55:27 GMT+0000 (Coordinated Universal Time) https://biocomputing-teaching.github.io/Data-Science-with-Python/code/UNIT4-Unsupervised-Learning.html

@Hack3rmAn

star

Thu Oct 19 2023 08:29:31 GMT+0000 (Coordinated Universal Time) https://zhuanlan.zhihu.com/p/445891738

@yingjg0216

star

Thu Oct 19 2023 08:29:27 GMT+0000 (Coordinated Universal Time) https://zhuanlan.zhihu.com/p/445891738

@yingjg0216

star

Thu Oct 19 2023 07:53:06 GMT+0000 (Coordinated Universal Time)

@kiroy

star

Thu Oct 19 2023 07:20:10 GMT+0000 (Coordinated Universal Time) https://practice.geeksforgeeks.org/problems/level-of-nodes-1587115620/1

@DxBros #bfs #graphs #easy

star

Thu Oct 19 2023 06:48:37 GMT+0000 (Coordinated Universal Time) https://chen-studio.co.il/wp-admin/admin.php?page

@chen

star

Thu Oct 19 2023 06:47:57 GMT+0000 (Coordinated Universal Time) https://chen-studio.co.il/wp-admin/admin.php?page

@chen

star

Thu Oct 19 2023 06:37:18 GMT+0000 (Coordinated Universal Time)

@daemondevin #javascript #ondomready #readystate #defer #domcontentloaded

star

Thu Oct 19 2023 06:27:29 GMT+0000 (Coordinated Universal Time)

@daemondevin #javascript #module #async #script

star

Thu Oct 19 2023 02:53:33 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Thu Oct 19 2023 02:52:43 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Thu Oct 19 2023 02:51:47 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Thu Oct 19 2023 02:51:09 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Thu Oct 19 2023 02:50:44 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Thu Oct 19 2023 02:50:21 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Thu Oct 19 2023 02:49:39 GMT+0000 (Coordinated Universal Time)

@testpro #java

Save snippets that work with our extensions

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