Snippets Collections
sudo apt-get update
BankAccount.java

import java.util.Scanner;

public class BankAccount {
    String name;
	private double balance;
	private int depositCount = 0;
	private int withdrawCount = 0;
	
	public void deposit(double amount){
		balance += amount;
		System.out.println(amount + " is successfully Deposited");
		depositCount++;
		if(balance > 100000){
			balance = balance + (amount / 100);
		}
	}
	public void withdraw(double amount){
		if(balance >= amount){
			if(balance - amount < 50000){
				System.out.println("Asre you sure you want to withdraw, it would make your balance below 50,000");
				System.out.println("Press 1 to continue and 0 to abort");
				Scanner input = new Scanner(System.in);
				int confirm = input.nextInt();
				if(confirm != 1){
					System.out.println("Withdrawal aborted");
					return;
				}
			}
			double withdrawAmount = amount;
			if(balance < 50000){
				withdrawAmount = withdrawAmount + amount * 0.02;
				withdrawCount++;
			}
			balance = balance - withdrawAmount;
			System.out.println(withdrawAmount + " is successfully withdrawn");
			
		}
		else{
			System.out.println("Insufficient funds");
		}
			
	}
	public double getBalance(){
		return balance;
	}
	void transaction(){
		System.out.println("Account title: " + name);
		System.out.println("Total deposit: " + depositCount);
		System.out.println("Total withdraw: " + withdrawCount);
		System.out.println("Balance: " + balance);
	}
	
}

///////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////

BankAccountTest.java

import java.util.Scanner;

public class BankAccountTest{
	
	public static void main(String args[]){
		
		BankAccount account = new BankAccount();
		
		Scanner input = new Scanner(System.in);
		account.name = "Maan";
		
		int choice;
		
		do{
			System.out.println("Press 1: To Deposit an amount\nPress 2: To Withdraw an amount\nPress 3: To View the current balance\nPress 4: To Close the program");
		    choice = input.nextInt();
		
		    switch(choice){
			case 1:
			System.out.println("Enter the amount you want to Deposite");
			double depositeAmount = input.nextDouble(); 
			account.deposit(depositeAmount);
			break;
			case 2:
			System.out.println("Enter the amount you want to withdraw");
			double withdrawAmount = input.nextDouble();
			account.withdraw(withdrawAmount);
			break;
			case 3:
			System.out.println("Your current balance is " + account.getBalance());
			break;
			case 4:
			System.out.println("The program is terminated");
			account.transaction();
			break;
			default:
			System.out.println("Incorrect choice. Please try again!");
			break;
			
		
		}
		
	}while(choice!=4);
  }
	
}
public class BankAccount {
    String name;
	private double balance;
	private int depositCount = 0;
	private int withdrawCount = 0;
	
	public void deposit(double amount){
		balance += amount;
		System.out.println(amount + " is successfully Deposited");
		depositCount++;
		if(balance > 100000){
			balance = balance + (amount / 100);
		}
	}
	public void withdraw(double amount){
		if(balance >= amount){
			balance -= amount;
			System.out.println(amount + " is successfully Withdrawn");
			withdrawCount++;
		}
		else{
			System.out.println("Insufficient funds");
		}
			
	}
	public double getBalance(){
		return balance;
	}
	void transaction(){
		System.out.println("Account title: " + name);
		System.out.println("Total deposit: " + depositCount);
		System.out.println("Total withdraw: " + withdrawCount);
		System.out.println("Balance: " + balance);
	}
	
}

//////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////

import java.util.Scanner;

public class BankAccountTest{
	
	public static void main(String args[]){
		
		BankAccount account = new BankAccount();
		
		Scanner input = new Scanner(System.in);
		account.name = "Maan";
		
		int choice;
		
		do{
			System.out.println("Press 1: To Deposit an amount\nPress 2: To Withdraw an amount\nPress 3: To View the current balance\nPress 4: To Close the program");
		    choice = input.nextInt();
		
		    switch(choice){
			case 1:
			System.out.println("Enter the amount you want to Deposite");
			double depositeAmount = input.nextDouble(); 
			account.deposit(depositeAmount);
			break;
			case 2:
			System.out.println("Enter the amount you want to withdraw");
			double withdrawAmount = input.nextDouble();
			account.withdraw(withdrawAmount);
			break;
			case 3:
			System.out.println("Your current balance is " + account.getBalance());
			break;
			case 4:
			System.out.println("The program is terminated");
			account.transaction();
			break;
			default:
			System.out.println("Incorrect choice. Please try again!");
			break;
			
		
		}
		
	}while(choice!=4);
  }
	
}
BankAccount.java

public class BankAccount {
    String name;
	private double balance;
	private int depositCount = 0;
	private int withdrawCount = 0;
	
	public void deposit(double amount){
		balance += amount;
		System.out.println(amount + " is successfully Deposited");
		depositCount++;
	}
	public void withdraw(double amount){
		if(balance >= amount){
			balance -= amount;
			System.out.println(amount + " is successfully Withdrawn");
			withdrawCount++;
		}
		else{
			System.out.println("Insufficient funds");
		}
			
	}
	public double getBalance(){
		return balance;
	}
	void transaction(){
		System.out.println("Account title: " + name);
		System.out.println("Total deposit: " + depositCount);
		System.out.println("Total withdraw: " + withdrawCount);
		System.out.println("Balance: " + balance);
	}
	
}

/////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////

BankAccountTest.java

import java.util.Scanner;

public class BankAccountTest{
	
	public static void main(String args[]){
		
		BankAccount account = new BankAccount();
		
		Scanner input = new Scanner(System.in);
		account.name = "Maan";
		
		int choice;
		
		do{
			System.out.println("Press 1: To Deposit an amount\nPress 2: To Withdraw an amount\nPress             3: To View the current balance\nPress 4: To Close the program");
		    choice = input.nextInt();
		
		    switch(choice){
			case 1:
			System.out.println("Enter the amount you want to Deposite");
			double depositeAmount = input.nextDouble(); 
			account.deposit(depositeAmount);
			break;
			case 2:
			System.out.println("Enter the amount you want to withdraw");
			double withdrawAmount = input.nextDouble();
			account.withdraw(withdrawAmount);
			break;
			case 3:
			System.out.println("Your current balance is " + account.getBalance());
			break;
			case 4:
			System.out.println("The program is terminated");
			account.transaction();
			break;
			default:
			System.out.println("Incorrect choice. Please try again!");
			break;
			
		
		}
		
	}while(choice!=4);
  }
	
}
gcloud auth login --no-launch-browser
https://support.wix.com/en/article/roles-permissions-overview
n=int(input("enter value of n="))
no=int(input("no.of digits="))
x=n
arm=0
while(n>0):
                r=n%10
                arm=arm+(r**no)
                n=n/10
if(x==arm):
                print("given no. is armstrong number")
else:
                print("given no. is not a armstrong number")
{
    "payment_method": "stripe_cc",
    "set_paid": true,
      "line_items": [
    {
      "product_id": 13197,
      "quantity": 2
    }
  ],
  "shipping_lines": [
    {
      "method_id": "flat_rate",
      "method_title": "Flat Rate",
      "total": "10.00"
    }
  ],
  "billing": {
    "first_name": "John",
    "last_name": "Doe",
    "address_1": "969 Market",
    "address_2": "",
    "city": "San Francisco",
    "state": "CA",
    "postcode": "94103",
    "country": "US",
    "email": "john.doe@example.com",
    "phone": "(555) 555-5555"
  },
  "shipping": {
    "first_name": "John",
    "last_name": "Doe",
    "address_1": "969 Market",
    "address_2": "",
    "city": "San Francisco",
    "state": "CA",
    "postcode": "94103",
    "country": "US"
  },
  "needs_payment": false,
        "needs_processing": true,
  "created_via": "checkout",
  "payment_method_title": "Visa ending in 4242",
  "transaction_id": "ch_3OtngJHN7xUNmfx50a9vDRDv"

}
n=int(input("enter value of n "))
n
x=n
rev=0
while(n>0):
                r=n%10
                rev=(rev*10)+r
                n=n/10
if(x==rev):
                print("it is a palindrome")
else:
                print("given number is not a palindrome")
https://codepen.io/amazingweb/pen/LRpWGe
n=int(input("enter max range"))
num=1
while(num<=n):
                count=0
                i=2
                while(i<=num/2):
                                if (num%i==0):
                                                count=count+1
                                                break
                                i=i+1
                if(count==0&num!=1):
                                print(num)
                num=num+1 
function getDistinctLocations(selectedProducts, selectedCharNums) {
    var productFilterString = "";
    selectedProducts.forEach(function(product, index) {
        if (index > 0) {
            productFilterString += " or ";
        }
        productFilterString += "PRODUCT eq '" + product + "'";
    });

    var charNumFilterString = "";
    selectedCharNums.forEach(function(charNum, index) {
        if (index > 0) {
            charNumFilterString += " or ";
        }
        charNumFilterString += "CHARNUM eq '" + charNum + "'";
    });

    var oModel = new sap.ui.model.odata.v2.ODataModel("/YourODataService");
    oModel.read("/YourEntitySet", {
        urlParameters: {
            "$apply": "groupby((LOCATION))",
            "$filter": productFilterString + " and (" + charNumFilterString + ")"
        },
        success: function(data) {
            // Process distinct locations data
            // Populate a dropdown or list with distinct locations
        },
        error: function(error) {
            // Handle error
        }
    });
}
p=float(input("enter principle"))
t=float(input("enter time"))
r=float(input("enter rate"))
si=(p*t*r)/100
print(si)
//comp
p=int(raw_input("enter principle"))
t=int(raw_input("enter time"))
r=int(raw_input("enter rate"))
ci=p*(1+r)**t
print(ci)
<html>

<input id="contact" name="address">

<script>

    var x = document.getElementById("contact").getAttribute('name');

</script>

</html>
# Pemavor.com Autocomplete Scraper
# Author: Stefan Neefischer (stefan.neefischer@gmail.com)
 
import concurrent.futures
import pandas as pd
import itertools
import requests
import string
import json
import time
​
startTime = time.time()
​
# If you use more than 50 seed keywords you should slow down your requests - otherwise google is blocking the script
# If you have thousands of seed keywords use e.g. WAIT_TIME = 1 and MAX_WORKERS = 10
 
WAIT_TIME = 0.1
MAX_WORKERS = 20
​
# set the autocomplete language
lang = "en"
​
​
charList = " " + string.ascii_lowercase + string.digits
​
def makeGoogleRequest(query):
    # If you make requests too quickly, you may be blocked by google 
    time.sleep(WAIT_TIME)
    URL="http://suggestqueries.google.com/complete/search"
    PARAMS = {"client":"firefox",
            "hl":lang,
            "q":query}
    headers = {'User-agent':'Mozilla/5.0'}
    response = requests.get(URL, params=PARAMS, headers=headers)
    if response.status_code == 200:
        suggestedSearches = json.loads(response.content.decode('utf-8'))[1]
        return suggestedSearches
    else:
        return "ERR"
​
def getGoogleSuggests(keyword):
    # err_count1 = 0
    queryList = [keyword + " " + char for char in charList]
    suggestions = []
    for query in queryList:
        suggestion = makeGoogleRequest(query)
        if suggestion != 'ERR':
            suggestions.append(suggestion)
​
    # Remove empty suggestions
    suggestions = set(itertools.chain(*suggestions))
    if "" in suggestions:
        suggestions.remove("")
​
    return suggestions
​
​
#read your csv file that contain keywords that you want to send to google autocomplete
df = pd.read_csv("keyword_seeds.csv")
# Take values of first column as keywords
keywords = df.iloc[:,0].tolist()
​
resultList = []
​
with concurrent.futures.ThreadPoolExecutor(max_workers=MAX_WORKERS) as executor:
    futuresGoogle = {executor.submit(getGoogleSuggests, keyword): keyword for keyword in keywords}
​
    for future in concurrent.futures.as_completed(futuresGoogle):
        key = futuresGoogle[future]
        for suggestion in future.result():
            resultList.append([key, suggestion])
​
# Convert the results to a dataframe
outputDf = pd.DataFrame(resultList, columns=['Keyword','Suggestion'])
​
# Save dataframe as a CSV file
outputDf.to_csv('keyword_suggestions.csv', index=False)
print('keyword_suggestions.csv File Saved')
​
print(f"Execution time: { ( time.time() - startTime ) :.2f} sec")
VM instances
Filter


Status
Name
Zone
Recommendations
In use by
Internal IP
External IP
Connect
Updating. This instance is being stopped	instance-20240312-214655	us-central1-a		
10.128.0.2 (nic0)	34.121.121.234  (nic0) 	
SSH
		
Related actions
 HIDE
import Image from "next/image";

export default function Home() {
  return (
    <main className="flex flex-row items-center h-screen w-full overscroll-none sm:flex sm:flex-col ">
      <div className=" lg: flex lg: flex-row lg: items-center lg: w-screen lg: h-screen lg: overflow-hidden">
        <div className="p-0 flex h-screen w-1/2 justify-center align-middle items-center">
          <div className="sm: w-[40.45px] sm: h-[36.56px] 2xl: w-[693px] 2xl: h-[444px] 2xl:items-center 2xl: flex 2xl: justify-center">
            <Image
              src={"/twitter.png"}
              alt="Twitter's logo"
              width={341.57}
              height={308.75}
              className="w-[40.45px] h-[36.56px] sm:w-[341.57px] sm:h-[308.75px] sm: self-start xl: self-center"
            />
          </div>
        </div>
        <div className="p-4 flex h-screen w-1/2 justify-center align-middle items-center">
          <div className="p-5 w-full align-middle">
            <div className="w-fit h-fit">
              <h2 className="text-[64px] m-12 ml-0 mr-0 w-fit">
                Happening now
              </h2>
              <h2 className="text-[31px] w-full mb-8">
                Join today.
              </h2>
              <div className=" w-full h-fit ">
                <div className="flex flex-row ">
                  <div className="flex flex-row outline outline-1 pl-4 pr-4 rounded-3xl w-[300px] h-[40px] justify-center mb-2">
                    <Image className=" object-scale-down w-5 h-5 self-center mr-2" src={"/google.png"} alt="Google Logo" width={32 } height={32} />
                    <h1 className=" text-[14px] self-center">
                      Sign up with Google
                    </h1>
                  </div>
                    
                </div>
              </div>
              <div className=" w-full h-fit ">
                <div className="flex flex-row ">
                  <div className="flex flex-row outline outline-1 pl-4 pr-4 rounded-3xl w-[300px] h-[40px] justify-center">
                    <Image className=" object-scale-down w-5 h-5 self-center mr-2" src={"/apple-logo.png"} alt="Google Logo" width={32 } height={32} />
                    <h1 className=" text-[14px] self-center">
                      Sign up with Apple
                    </h1>
                  </div>
                    
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
      <div className="flex flex-col w-full align-middle items-center pt-3 pb-3 pl-4 pr-4">
        <nav className="flex flex-row ">
          <span>
            About
          </span>
          <span>
            Download the X app
          </span>
          <span>
            Help Center
          </span>
          <span>
            Terms of Service
          </span>
          <span>
            Privacy Policy
          </span>
          <span>
            Cookie Policy
          </span>
          <span>
            Accessibility
          </span>
          <span>
            Ads info
          </span>
          <span>
            Blog
          </span>
          <span>
            Status
          </span>
          <span>
            Careers 
          </span>
          <span>
            Brand Resources
          </span>
          <span>
            Advertising
          </span>
          <span>
            Marketing
          </span>
          <span>
            X for Business
          </span>
          <span>
            Developers
          </span>
          <span>
            Directory
          </span>
          <span>
            Settings
          </span>
          <span>
            © 2024 X, Corp.
          </span>
        </nav>
      </div>
    </main>
  );
}
#include <stdio.h>

int main() {
    int x[5]={8, 10, 6, 2, 4};
    int temp, i, j;
    
    for(i=0; i<=4; i++)
        for(j=0; j<4; j++)
        
            if(x[j] > x[j+1])
            {
                temp=x[j];
                x[j]=x[j+1];
                x[j+1]= temp;
            }
    for(i=0; i<=4; i++)
    printf("%d   ", x[i]);
        

    return 0;
}
"default-src 'none'; frame-src 'self'; frame-ancestors 'self'; connect-src 'self'; font-src 'self'; img-src 'self'; media-src 'self'; base-uri 'self'; object-src 'none'; script-src 'none'; style-src 'self'; mysite.com.au *.mysite.com.au"
SSH Keys
SSH keys
Username
Key
alice	
ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBM0VmnyV3SGBQMoIKi5SJbBlSKXZmSvnL6sKa5ROSn5K1t8XZvzy+B8zLeKy+S2oRAOVFRriB5eYyrgLLBpBP8Q= google-ssh {"userName":"alice@openoversightva.org","expireOn":"2024-03-12T22:10:38+0000"}
alice	
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAFy3N7Bl5lVFguaKv8stwB56vxugG+wdeqf7XmHW+PDxHA3COTYQdbzjiRx3dQjdPgJwlRPMafJN87PBCcj/iNQc2gY8rquPGMVIdvaJ98zpvIb1ZATFhC9OOqtTrY+WKAVbXa4X/S/YBL8UowqZqGGIbhVWO/0YaaHz/+RjXDqAcSRnRRc6wzK+1rzR3ru8NTbp5pKWYEgbFhFuqqM4xMWljZLGxTwUaZLh39Mbr1tF/mmqDSPROQvpfjOawrD90A/Xdvnhysvwnwto7Ny+6hzuEEVWqBRLHJ0Lpj7Q6CPX7Mhqe72NeHLLOCD1hDp1pnpNplAZSI5Qo6Fg4gZBhEc= google-ssh {"userName":"alice@openoversightva.org","expireOn":"2024-03-12T22:10:53+0000"}
Paid account
Account name
GFCloud Startups Start Credit, 018223-68EB10-2F7F6A

Organization
openoversightva.org
Your account was upgraded from free trial on Nov 15, 2023.

Your account is currently a paid account that will accrue a balance. You may have leftover free trial credits or other credits that will continue to offset your costs.
Additional Information
Field	Value
Last updated	February 2, 2024
Created	October 5, 2023
Format	CSV
Columns	20
Rows	3242892
Created	5 months ago
Size	606,573,418
Ckan url	https://data.virginia.gov
Datastore active	True
Datastore contains all records of source file	True
Has views	True
Hash	ce5901703d29aa8a35574b75fe137979
Id	60506bbb-685f-4360-8a8c-30e137ce3615
Ignore hash	True
On same domain	True
Original url	https://data.virginia.gov/dataset/de833a43-7019-444c-8384-9e0cf5255140/resource/60506bbb-685f-4360-8a8c-30e137ce3615/download/community_policing_data_july_1__2020_to_september_30__2023_20240202.csv
Package id	de833a43-7019-444c-8384-9e0cf5255140
Resource id	60506bbb-685f-4360-8a8c-30e137ce3615
State	active
Task created	2024-02-28 21:20:02.708608
Url type	upload
The Data API can be accessed via the following actions of the CKAN action API.

Create	https://data.virginia.gov/api/3/action/datastore_create
Update / Insert	https://data.virginia.gov/api/3/action/datastore_upsert
Query	https://data.virginia.gov/api/3/action/datastore_search
Query (via SQL)	https://data.virginia.gov/api/3/action/datastore_search_sql
Example: Python »
import json
import urllib.request
url = 'https://data.virginia.gov/api/3/action/datastore_search?resource_id=60506bbb-685f-4360-8a8c-30e137ce3615&limit=5&q=title:jones'  
fileobj = urllib.request.urlopen(url)
response_dict = json.loads(fileobj.read())
print(response_dict)
Example: Javascript »
A simple ajax (JSONP) request to the data API using jQuery.

var data = {
  resource_id: '60506bbb-685f-4360-8a8c-30e137ce3615', // the resource id
  limit: 5, // get 5 results
  q: 'jones' // query for 'jones'
};
$.ajax({
  url: 'https://data.virginia.gov/api/3/action/datastore_search',
  data: data,
  dataType: 'jsonp',
  success: function(data) {
    alert('Total results found: ' + data.result.total)
  }
});
{
  "e8d48982de0bd2a4cb764af7cf92a546163082ee": "-----BEGIN CERTIFICATE-----\nMIIC/DCCAeSgAwIBAgIIANTOoBjIQWswDQYJKoZIhvcNAQEFBQAwIDEeMBwGA1UE\nAxMVMTA3NjU3OTk2MDk1NDA4NzA0MTQ1MCAXDTI0MDIyOTAwMzkxMVoYDzk5OTkx\nMjMxMjM1OTU5WjAgMR4wHAYDVQQDExUxMDc2NTc5OTYwOTU0MDg3MDQxNDUwggEi\nMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCwu151+B7eQRKJ97H2pQmBp8U5\nhn9TRPFQTz6GWUNEwNooRloO6Hxbzj5ASiQFPX3xLz7VipsVHt9504Rm/jJGhZ1q\nDKr79qEU1nH5RUxC6A+PlGCS5IHU4sRcuqUuHrQ/g9RelUlA+4U5KwG0lUIin80n\n7Tz21lDpUlVlqxcHv1Cc/gQvWILmB+8/oKf3blv7QCPbtTSd2H4STE4jJmz3PwLO\nahLaeIddS7OqukEjV+cp2cnSkO65xu2jBz9h6zl2WjVrQkMuzPECxM4HmwqrhS0n\ndyxI0mrB8ppDfSrAvd77aLH2VQRPv7ub2p5NRv7zUgU1nGzEUiiYcqBJx1pZAgMB\nAAGjODA2MAwGA1UdEwEB/wQCMAAwDgYDVR0PAQH/BAQDAgeAMBYGA1UdJQEB/wQM\nMAoGCCsGAQUFBwMCMA0GCSqGSIb3DQEBBQUAA4IBAQAR+/9ytKUJ1WYGN/K8WMyw\nvdppDFKqBNi6AboZoJOsTlm97DO3cy2nmpHV0GeUhaelEAkmzfjYMIcWXpbn4I7P\n2qUERKKoIKJJlIR4TMY5VmlHc6YrulRrq3KTaVIpYbtdQ4OJMQMaWRi2l8GhKraG\nqiQK6J57PuvamoG1OP+Q1vqTyIkv0Q6DFevmTflu6tsOY2T+CSletNTlQg9/zwMl\nAyakA1CX8hT5WG0WRL8AbBMpy7ht4SxfEs5rvE2/ajBKM0uVggwr51+B7nNQiA3K\nYdroOYr1HusHQpF5cvigNkBKb5KpuvHFJn2qnDgqb9/YluxdlZFM8df50zTobsV3\n-----END CERTIFICATE-----\n",
  "868a9663ad2eb51c1b8855395e3610a79429cd41": "-----BEGIN CERTIFICATE-----\nMIIDPDCCAiSgAwIBAgIIJ7uRI2ZYhXIwDQYJKoZIhvcNAQEFBQAwQTE/MD0GA1UE\nAww2aWdrLTMxOC5jYXBhYmxlLWRyb3BsZXQtNDA1MjA1LmlhbS5nc2VydmljZWFj\nY291bnQuY29tMB4XDTI0MDMwODAwMjEwNVoXDTI0MDMyNDEyMzYwNVowQTE/MD0G\nA1UEAww2aWdrLTMxOC5jYXBhYmxlLWRyb3BsZXQtNDA1MjA1LmlhbS5nc2Vydmlj\nZWFjY291bnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1CLS\nCm46sM4Gsk+KRID07Ry1b+xz8sF6i+Gx7x/P8X8kNaLBHfogo5GLWQHIxN2PIka8\nZSjmChyT/GZtoSghJhQnpSGZ7SOQuKPsSZViZWnx0R6pk0cViWcz6dqo+whcILjb\naGfmO3vYXXX8sLi72r7kF+EZHie/uCBPlUrDT/GQL1waQ7HVLUwC+wZLEF3v4vct\nb2A/7oWAwdumBa1eN/ybs4+WiCdnPjfGgNqZPt2drIBHkReDInJ02FfycoeMHdYn\n47lwYGi7ECOmsW1ZcpeF4l/H/ozdZlHI64qe46MRBSMTFe19VCaRVSCzdV3bNPEZ\nvRGfycHlL8q266QJ9wIDAQABozgwNjAMBgNVHRMBAf8EAjAAMA4GA1UdDwEB/wQE\nAwIHgDAWBgNVHSUBAf8EDDAKBggrBgEFBQcDAjANBgkqhkiG9w0BAQUFAAOCAQEA\neI1LGBd5jygd91Z01NOE612rNyQNg0SBkhkBRCfdolSCCkCYDGCnfq3GTUjvwWHG\n9SpQsfFkFaZix/Nf8n7OskzCUFzjAos4+9nAtS1yVVfjZ2VRK+3fNTBaODs3WcAu\nDziWwDlEGK2bHYiWk5CuZFmZ4+dDBLiTcWIB3KA3IzWOK2CqbEqJPmjuHkUB0rX4\nKSJXeBmDc/hbkPIrGF8DRuv32l22dnAchWKo2e7ZnhEqWIHWj2kltIt7xh2vpvTc\nXpQC7XxAF8Ghh+V8+8Oiw0sTa9AMoMe1ezTSp3bEtBa5xdyOwAKjzsuu6h27jd1h\npxeFq7DwsvMp//3wTtAwQQ==\n-----END CERTIFICATE-----\n",
  "d5d13305f22e6a1e8cf2e2422e544a36debd806b": "-----BEGIN CERTIFICATE-----\nMIIDPDCCAiSgAwIBAgIIGgWfEoJR8U8wDQYJKoZIhvcNAQEFBQAwQTE/MD0GA1UE\nAxM2aWdrLTMxOC5jYXBhYmxlLWRyb3BsZXQtNDA1MjA1LmlhbS5nc2VydmljZWFj\nY291bnQuY29tMB4XDTI0MDIyOTAwMjcxOVoXDTI2MDIyODIyMTI0MFowQTE/MD0G\nA1UEAxM2aWdrLTMxOC5jYXBhYmxlLWRyb3BsZXQtNDA1MjA1LmlhbS5nc2Vydmlj\nZWFjY291bnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1UiB\nKyiJ3IX2jiOciE2SgAhdNhqi2Dmd8kGxQbg6fIPe+D0oW75PI+mY24oLqFiFjVdz\n4AjfmPUoZHiqhmiql5as6jIkXBEuusTks/ghI2Y7YRnbbNWL80d84xEP30d+Wjsd\nFUMNbZtNQTxWoDE6H/rHN+DX4HG1+6UZTpwYvG9JvHnUJ85PanaQD3HpRHACHAdN\n7ceVedzi09MrtUObSnfIRobflQNr4bejbByBiD/cVghlIkhL5GtRhjURC7mgkUIH\nh3c3xy03WWdpZFBf3XZME6J4upKZ8VV7E8WV+h6GXfbH3DKZVjRiC00GSWfW+FeA\nbKpnklgzluYMgsJMTQIDAQABozgwNjAMBgNVHRMBAf8EAjAAMA4GA1UdDwEB/wQE\nAwIHgDAWBgNVHSUBAf8EDDAKBggrBgEFBQcDAjANBgkqhkiG9w0BAQUFAAOCAQEA\nbARvq6oF++nHEIk301kz+QoclF9GuM7dZL6WxIw0XClQuHYMGk5zjD2/t+5++zym\nqRoGVfRWIUiRaNU6YH7XAVz/+/OFG8yMmm5t2Y0QE/ySGgi0p58Fb8ljmd2R+TvQ\npJClIXb/B56HBALpvdz8jAlpvkd82RsDb3q1k8d0SwuBz2uKeyGxTQVlBTDocG57\n3LWubvkx/p0riLVjuccKJJOSvuBFf3befjoeIZyFPhbTHg77usO9KTTERfiW1h39\nahazDevg2mTS6xgVU5NgtQ1FQ9lW1gCeM0KGuhpP0FlsgHEzC0cyCk2oiMV+PEPH\nhlBovmT2xl0fas4sg9JPQQ==\n-----END CERTIFICATE-----\n"
}
// BankAccount.java

public class BankAccount {
	private String name;
	private double balance;
	
	public void deposit(double amount){
		balance += amount;
		System.out.println(amount + " is successfully Deposited");
	}
	public void withdraw(double amount){
		if(balance >= amount){
			balance -= amount;
			System.out.println(amount + " is successfully Withdrawn");
		}
		else{
			System.out.println("Insufficient funds");
		}
			
	}
	public double getBalance(){
		return balance;
	}
	
}

//////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////

//BankAccountTest.java

import java.util.Scanner;

public class BankAccountTest{
	
	public static void main(String args[]){
		
		BankAccount account = new BankAccount();
		
		Scanner input = new Scanner(System.in);
		System.out.println("Enter account holder name: ");
		String name = input.nextLine();
		
		int choice;
		
		do{
			System.out.println("Press 1: To Deposit an amount\nPress 2: To Withdraw an amount\nPress 3: To View the current balance\nPress 4: To Close the program");
		    choice = input.nextInt();
		
		    switch(choice){
			case 1:
			System.out.println("Enter the amount you want to Deposite");
			double depositeAmount = input.nextDouble(); 
			account.deposit(depositeAmount);
			break;
			case 2:
			System.out.println("Enter the amount you want to withdraw");
			double withdrawAmount = input.nextDouble();
			account.withdraw(withdrawAmount);
			break;
			case 3:
			System.out.println("Your current balance is " + account.getBalance());
			break;
			case 4:
			System.out.println("The program is terminated");
			break;
			default:
			System.out.println("Incorrect choice. Please try again!");
			break;
			
		
		}
		
	}while(choice!=4);
  }
	
}
[
    {
        $group: {
            _id: "$participantId",
            documents: { $push: "$$ROOT" },
            count: { $sum: 1 }
        }
    },
    {
        $match: {
            count: { $gt: 1 }
        }
    },
    {
        $unwind: "$documents"
    },
    {
        $match: {
            "documents.programCode": { $ne: "" }
        }
    },
    {
        $group: {
            _id: {
                participantId: "$_id",
                programCode: "$documents.programCode",
                programStartDate: "$documents.programStartDate"
            },
            baselineId: { $first: "$_id" },
            documentIds: { $push: "$documents._id" }, 
            documents: { $push: "$documents" },
            count: { $sum: 1 }
        }
    },
    {
        $match: {
            count: { $gt: 1 }
        }
    },
    {
        $project: {
            _id: 1,
            participantId: "$_id.participantId",
            programCode: "$_id.programCode",
            programStartDate: "$_id.programStartDate",
            baselineId: 1,
            documentIds: 1 
        }
    },
    {
        $lookup: {
            "from": "participant",
            "localField": "participantId",
            "foreignField": "_id",
            "as": "temp"
        }
    },
    {
        $match: {
            "temp.userStatus": { $ne: "TEST" },
            $and: [
                { "temp.email": { $nin: [/deleted/] } },
                { "temp": { $ne: null } }
            ]
        }
    },
    {
        $unwind:"$documentIds"
    }
    {
        $project: {
            _id:0
            "participantId": { $arrayElemAt: ["$temp._id", 0] },
            "email": { $arrayElemAt: ["$temp.email", 0] },
            "documentIds": 1 
        }
    }
]
Web3 seems to be the future of web3, the world has experienced the change from web1 to web3 and all other changes that changed the world because of the evolution of web1 and web2. Now the world is at the edge of change with the evolution of web3 and this will bring you the change to the present world. The concept of the digital world has been accelerated with the development of web3 and blockchain acts as the backbone of web3. The world will be more virtual in a few years with all virtual environments and virtual economies. Thinking of the future and competing in the race in the digital world it's the right time for you to bring in web3 solutions, talk with the experts of a web3.0 development agency and get your advanced tech solutions.
package pl.pp;
import java.util.Scanner;
public class myThirdApp{
        public static void main(String[] args) {
                Scanner scanner = new Scanner(System.in);

        System.out.println("Enter a number greater than 100:");

        // WHILEloop(https://introcs.cs.princeton.edu/java/11cheatsheet/images/while.png)
        var number1 = scanner.nextDouble();
        while (number1 <= 100) {
        System.out.println("The number is not greater than 100, enter again:");
        number1 = scanner.nextDouble();
        }
        System.out.println("Thank you! You’ve entered: " + number1);

        // DO..WHILE loop (https://introcs.cs.princeton.edu/java/11cheatsheet/images/do-while.png)
        double number2;
        do {
                System.out.println("Enter a number greater than200:");
                number2 = scanner.nextDouble();
        } while (number2 <= 200);
        System.out.println("Thank you! You’ve entered: " + number2);

        // FORloop(https://introcs.cs.princeton.edu/java/11cheatsheet/images/for.png)
        int wynik = 0;
        for (var i = 1; i <= 10; i++) {
                wynik = wynik + i;
                System.out.println("Iteration no." + i + " in the for loop, and the result (wynik)= " +
                        wynik);
        }

        //IF..ELSE conditional statements(https://introcs.cs.princeton.edu/java/11cheatsheet/images/if.png)
        System.out.println("Enter the value of x: ");
        var x = scanner.nextDouble();
        System.out.println("Enter the value of y: ");
        var y = scanner.nextDouble();

        if(x > y){
                System.out.println("x is greater than y");
        } else if (x < y) {
                System.out.println("x is smaller thany");
        } else {
                System.out.println("x equalsb y");
        }

//terminating the program by pressing a specific key
while(true)
{
        System.out.println("Enter-1 to exit the program");
        var input = scanner.nextDouble();
        if(input == -1){
                System.out.println("Exit...");
                break;
        }
}
scanner.close();
}
}
package pl.pp;import java.util.Scanner;public class myThirdApp{public static void main(String[] args) {Scanner scanner = new Scanner(System.in);System.out.println("Enter a number greater than 100:");// WHILEloop(https://introcs.cs.princeton.edu/java/11cheatsheet/images/while.png)var number1 = scanner.nextDouble();while (number1 <= 100) {System.out.println("The number is not greater than 100, enter again:");number1 = scanner.nextDouble();}System.out.println("Thank you! You’ve entered: " + number1);// DO..WHILE loop (https://introcs.cs.princeton.edu/java/11cheatsheet/images/do-while.png)double number2;do {System.out.println("Enter a number greater than200:");number2 = scanner.nextDouble();} while (number2 <= 200);System.out.println("Thank you! You’ve entered: " + number2);// FORloop(https://introcs.cs.princeton.edu/java/11cheatsheet/images/for.png)int wynik = 0;for (var i = 1; i <= 10; i++) {wynik = wynik + i;System.out.println("Iteration no." + i + " in the for loop, and the result(wynik)= " + wynik);}//IF..ELSE conditional statements(https://introcs.cs.princeton.edu/java/11cheatsheet/images/if.png)System.out.println("Enter the value ofx: ");var x = scanner.nextDouble();System.out.println("Enter the value ofy: ");var y = scanner.nextDouble();if(x > y){System.out.println("x is greater thany");} else if (x < y) {System.out.println("x is smaller thany");} else {System.out.println("x equalsy");}
//terminating the program by pressing a specific keywhile(true){System.out.println("Enter-1 to exit the program");var input = scanner.nextDouble();if(input == -1){System.out.println("Exit...");break;}}scanner.close();}}
Mobile Apps have brought major changes to the digital space and are playing a major role in a country's economic growth and connects businesses globally at ease. Mobile apps have a major participation in the development of online business platforms. Mobile apps are represented as the digital storefront of your business and these apps are doing the work of your physical store or office in the digital forum.

Not just for specific businesses, but many other apps are developed and launched in the digital space which is completely operated only in the digital space like games, social media, other entertainment applications, and more. Mobile apps have helped many businesses grow and make huge profits in the online spectrum with a wide audience base. Even though websites have been out there for years, apps have made something more than websites that can’t be done. If you are running a business make yourself involved in launching a mobile app to improve your business growth in the digital space. You may connect with Maticz, Mobile App Development Company to plan and launch your mobile app.
void action(){  
  turnRight(); move();
  
  if(isMableOnClam()){ /* Check if clams exist where Mable stand */
    // To pick up a clam
    pickUpClam();
  }
  else if(isMableOnDestination()){ /* Check if Mable is on a destination */
    // To put down all clams
    putDownClam();
    putDownClam();
    putDownClam();
    putDownClam();
  }
  else{ /* If there are no clams and Mable is not on the destination */
    // To move forward once
    move();
  }
  
  turnLeft(); move();

  if(isMableOnClam()){ /* Check if clams exist where Mable stand */
    // To pick up a clam
    pickUpClam();
  }
  else if(isMableOnDestination()){ /* Check if Mable is on a destination */
    // To put down all clams
    putDownClam();
    putDownClam();
    putDownClam();
    putDownClam();
  }
  else{ /* If there are no clams and Mable is not on the destination */
    // To move forward once
    move();
  }
  
  turnRight(); move();
  turnLeft(); move();
  turnRight(); move();
  
  if(isMableOnClam()){ /* Check if clams exist where Mable stand */
    // To pick up a clam
    pickUpClam();
  }
  else if(isMableOnDestination()){ /* Check if Mable is on a destination */
    // To put down all clams
    putDownClam();
    putDownClam();
    putDownClam();
    putDownClam();
  }
  else{ /* If there are no clams and Mable is not on the destination */
    // To move forward once
    move();
  }
  
  turnLeft(); move();
  
  if(isMableOnClam()){ /* Check if clams exist where Mable stand */
    // To pick up a clam
    pickUpClam();
  }
  else if(isMableOnDestination()){ /* Check if Mable is on a destination */
    // To put down all clams
    putDownClam();
    putDownClam();
    putDownClam();
    putDownClam();
  }
  else{ /* If there are no clams and Mable is not on the destination */
    // To move forward once
    move();
  }
  
  turnRight(); move();
  
  if(isMableOnClam()){ /* Check if clams exist where Mable stand */
    // To pick up a clam
    pickUpClam();
  }
  else if(isMableOnDestination()){ /* Check if Mable is on a destination */
    // To put down all clams
    putDownClam();
    putDownClam();
    putDownClam();
    putDownClam();
  }
  else{ /* If there are no clams and Mable is not on the destination */
    // To move forward once
    move();
  }
}
.button:where(:has(.icon)) {
  text-align: center;
  min-inline-size: 10ch;
}

.button:where(:not(:has(.icon))) {
  text-align: center;
  min-inline-size: 10ch;
}

.card :is(h2, h3) {
  &:has(.tag) {
    display: grid;
    gap: 0.25em;
    justify-items: start;
  }
}
error_code=None error_message='Invalid URL (POST /v1/engines/gpt-3.5-turbo-instruct/chat/completions)' error_param=None error_type=invalid_request_error message='OpenAI API error received' stream_error=False
2024-03-12 07:48:41,406 |ERROR| llm_service.py.llm_answer - AnyIO worker thread: ERROR Invalid URL (POST /v1/engines/gpt-3.5-turbo-instruct/chat/completions)
@tailwind base;
@tailwind components;
@tailwind utilities;

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
}

/* when modal open should overflow hidden for body */
body.modal-open {
  overflow: hidden;
}


input[type="radio"] {
  position: relative;
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: 16px;
  color: white;
  width: 1em;
  height: 1em;
  border: 0.5px solid darkgray;
  border-radius: 50%;
  
}
input[type="radio"]:checked:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background-color: darkcyan;
}

@layer components {
  .max-container {
    max-width: 1440px;
    margin: 0 auto;
  }
  .modal-section{
    @apply fixed inset-0 bg-black bg-opacity-60 flex justify-center items-center z-50 overflow-y-auto
  }
  .modal-box{
    @apply bg-white relative  translate-y-[40%] lg:translate-y-1/3 p-4 sm:p-8 w-11/12 lg:w-[60%] rounded-lg flex flex-col gap-6;
  }
}


star

Thu Mar 14 2024 00:03:42 GMT+0000 (Coordinated Universal Time) https://stage.projects-delivery.com/wp/soho-group/wp-admin/admin.php?page

@hamza.khan

star

Wed Mar 13 2024 19:59:38 GMT+0000 (Coordinated Universal Time) https://admin.nivobet724.com/users

@crytohack

star

Wed Mar 13 2024 19:06:48 GMT+0000 (Coordinated Universal Time)

@Ridias

star

Wed Mar 13 2024 19:04:26 GMT+0000 (Coordinated Universal Time)

@abdul_rehman #java

star

Wed Mar 13 2024 17:41:50 GMT+0000 (Coordinated Universal Time) https://stage.projects-delivery.com/wp/soho-group/wp-admin/admin.php?page

@hamza.khan

star

Wed Mar 13 2024 17:41:23 GMT+0000 (Coordinated Universal Time) https://stage.projects-delivery.com/wp/soho-group/wp-admin/admin.php?page

@hamza.khan

star

Wed Mar 13 2024 17:40:14 GMT+0000 (Coordinated Universal Time) https://stage.projects-delivery.com/wp/soho-group/wp-admin/admin.php?page

@hamza.khan

star

Wed Mar 13 2024 17:30:55 GMT+0000 (Coordinated Universal Time)

@abdul_rehman #java

star

Wed Mar 13 2024 17:27:18 GMT+0000 (Coordinated Universal Time)

@playadust

star

Wed Mar 13 2024 16:55:52 GMT+0000 (Coordinated Universal Time)

@abdul_rehman #java

star

Wed Mar 13 2024 15:38:58 GMT+0000 (Coordinated Universal Time) https://sdk.cloud.google.com/authcode.html?state

@okokokok

star

Wed Mar 13 2024 14:07:56 GMT+0000 (Coordinated Universal Time)

@Shira

star

Wed Mar 13 2024 10:25:53 GMT+0000 (Coordinated Universal Time)

@pvignesh

star

Wed Mar 13 2024 10:08:41 GMT+0000 (Coordinated Universal Time)

@Waaazzi

star

Wed Mar 13 2024 09:56:16 GMT+0000 (Coordinated Universal Time)

@pvignesh

star

Wed Mar 13 2024 09:41:02 GMT+0000 (Coordinated Universal Time)

@imran1701

star

Wed Mar 13 2024 09:31:19 GMT+0000 (Coordinated Universal Time)

@pvignesh

star

Wed Mar 13 2024 08:39:57 GMT+0000 (Coordinated Universal Time)

@deepaksingh

star

Wed Mar 13 2024 08:07:30 GMT+0000 (Coordinated Universal Time)

@pvignesh

star

Wed Mar 13 2024 06:51:11 GMT+0000 (Coordinated Universal Time)

@RadioShakcident

star

Wed Mar 13 2024 06:45:16 GMT+0000 (Coordinated Universal Time)

@RadioShakcident

star

Wed Mar 13 2024 06:37:12 GMT+0000 (Coordinated Universal Time) https://www.consulting24.co

@consulting24 ##cryptoregulationexperts ##blockchainadvisory ##cryptolicense

star

Wed Mar 13 2024 04:58:31 GMT+0000 (Coordinated Universal Time) https://console.cloud.google.com/?_ga

@okokokok

star

Wed Mar 13 2024 02:44:29 GMT+0000 (Coordinated Universal Time)

@lawlaw

star

Wed Mar 13 2024 02:35:09 GMT+0000 (Coordinated Universal Time)

@kervinandy123 #c

star

Tue Mar 12 2024 23:34:25 GMT+0000 (Coordinated Universal Time)

@davidmchale #html #csp

star

Tue Mar 12 2024 22:31:30 GMT+0000 (Coordinated Universal Time) https://portal.azure.com/

@okokokok

star

Tue Mar 12 2024 22:30:18 GMT+0000 (Coordinated Universal Time) undefined

@okokokok

star

Tue Mar 12 2024 22:08:48 GMT+0000 (Coordinated Universal Time) https://console.cloud.google.com/projectselector2/compute/instancesAdd?hl

@okokokok

star

Tue Mar 12 2024 21:56:50 GMT+0000 (Coordinated Universal Time) https://console.cloud.google.com/projectselector2/compute/instancesAdd?hl

@okokokok

star

Tue Mar 12 2024 21:52:58 GMT+0000 (Coordinated Universal Time) undefined

@okokokok

star

Tue Mar 12 2024 20:54:43 GMT+0000 (Coordinated Universal Time) https://odgavaprod.ogopendata.com/dataset/community-policing-data/resource/60506bbb-685f-4360-8a8c-30e137ce3615

@okokokok

star

Tue Mar 12 2024 20:54:07 GMT+0000 (Coordinated Universal Time) https://odgavaprod.ogopendata.com/dataset/community-policing-data/resource/60506bbb-685f-4360-8a8c-30e137ce3615

@okokokok

star

Tue Mar 12 2024 20:53:57 GMT+0000 (Coordinated Universal Time) https://odgavaprod.ogopendata.com/dataset/community-policing-data/resource/60506bbb-685f-4360-8a8c-30e137ce3615

@okokokok

star

Tue Mar 12 2024 20:53:39 GMT+0000 (Coordinated Universal Time) https://odgavaprod.ogopendata.com/dataset/community-policing-data/resource/60506bbb-685f-4360-8a8c-30e137ce3615

@okokokok

star

Tue Mar 12 2024 20:53:27 GMT+0000 (Coordinated Universal Time) https://odgavaprod.ogopendata.com/dataset/community-policing-data/resource/60506bbb-685f-4360-8a8c-30e137ce3615

@okokokok

star

Tue Mar 12 2024 20:52:55 GMT+0000 (Coordinated Universal Time) https://odgavaprod.ogopendata.com/dataset/community-policing-data/resource/60506bbb-685f-4360-8a8c-30e137ce3615

@okokokok

star

Tue Mar 12 2024 20:51:32 GMT+0000 (Coordinated Universal Time) https://www.googleapis.com/robot/v1/metadata/x509/igk-318@capable-droplet-405205.iam.gserviceaccount.com

@okokokok

star

Tue Mar 12 2024 17:17:02 GMT+0000 (Coordinated Universal Time)

@abdul_rehman #java

star

Tue Mar 12 2024 14:56:03 GMT+0000 (Coordinated Universal Time) http://localhost:5000/w3schools/articles

@topthonder

star

Tue Mar 12 2024 14:39:42 GMT+0000 (Coordinated Universal Time) http://34.74.16.180:3000/question#eyJkYXRhc2V0X3F1ZXJ5Ijp7ImRhdGFiYXNlIjoyLCJuYXRpdmUiOnsidGVtcGxhdGUtdGFncyI6e30sInF1ZXJ5IjoiW1xyXG4gICAge1xyXG4gICAgICAgICRncm91cDoge1xyXG4gICAgICAgICAgICBfaWQ6IFwiJHBhcnRpY2lwYW50SWRcIixcclxuICAgICAgICAgICAgZG9jdW1lbnRzOiB7ICRwdXNoOiBcIiQkUk9PVFwiIH0sXHJcbiAgICAgICAgICAgIGNvdW50OiB7ICRzdW06IDEgfVxyXG4gICAgICAgIH1cclxuICAgIH0sXHJcbiAgICB7XHJcbiAgICAgICAgJG1hdGNoOiB7XHJcbiAgICAgICAgICAgIGNvdW50OiB7ICRndDogMSB9XHJcbiAgICAgICAgfVxyXG4gICAgfSxcclxuICAgIHtcclxuICAgICAgICAkdW53aW5kOiBcIiRkb2N1bWVudHNcIlxyXG4gICAgfSxcclxuICAgIHtcclxuICAgICAgICAkbWF0Y2g6IHtcclxuICAgICAgICAgICAgXCJkb2N1bWVudHMucHJvZ3JhbUNvZGVcIjogeyAkbmU6IFwiXCIgfVxyXG4gICAgICAgIH1cclxuICAgIH0sXHJcbiAgICB7XHJcbiAgICAgICAgJGdyb3VwOiB7XHJcbiAgICAgICAgICAgIF9pZDoge1xyXG4gICAgICAgICAgICAgICAgcGFydGljaXBhbnRJZDogXCIkX2lkXCIsXHJcbiAgICAgICAgICAgICAgICBwcm9ncmFtQ29kZTogXCIkZG9jdW1lbnRzLnByb2dyYW1Db2RlXCIsXHJcbiAgICAgICAgICAgICAgICBwcm9ncmFtU3RhcnREYXRlOiBcIiRkb2N1bWVudHMucHJvZ3JhbVN0YXJ0RGF0ZVwiXHJcbiAgICAgICAgICAgIH0sXHJcbiAgICAgICAgICAgIGJhc2VsaW5lSWQ6IHsgJGZpcnN0OiBcIiRfaWRcIiB9LFxyXG4gICAgICAgICAgICBkb2N1bWVudElkczogeyAkcHVzaDogXCIkZG9jdW1lbnRzLl9pZFwiIH0sIFxyXG4gICAgICAgICAgICBkb2N1bWVudHM6IHsgJHB1c2g6IFwiJGRvY3VtZW50c1wiIH0sXHJcbiAgICAgICAgICAgIGNvdW50OiB7ICRzdW06IDEgfVxyXG4gICAgICAgIH1cclxuICAgIH0sXHJcbiAgICB7XHJcbiAgICAgICAgJG1hdGNoOiB7XHJcbiAgICAgICAgICAgIGNvdW50OiB7ICRndDogMSB9XHJcbiAgICAgICAgfVxyXG4gICAgfSxcclxuICAgIHtcclxuICAgICAgICAkcHJvamVjdDoge1xyXG4gICAgICAgICAgICBfaWQ6IDEsXHJcbiAgICAgICAgICAgIHBhcnRpY2lwYW50SWQ6IFwiJF9pZC5wYXJ0aWNpcGFudElkXCIsXHJcbiAgICAgICAgICAgIHByb2dyYW1Db2RlOiBcIiRfaWQucHJvZ3JhbUNvZGVcIixcclxuICAgICAgICAgICAgcHJvZ3JhbVN0YXJ0RGF0ZTogXCIkX2lkLnByb2dyYW1TdGFydERhdGVcIixcclxuICAgICAgICAgICAgYmFzZWxpbmVJZDogMSxcclxuICAgICAgICAgICAgZG9jdW1lbnRJZHM6IDEgXHJcbiAgICAgICAgfVxyXG4gICAgfSxcclxuICAgIHtcclxuICAgICAgICAkbG9va3VwOiB7XHJcbiAgICAgICAgICAgIFwiZnJvbVwiOiBcInBhcnRpY2lwYW50XCIsXHJcbiAgICAgICAgICAgIFwibG9jYWxGaWVsZFwiOiBcInBhcnRpY2lwYW50SWRcIixcclxuICAgICAgICAgICAgXCJmb3JlaWduRmllbGRcIjogXCJfaWRcIixcclxuICAgICAgICAgICAgXCJhc1wiOiBcInRlbXBcIlxyXG4gICAgICAgIH1cclxuICAgIH0sXHJcbiAgICB7XHJcbiAgICAgICAgJG1hdGNoOiB7XHJcbiAgICAgICAgICAgIFwidGVtcC51c2VyU3RhdHVzXCI6IHsgJG5lOiBcIlRFU1RcIiB9LFxyXG4gICAgICAgICAgICAkYW5kOiBbXHJcbiAgICAgICAgICAgICAgICB7IFwidGVtcC5lbWFpbFwiOiB7ICRuaW46IFsvZGVsZXRlZC9dIH0gfSxcclxuICAgICAgICAgICAgICAgIHsgXCJ0ZW1wXCI6IHsgJG5lOiBudWxsIH0gfVxyXG4gICAgICAgICAgICBdXHJcbiAgICAgICAgfVxyXG4gICAgfSxcclxuICAgIHtcclxuICAgICAgICAkdW53aW5kOlwiJGRvY3VtZW50SWRzXCJcclxuICAgIH1cclxuICAgIHtcclxuICAgICAgICAkcHJvamVjdDoge1xyXG4gICAgICAgICAgICBfaWQ6MFxyXG4gICAgICAgICAgICBcInBhcnRpY2lwYW50SWRcIjogeyAkYXJyYXlFbGVtQXQ6IFtcIiR0ZW1wLl9pZFwiLCAwXSB9LFxyXG4gICAgICAgICAgICBcImVtYWlsXCI6IHsgJGFycmF5RWxlbUF0OiBbXCIkdGVtcC5lbWFpbFwiLCAwXSB9LFxyXG4gICAgICAgICAgICBcImRvY3VtZW50SWRzXCI6IDEgXHJcbiAgICAgICAgfVxyXG4gICAgfVxyXG5dXHJcbiIsImNvbGxlY3Rpb24iOiJwYXJ0aWNpcGFudEJhc2VsaW5lQW5kRm9sbG93dXBEYXRhIn0sInR5cGUiOiJuYXRpdmUifSwiZGlzcGxheSI6InRhYmxlIiwidmlzdWFsaXphdGlvbl9zZXR0aW5ncyI6e319

@CodeWithSachin ##jupyter #aggregation #mongodb

star

Tue Mar 12 2024 13:16:46 GMT+0000 (Coordinated Universal Time) https://maticz.com/web3-development-company

@HenryJames

star

Tue Mar 12 2024 12:58:04 GMT+0000 (Coordinated Universal Time)

@brhm_lifter

star

Tue Mar 12 2024 12:58:04 GMT+0000 (Coordinated Universal Time)

@brhm_lifter

star

Tue Mar 12 2024 12:47:07 GMT+0000 (Coordinated Universal Time) https://maticz.com/mobile-app-development-company

@HenryJames

star

Tue Mar 12 2024 12:02:47 GMT+0000 (Coordinated Universal Time) undefined

@mdfaizi

star

Tue Mar 12 2024 09:47:46 GMT+0000 (Coordinated Universal Time)

@shiro #dart #programming

star

Tue Mar 12 2024 08:41:22 GMT+0000 (Coordinated Universal Time)

@riyadhbin

star

Tue Mar 12 2024 08:18:20 GMT+0000 (Coordinated Universal Time)

@manhmd

star

Tue Mar 12 2024 07:13:50 GMT+0000 (Coordinated Universal Time)

@fazmi322

Save snippets that work with our extensions

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