Snippets Collections
def getpenta(num):
    for n in range(1,num+1):
        print(n*(3*n-1)//2,end=" ")
        if n%10==0:
            print()
def isprime(num):
    if num==1:
        return False
    if num==2:
        return True
    flag=1
    for i in range(2,num):
        if(num%i==0):
            flag=0
            return False
    if (flag):
        return True
    else:
        return False
def merseny(p):
    mult=1
    i=1
    while(i<=p):
        mult=mult*2
        if(isprime(mult-1)):
            print(mult-1)
        i+=1
# def merseny2(p):
#     for i in range(1,p+1):
#         num=pow(2,i)-1
#         if(isprime(num)):
#             print(num)
def twinprime(num):
    for n in range(1,num-2):
        if(isprime(n) and isprime(n+2)):
            print(n," ",n+2)
n=int(input("Enter number: "))
getpenta(n)
# merseny(n)
# twinprime(n)
    override func viewDidLoad() {
        super.viewDidLoad()
      
      setTermsAndConditionsLabel()
    }

  @IBAction func checkButtonPressed(_ sender: Any) {
        if check {
            checkImageView.isHidden = true
            uncheckImageView.isHidden = false
            check = false
        } else {
            checkImageView.isHidden = false
            uncheckImageView.isHidden = true
            check = true
        }
    }

@objc func tappedTermsAndConditions(_ sender: UITapGestureRecognizer) {
        if let link = URL(string: "https://www.google.com") {
            UIApplication.shared.open(link)
        }
    }
    
    func setTermsAndConditionsLabel() {
        
        let tapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(tappedTermsAndConditions))
        termsAndConditionsLabel.isUserInteractionEnabled = true
        termsAndConditionsLabel.addGestureRecognizer(tapGestureRecognizer)
        
        let fullText = "I agree to the Terms and Conditions"
        let attributedString = NSMutableAttributedString(string: fullText)

        let grayAttributes: [NSAttributedString.Key: Any] = [
            .foregroundColor: UIColor.gray,
        ]
        
        let boldAttributes: [NSAttributedString.Key: Any] = [
            .font: UIFont.boldSystemFont(ofSize: 17), // Replace with your desired font size
        ]

        let blueAttributes: [NSAttributedString.Key: Any] = [
            .foregroundColor: hexStringToUIColor(hex: "2563EB"),
            .underlineStyle: NSUnderlineStyle.single.rawValue,
            .link: "termsAndConditionsURL", // Replace with your actual URL
        ]

        let grayRange = (fullText as NSString).range(of: "I agree to the")
        attributedString.addAttributes(grayAttributes, range: grayRange)

        let blueRange = (fullText as NSString).range(of: "Terms and Conditions")
        attributedString.addAttributes(blueAttributes, range: blueRange)
        
        let boldRange = (fullText as NSString).range(of: "Terms and Conditions")
        attributedString.addAttributes(boldAttributes, range: boldRange)

        termsAndConditionsLabel.attributedText = attributedString
    }
dict1={1:"Monday",0:"Sunday",6:"Saturday",2:"Tuesday",3:"Wednesday",4:"Thursday",5:"Friday"}
sum=0
for i in dict1:
    sum=sum+i
print(sum)
dict1[7]="FUNDAY" #Adding new element or update if already exist
print(dict1) 
dict1.update({1:"Sombaar"}) #updating value or add if not exist
print(dict1)
l1=list(dict1.keys())
l1.sort()
dict2={x:dict1[x] for x in l1}
print("Sorted: ",dict2)
l2=list(dict1.values())
l2.sort()
dict3={l2.index(x):x for x in l2}
print(dict3)
l3=list(dict1.keys())
l3.reverse()
dict4={x:dict1[x] for x in l3}
print(dict4)
SET timezone = 'UTC';

SELECT current_setting('timezone') AS timezone;
.dataTables_filter, .dataTables_info { display: none; }
 /* Program Name: Find Factorial
   Written by: Chaitanya Singh
   Published on: beginnersbook.com
 */
#include<stdio.h>
int find_factorial(int);
int main()
{
   int num, fact;
   //Ask user for the input and store it in num
   printf("\nEnter any integer number:");
   scanf("%d",&num);
 
   //Calling our user defined function
   fact =find_factorial(num);
 
   //Displaying factorial of input number
   printf("\nfactorial of %d is: %d",num, fact);
   return 0;
}
int find_factorial(int n)
{
   //Factorial of 0 is 1 
   if(n==0)
      return(1);
 
   //Function calling itself: recursion
   return(n*find_factorial(n-1));
}
.servicesTitle {
    padding: 60px 0px;
    background: #000;
    width: 100%;
}

.servicesTitle h1 {
    font-size: 68px;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
}

.single-services .main-page-wrapper>.container,
.single-listing .main-page-wrapper>.container {
    max-width: 100%;
}

.servicesTitle .breadcrumbs span, .servicesTitle .breadcrumbs a {
    color: #fff;
    font-size: 15px;
}
.singleServiceContent {
    text-align: left;
}

.row.single_serviceSection {
    align-items: center;
}

.services.type-services {
    padding: 60px 0px;
}

.singleServiceContent h3 {
    font-size: 40px;
    text-transform: capitalize;
}
.main-wrap.col-md-7 {
    margin: 0;
}
.wre-single.listing.row {
    align-items: center;
    padding: 60px 0px;
}








<?php get_header(); ?>


<div class="servicesTitle">
    <div class="container-fluid">
        <h1 class="tilte">
            <?php the_title(); ?>
        </h1>
        <div class="breadcrumbs">
            <a href="<?php echo home_url(); ?>">Home</a>
            <span class="current"><?php the_title(); ?></span>
        </div>
    </div>
</div>


<div class="container">
    <?php while (have_posts()) : the_post(); ?>
        <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
            <div class="row single_serviceSection">
                <div class="col-md-6">
                    <div class="singleServiceContent">
                        <h3>
                            <?php the_title(); ?>
                        </h3>
                        <?php the_content(); ?>
                    </div>
                </div>
                <div class="col-md-6">
                    <div class="singleServiceThumbnail">
                        <?php the_post_thumbnail("full"); ?>
                    </div>
                </div>
            </div>
        <?php endwhile; ?>
</div>

<?php
get_footer();
?>
function incrementStats() {
    const counters = document.querySelectorAll('.counter');

    counters.forEach((counter) => {
        counter.innerText = 0;

        const updateCounter = () => {
            const target = +counter.getAttribute('data-target'); // the "+" here casts the returned text to a number
            const c = +counter.innerText;
            const increment = target / 200;

            if (c < target) {
                counter.innerText = Math.ceil(c + increment);
                setTimeout(updateCounter, 1);
                // here the function is calling itself until "c"
                // reaches the "data-target", making it recursive
            } else {
                counter.innerText = target;
            }
        };

        updateCounter();
    });
}

document.addEventListener('DOMContentLoaded', incrementStats);
if (window.innerWidth < 960) {
    doSomething();
}
In the upcoming lecture, we will be setting up our test environment with MongoMemoryServer. If you are using the latest versions of this library a few changes will be required:

In auth/src/test/setup.ts, change these lines:

  mongo = new MongoMemoryServer();
  const mongoUri = await mongo.getUri();
to this:

  mongo = await MongoMemoryServer.create();
  const mongoUri = mongo.getUri();


Remove the useNewUrlParser and useUnifiedTopology parameters from the connect method. Change this:

  await mongoose.connect(mongoUri, {
    useNewUrlParser: true,
    useUnifiedTopology: true,
  });
to this:

  await mongoose.connect(mongoUri, {});


Then, find the afterAll hook and add a conditional check:

afterAll(async () => {
  if (mongo) {
    await mongo.stop();
  }
  await mongoose.connection.close();
});
alt + z = ajuta la lineas de codigo para que se vea la linea completa en la pantalla
ctrl + shift + a= comenta varias lineas de cdigo
ctrl + f = buscar en el codigo o buscar en archivos debo seleccionar el lugar en donde voy a buscar
ctrl + shift + p = abre la paleta de comandos



a = "gegeekek"

n = len(a)
s = []
for i in range(n):
    
    s.append(a[i])
    
    while len(s)>=4 and  s[-4:] == ['g', 'e', 'e', 'k' ]:
        
        s.pop()
        s.pop()
        s.pop()
        s.pop()
        
        
     
    
    
if len(s) == 0:
    
    print("Yes")

else:
    
    print("NO")
    


        
        
#include <array>
#include <iostream>
#include <string.h>
using namespace std;

int main()
{
    int num = 0;
    cout << num << "\n"; // 0
    num++;
    cout << num << "\n"; // 1
    num++;
    cout << num << "\n"; // 2
    num++;
    cout << num << "\n"; // 3
    num++;
    cout << num << "\n"; // 4
    num++;
    cout << num << "\n"; // 5
    
    for (int i = 0; i < 6; i++)
    {
        cout << i << "\n"; // 0
    }
    
    int nums[4] = {100, 200, 300, 400};
    cout << nums[0] << "\n";
    cout << nums[1] << "\n";
    cout << nums[2] << "\n";
    cout << nums[3] << "\n";
    
    for (int index = 0; index < 4; index++)
    {
        cout << nums[index] << "\n"; // 0
    }
    return 0;
}
class lab18
{
String lang;
lab18()
{
this.lang="java";
}
lab18(String lang)
{
this.lang=lang;
}
public void getLang()
{
System.out.println("programming language:"+this.lang);
}
public static void main(String[] args)
{
lab18 obj1=new lab18();
lab18 obj2=new lab18("C++");
obj1getLang();
obj2getLang();
}
}
    @IBAction func loginPressed(_ sender: Any) {
        
        let email = emailTextField.text ?? ""
        let password = passwordTextField.text ?? ""
        var message = ""
        
        if email == "" {
            message = AppDelegate.selectedLanguage == "en" ? "Please enter email" : "الرجاء ادخال البريد الإلكتروني"
        } else if password == "" {
            message = AppDelegate.selectedLanguage == "en" ? "Please enter password" : "الرجاء ادخال كلمتك السريه"
        } else if !isValidEmail(email) {
            message = AppDelegate.selectedLanguage == "en" ? "please_enter_a_valid_email" : "الرجاء ادخال بريد إلكتروني صالح"
        }
        
        if message != "" {
            self.showToast(message: message)
            return
        }
        
        Auth.auth().signIn(withEmail: emailTextField.text ?? "", password: passwordTextField.text ?? "") { [weak self] authResult, error in
            if error != nil {
                let message = AppDelegate.selectedLanguage == "en" ? "Entered email or password is not correct" : "البريد الإلكتروني أو كلمة المرور المدخلة غير صحيحة"
                self?.showToast(message: message)
                return
            }
            self?.getUserData()
        }
    }
public class lab21
{
final int x=10;
public static void main(String args[])
{
lab21 obj =new lab21();
obj.x=12;
System.out.println(obj.x);
}
}
class mb
{
private String startMethod ="kick";
public void start()
{
System.out.println(startMethod+"starting.......");
}
public void start(String method)
{
this.startMethod=method;
System.out.println(startMethod+"starting.......");
}
}
public class lab17
{
public static void main(String[]args)
{
mb b=new mb();
b.start();
b.start("self");
}
}
public class lab14
{
int a,b;
public static void change(lab14 obj)
{
obj.a=20;
obj.b=10;
}
public static void main(String[] args)
{
  lab14 obj =new lab14();
 obj.a=10;
obj.b=20;
System.out.println("values before changing are a="+obj.a+"b="+obj.b);
change(obj);
System.out.println("values after changing are a="+obj.a+"b="+obj.b);
}
}





public class lab14
{
public static void main(String[] args)
{
int a=10;
int b=20;
System.out.println("values before the call a="+a+"b="+b);
swap(a,b);
System.out.println("value after the call a="+a+"b="+b);
}
public static void swap(int a,int b)
{
System.out.println("inside swap(),before swapping....");
System.out.println("a="+a+"b="+b);
int temp =a;
a=b;
b=temp;
System.out.println("inside swap after swapping a="+a+"b="+b);
}
}

let nextStatusIds = [37, 38];
let allowed_status = ['38', '36', '37'];

// Use the filter() method to get the included IDs
let includedIds = nextStatusIds.filter(id => allowed_status.includes(id.toString()));

console.log("Included IDs:", includedIds);
select id,
Cliente__r.Codice_cliente__c, Cliente__r.Codice_fiscale__c, Cliente__r.Name,Cliente__r.Target__c, Cliente__r.Commodity__c,
Commodity__c, State__c, Sottostato__c, 
Buffer_Richieste__r.DistributoreLocale__r.name,Buffer_Richieste__r.Distributore_Locale_GAS__r.name,
Buffer_Richieste__r.Prodotto__r.Fasce__c,Buffer_Richieste__r.ModalitaPagamento__c,Offerta__r.Multipunto__c 
from pr__c 
where Cliente__r.Codice_cliente__c ='A303590345'

limit 100
// given two strings s1 and s2 (|s1| == |s2|) make s1 same as s2 using following 2 operations 
// 1. swap any two elements at indices i and j in s1 with cost x ,
// 2. swap two adjacent elements with cost 1
// achieve this with minimum cost 

 
#define pb push_back 

class Solution {
public:
    vector<double> dp;
    double findMin(vector<int>& diff, int i, int x){
        if( i == 0)
            return x / 2.0;
        if( i == -1)
            return 0;
        if(dp[i] != -1)
            return dp[i];
        double left  = findMin(diff, i-1, x) + x/2.0;
        double right = findMin(diff, i-2 , x) + diff[i] - diff[i-1];
        return dp[i] = min(left, right);
    }
    int minOperations(string s1, string s2, int x) {
        vector<int> diffs;
        int n = s1.length();
        for(int i = 0; i < n; i++)
            if(s1[i] != s2[i])
                diffs.pb(i);
        if(diffs.size() & 1)
            return -1;
        dp.resize(diffs.size(),-1);
        return (int)findMin(diffs, diffs.size() - 1, x);
        
    }
};
// Its O(n) time and O(n) space;
  override func viewDidLoad() {
        super.viewDidLoad()
        setSwipeGesture()
}

func setSwipeGesture() {
        let swipeRightGesture = UISwipeGestureRecognizer(target: self, action: #selector(handleSwipe(_:)))
        if AppDelegate.selectedLanguage == "en" {
            swipeRightGesture.direction = .right
        } else {
            swipeRightGesture.direction = .left
        }
              view.addGestureRecognizer(swipeRightGesture)
    }
    
    @objc func handleSwipe(_ gesture: UISwipeGestureRecognizer) {
            if gesture.direction == .right && isOpen == false && AppDelegate.selectedLanguage == "en" {
                toggleSideMenu()
            }  else if gesture.direction == .left && isOpen == false && AppDelegate.selectedLanguage == "ar" {
                toggleSideMenu()
            }
        
     }
    
    override func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) {
        if isOpen && AppDelegate.selectedLanguage == "en" {
             if let touch = touches.first {
                 let location = touch.location(in: view)
                 if location.x < 50 { // Adjust the threshold as needed
                     toggleSideMenu()
                 }
             } else if isOpen && AppDelegate.selectedLanguage == "ar" {
            
                         if let touch = touches.first {
                             let location = touch.location(in: view)
                             if location.x > view.frame.size.width - 50 { // Adjust the threshold as needed
                                 toggleSideMenu()
                             }
                         }
             }
         }
     }
    
    func toggleSideMenu() {
        if AppDelegate.selectedLanguage == "en" {
            UIView.animate(withDuration: 0.15) {
                if self.isOpen {
                    self.sideMenuView.frame.origin.x = -self.sideMenuView.frame.size.width
                    self.isOpen = false
                    
                } else {
                    self.sideMenuView.frame.origin.x = 0
                    self.isOpen = true
                }
            }
        } else {
                UIView.animate(withDuration: 0.15) {
                     if self.isOpen {
                         self.sideMenuView.frame.origin.x = self.view.frame.size.width // Slide it to the right side
                         self.isOpen = false
                     } else {
                         self.sideMenuView.frame.origin.x = self.view.frame.size.width - self.sideMenuView.frame.size.width // Slide it to the left side
                         self.isOpen = true
                     }
                 }
        }
    }
    
    func shareLinkOnSocialMedia(link: URL, viewController: UIViewController) {
        let activityViewController = UIActivityViewController(activityItems: [link], applicationActivities: nil)
        activityViewController.popoverPresentationController?.sourceView = viewController.view
        viewController.present(activityViewController, animated: true, completion: nil)
    }
    
    @IBAction func menuPressed(_ sender: Any) {
        toggleSideMenu()
    }

@IBAction func backMenuButton1Pressed(_ sender: Any) {
        toggleSideMenu()
    }
checkResolution(file) { //check resolution function
          if (  file.type === 'image/svg+xml') {
            const img = new Image();
            img.src = window.URL.createObjectURL(file);
            img.onload = () => {
              let width = img.naturalWidth,
                height = img.naturalHeight;
                if ((width >= 640 && height >= 480) && (width <= 2700 && height <= 1500)) {

                }
          }
      }
    }
VA= function(x1, x2, x3, x4, x5, x6, x7, x8) 8000 * x1 + 4500 * x2 + 4000 * x3 + 3000 * x4 + 2000 * x5 + 1000 * x6 + 900 * x7 + 250 * x8 + -143145000;
VB= function(x1, x2, x3, x4, x5, x6, x7, x8) 7800 * x1 + 6500 * x2 + 5800 * x3 + 0 * x4 + 3100 * x5 + 1600 * x6 + 1000 * x7 + 300 * x8 + -158870000;
VC= function(x1, x2, x3, x4, x5, x6, x7, x8) 10000 * x1 + 0 * x2 + 3100 * x3 + 0 * x4 + 2600 * x5 + 1300 * x6 + 850 * x7 + 150 * x8 + -108440000;
VD= function(x1, x2, x3, x4, x5, x6, x7, x8) 5200 * x1 + 3700 * x2 + 3100 * x3 + 2700 * x4 + 2400 * x5 + 1800 * x6 + 1200 * x7 + 450 * x8 + -143805000;
VE= function(x1, x2, x3, x4, x5, x6, x7, x8) 7700 * x1 + 7100 * x2 + 0 * x3 + 5700 * x4 + 5100 * x5 + 1300 * x6 + 950 * x7 + 95 * x8 + - 181390500;
VF= function(x1, x2, x3, x4, x5, x6, x7, x8) 9300 * x1 + 8700 * x2 + 6100 * x3 + 5100 * x4 + 4000 * x5 + 1000 * x6 +  700 * x7 + 70 * x8 + -209273000;
VG= function(x1, x2, x3, x4, x5, x6, x7, x8) 6000 * x1 + 0 * x2 + 5000 * x3 + 4300 * x4 + 3000 * x5 + 1900 * x6 + 1400 * x7 + 920 * x8 + -174388000;
VH= function(x1, x2, x3, x4, x5, x6, x7, x8) 8500 * x1 + 3700 * x2 + 4200 * x3 + 3900 * x4 + 3500 * x5 + 2400 * x6 + 1000 * x7 + 250 * x8 + -183065000;
ls = list(eq1=VA, eq2=VB, eq3=VC, eq4=VD, eq5=VE, eq6=VF, eq7=VG, eq8=VH)
select ID,XRequestId__c, Codice_Fatturazione_Neta__c, Stato__c, Esito__c, Service_Name__c,Descrizione_Esito__c, Order__r.Id,Order__r.OrderNumber,Order_Item__r.Id
from Attivit_di_processo__c 
where Order__r.OrderNumber in
(
'00172077',
'00186436',
'00186181',
'00186435',
'00191760',
'00169305',
'00192421',
'00185244',
'00175257',
'00172881',
'00188557',
'00189652',
'00179023'
) and 
Order_Item__r.ID in 
(
'8027U000009pJAuQAM',
'8027U00000AXEyIQAX',
'8027U00000AXRfwQAH',
'8027U000009GS7GQAW',
'8027U00000AWREiQAP',
'8027U000009qCDOQA2',
'8027U00000AXW4PQAX',
'8027U00000AWLPYQA5',
'8027U00000AWREmQAP',
'8027U00000AX522QAD',
'8027U00000AVgfKQAT',
'8027U000009Eaq8QAC'
)
  '<a href="' ||
          APEX_UTIL.PREPARE_URL(p_url           => 'f?p=' || :APP_ID ||
                                                   ':836:' || :APP_SESSION ||
                                                   '::NO:836:P836_ID:' ||
                                                   (SELECT ID
                                                      FROM SGQ_VISITA_OBRA_ITENS_CHECK
                                                     WHERE ID_SGQ_VISITA_OBRA_ITENS = I.ID),
                                p_checksum_type => 'SESSION') ||
          '"><span aria-hidden="true" class="fa fa-check-square-o"></span></i></i></a>'
#Author: John Lawrence F. Quiñones
#Subject: CMSC 150 B-4L

#Author's note: Please set the working directory of R Studio to the directory of the extracted zip 
#               file containing "QuiñonesEx04.R" and "QuiñonesEx03.R" in order for this program to work

source('QuiñonesEx03.R')

VA= function(x1, x2, x3, x4, x5, x6, x7, x8, x9) 4 * x1 + -1 * x2 + 0 * x3 + -1 * x4 + 0 * x5 + 0 * x6 + 0 * x7 + 0 * x8 + 0 * x9 + -80;
VB= function(x1, x2, x3, x4, x5, x6, x7, x8, x9) -1 * x1 + 4 * x2 + -1 * x3 + 0 * x4 + -1 * x5 + 0 * x6 + 0 * x7 + 0 * x8 + 0 * x9 + -30;
VC= function(x1, x2, x3, x4, x5, x6, x7, x8, x9) 0 * x1 + -1 * x2 + 4 * x3 + 0 * x4 + 0 * x5 + -1 * x6 + 0 * x7 + 0 * x8 + 0 * x9 + -80;
VD= function(x1, x2, x3, x4, x5, x6, x7, x8, x9) -1 * x1 + 0 * x2 + 0 * x3 + 4 * x4 + -1 * x5 + 0 * x6 + -1 * x7 + 0 * x8 + 0 * x9 + -50;
VE= function(x1, x2, x3, x4, x5, x6, x7, x8, x9) 0 * x1 + -1 * x2 + 0 * x3 + -1 * x4 + 4 * x5 + -1 * x6 + 0 * x7 + -1 * x8 + 0 * x9 + 0;
VF= function(x1, x2, x3, x4, x5, x6, x7, x8, x9) 0 * x1 + 0 * x2 + -1 * x3 + 0 * x4 + -1 * x5 + 4 * x6 + 0 * x7 + 0 * x8 + -1 * x9 + -50;
VG= function(x1, x2, x3, x4, x5, x6, x7, x8, x9) 0 * x1 + 0 * x2 + 0 * x3 + -1 * x4 + 0 * x5 + 0 * x6 + 4 * x7 + 0 * x8 + 0 * x9 + -70;
VH= function(x1, x2, x3, x4, x5, x6, x7, x8, x9) 0 * x1 + 0 * x2 + 0 * x3 + 0 * x4 + 0 * x5 + 0 * x6 + -1 * x7 + 4 * x8 + -1 * x9 + -70;
VI= function(x1, x2, x3, x4, x5, x6, x7, x8, x9) 0 * x1 + 0 * x2 + 0 * x3 + 0 * x4 + 0 * x5 + -1 * x6 + 0 * x7 + -1 * x8 + 4 * x9 + -120;
ls = list(eq1=VA, eq2=VB, eq3=VC, eq4=VD, eq5=VE, eq6=VF, eq7=VG, eq8=VH, eq9=VI)


lbldList = AugCoeffMatrix(ls)
print(lbldList)

findPivotRow = function(n, mat){
  for (i in 1:n){
    #finding the pivot row
    pivotRow = NA
    for (j in i:n){
      if(is.na(pivotRow)){
        pivotRow = j
      }else{
        if(mat[pivotRow, 1] < mat[j, 1]){
          print("Pivot:")
          print(pivotRow)
          print("Eval:")
          print(j)
          print(mat[pivotRow, 1])
          print("is less than")
          print(mat[j, 1])
          pivotRow = j
        }
      }
    }
    
    #print("Pivot row:")
    #print(pivotRow)
  }
  return(pivotRow)
}
  
getRowArrangement = function(i, n, pivotRow, mat){
  rowArrangement = c()
  #dynamically getting the row names arrangement but with i and pivotRow swapped positions
  #print("Row Arrangement: ")
  for (k in 1:n){
    if(k == i){
      rowArrangement = c(rowArrangement, rownames(mat)[pivotRow])
    }else if(k == pivotRow){
      rowArrangement = c(rowArrangement, rownames(mat)[i])
    }else{
      rowArrangement = c(rowArrangement, rownames(mat)[k])
    }
    #print(rowArrangement)
  }
  return(rowArrangement)
}

GaussianMethod= function(ls){
  variables = ls[[2]]
  mat = ls[[1]]
  
  n = nrow(mat)
  
  for (i in 1:(n-1)){
    pivotRow = findPivotRow(n, mat)
      
    #if the first element of the pivot row is zero, return NA
    if((mat[pivotRow, i] == 0) & i != (n-1)){
      print("No solution for: ")
      print(mat)
      print("Pivot row: ")
      print(mat[pivotRow, ])
      return(NA)
    }
    
    #print("Initial Matrix:")
    #print(mat)
    
    rowArrangement = getRowArrangement(i, n, pivotRow, mat)
  
    #pivoted matrix
    mat = mat[match(rowArrangement, rownames(mat)), ]
    #print("pivoted matrix:")
    #print(mat)
    
    for (l in (i+1):n){
      pivotElement = mat[i, i]
      #print("Pivot element: ")
      #print(pivotElement)
      multiplier = (mat[l, i])/pivotElement
      
      #print("multiplier: ")
      #print(multiplier)
      
      normalizedRow = multiplier * mat[i, ]
      #print("Normalized Row:")
      #print(normalizedRow)
      
      differenceRow = mat[l, ] - normalizedRow
      #fix this part Mr. AI
      mat[l, ] <- differenceRow
      
      #print("difference:")
      #print(differenceRow)
      #print("Resulting Matrix:")
      #print(mat)
    }
  }
  
  #backwards substitution
  varValues = c()
  
  #getting the value of x[n]
  xSubN = mat[n, ncol(mat)] / mat[n,n]
  
  #initialize x vector with 0 as initial values
  x = c()
  for (i in 1:n){
    x <- c(x, 0)
  }
  
  #putting xSubN in x[n]
  x[n] <- xSubN
  
  for (i in (n-1): 1){
    sum = 0
    for (j in (i+1):n){
      prod = mat[i,j] * x[j]
      sum <- prod + sum
    }
    diff = mat[i, ncol(mat)] - sum
    quo = diff/mat[i,i]
    x[i] = quo
  }
  
  retVal = list(variables=variables, augcoeffmatrix = round(mat, digits=4), solution = x)
  
  return(retVal)
}

GaussJordanMethod = function(ls){
  variables = ls[[2]]
  mat = ls[[1]]
  
  n = nrow(mat)
  
  for (i in 1:n){
    if (i != n){
      pivotRow = findPivotRow(n, mat)
      
      #if the first element of the pivot row is zero, return NA
      if((mat[pivotRow, i] == 0) & i != (n-1)){
        print("No solution!")
        return(NA)
      }
      
      rowArrangement = c()
      #dynamically getting the row names arrangement but with i and pivotRow swapped positions
      #print("Row Arrangement: ")
      for (k in 1:n){
        if(k == i){
          rowArrangement = c(rowArrangement, rownames(mat)[pivotRow])
        }else if(k == pivotRow){
          rowArrangement = c(rowArrangement, rownames(mat)[i])
        }else{
          rowArrangement = c(rowArrangement, rownames(mat)[k])
        }
        #print(rowArrangement)
      }
      
      #pivoted matrix
      mat = mat[match(rowArrangement, rownames(mat)), ]
      #print("pivoted matrix:")
      #print(mat)
    }
    #print("Row to be normalized: ")
    #print(mat[i, ])
    #print("Divisor: ")
    #print(mat[i, i])
    
    #normalizing the pivot row
    mat[i, ] <- mat[i, ] / mat[i, i]
    #print("NORMALIZED: ")
    #print(mat)
    
    #subtracting the normalized row to mat[j, ] to create a diagonal matrix and extract the unknown variables
    for (j in 1:n){
      if (i == j){
        next
      }
      normalizedRow = mat[j, i] * mat[i, ]
      mat[j, ] <- mat[j, ] - normalizedRow
      
      #print("Resulting matrix with normalized row: ")
      #print(mat)
    }
  }
  
  #print("Final matrix: ")
  #print(mat)
  
  #saving the rhs values (solutions) to a vector
  x = c()
  for (i in 1:n){
    x[i] <- mat[i, ncol(mat)]
  }
  
  #print("Solutions: ")
  #print(x)
  
  retVal = list(variables=variables, augcoeffmatrix = round(mat), solution = x)
  
  return(retVal)
}

GaussianMethod(lbldList)
GaussJordanMethod(lbldList)
using i64 = long long;
template<class T>
constexpr T power(T a, i64 b) {
	T res = 1;
	for (; b; b /= 2, a *= a) {
		if (b % 2) {
			res *= a;
		}
	}
	return res;
}

constexpr i64 mul(i64 a, i64 b, i64 p) {
	i64 res = a * b - i64(1.L * a * b / p) * p;
	res %= p;
	if (res < 0) {
		res += p;
	}
	return res;
}
template<i64 P>
struct MLong {
	i64 x;
	constexpr MLong() : x{} {}
	constexpr MLong(i64 x) : x{norm(x % getMod())} {}

	static i64 Mod;
	constexpr static i64 getMod() {
		if (P > 0) {
			return P;
		} else {
			return Mod;
		}
	}
	constexpr static void setMod(i64 Mod_) {
		Mod = Mod_;
	}
	constexpr i64 norm(i64 x) const {
		if (x < 0) {
			x += getMod();
		}
		if (x >= getMod()) {
			x -= getMod();
		}
		return x;
	}
	constexpr i64 val() const {
		return x;
	}
	explicit constexpr operator i64() const {
		return x;
	}
	constexpr MLong operator-() const {
		MLong res;
		res.x = norm(getMod() - x);
		return res;
	}
	constexpr MLong inv() const {
		assert(x != 0);
		return power(*this, getMod() - 2);
	}
	constexpr MLong &operator*=(MLong rhs) & {
		x = mul(x, rhs.x, getMod());
		return *this;
	}
	constexpr MLong &operator+=(MLong rhs) & {
		x = norm(x + rhs.x);
		return *this;
	}
	constexpr MLong &operator-=(MLong rhs) & {
		x = norm(x - rhs.x);
		return *this;
	}
	constexpr MLong &operator/=(MLong rhs) & {
		return *this *= rhs.inv();
	}
	friend constexpr MLong operator*(MLong lhs, MLong rhs) {
		MLong res = lhs;
		res *= rhs;
		return res;
	}
	friend constexpr MLong operator+(MLong lhs, MLong rhs) {
		MLong res = lhs;
		res += rhs;
		return res;
	}
	friend constexpr MLong operator-(MLong lhs, MLong rhs) {
		MLong res = lhs;
		res -= rhs;
		return res;
	}
	friend constexpr MLong operator/(MLong lhs, MLong rhs) {
		MLong res = lhs;
		res /= rhs;
		return res;
	}
	friend constexpr std::istream &operator>>(std::istream &is, MLong &a) {
		i64 v;
		is >> v;
		a = MLong(v);
		return is;
	}
	friend constexpr std::ostream &operator<<(std::ostream &os, const MLong &a) {
		return os << a.val();
	}
	friend constexpr bool operator==(MLong lhs, MLong rhs) {
		return lhs.val() == rhs.val();
	}
	friend constexpr bool operator!=(MLong lhs, MLong rhs) {
		return lhs.val() != rhs.val();
	}
};

template<>
i64 MLong<0LL>::Mod = i64(1E18) + 9;

template<int P>
struct MInt {
	int x;
	constexpr MInt() : x{} {}
	constexpr MInt(i64 x) : x{norm(x % getMod())} {}

	static int Mod;
	constexpr static int getMod() {
		if (P > 0) {
			return P;
		} else {
			return Mod;
		}
	}
	constexpr static void setMod(int Mod_) {
		Mod = Mod_;
	}
	constexpr int norm(int x) const {
		if (x < 0) {
			x += getMod();
		}
		if (x >= getMod()) {
			x -= getMod();
		}
		return x;
	}
	constexpr int val() const {
		return x;
	}
	explicit constexpr operator int() const {
		return x;
	}
	constexpr MInt operator-() const {
		MInt res;
		res.x = norm(getMod() - x);
		return res;
	}
	constexpr MInt inv() const {
		assert(x != 0);
		return power(*this, getMod() - 2);
	}
	constexpr MInt &operator*=(MInt rhs) & {
		x = 1LL * x * rhs.x % getMod();
		return *this;
	}
	constexpr MInt &operator+=(MInt rhs) & {
		x = norm(x + rhs.x);
		return *this;
	}
	constexpr MInt &operator-=(MInt rhs) & {
		x = norm(x - rhs.x);
		return *this;
	}
	constexpr MInt &operator/=(MInt rhs) & {
		return *this *= rhs.inv();
	}
	friend constexpr MInt operator*(MInt lhs, MInt rhs) {
		MInt res = lhs;
		res *= rhs;
		return res;
	}
	friend constexpr MInt operator+(MInt lhs, MInt rhs) {
		MInt res = lhs;
		res += rhs;
		return res;
	}
	friend constexpr MInt operator-(MInt lhs, MInt rhs) {
		MInt res = lhs;
		res -= rhs;
		return res;
	}
	friend constexpr MInt operator/(MInt lhs, MInt rhs) {
		MInt res = lhs;
		res /= rhs;
		return res;
	}
	friend constexpr std::istream &operator>>(std::istream &is, MInt &a) {
		i64 v;
		is >> v;
		a = MInt(v);
		return is;
	}
	friend constexpr std::ostream &operator<<(std::ostream &os, const MInt &a) {
		return os << a.val();
	}
	friend constexpr bool operator==(MInt lhs, MInt rhs) {
		return lhs.val() == rhs.val();
	}
	friend constexpr bool operator!=(MInt lhs, MInt rhs) {
		return lhs.val() != rhs.val();
	}
};

template<>
int MInt<0>::Mod = 998244353;

template<int V, int P>
constexpr MInt<P> CInv = MInt<P>(V).inv();

constexpr int P = 998244353;
using Z = MInt<P>;
// copy paste react
return (
<>
<style>
{`
.animated-text {
            position: relative;
            display: inline-block;
            text-decoration: none;}

.animated-text::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background-color: white;
            transform-origin: 0% 50%;
            transform: scaleX(0);
            transition: transform 0.3s ease;}

.wrapper:hover .animated-text::after, .wrapper:hover .animated-text {
            transform: scaleX(1);}

//or (removing redundant, see if it works)
.wrapper:hover .animated-text1::after{
            transform: scaleX(1);}
 `}
<style>
<button className="wrapper">
<p className="animated-text">click</p>
</button>
</>
)
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.0.0-alpha3'

        //Maven plugin
        classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
        maven { url "https://jitpack.io" }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}
// copy paste for react 
return (
<>
    <style>{`
        .animated-text {
            position: relative;
            display: inline-block;
            text-decoration: none;
        }

        .animated-text::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background-color: blue;
            transform-origin: 0% 50%;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .animated-text:hover::after {
            transform: scaleX(1);
        }
    `}
</style>

    <p class="animated-text">Hover over this text to animate the underline.</p>

</>
)
/*----------------------------*/
bool isPrime(int n){for(int i=2;i*i<=n;i++){if(n%i==0)return false;}return true;}
bool isvowel(char c){return (c=='a'||c=='e'||c=='i'||c=='o'||c=='u');}
bool isperfect(long long num){int count = 0;while (num & count<11) {count += num % 10;num /= 10;}return count == 10;}
/*----------------------------*/
#define ll long long
#define dd double
#define vi  vector<int> 
#define vvi vector<vector<int>>
#define mi map<int,int>
#define pr  pair<int,int>
#define unset unordered_set<int>
#define ff first
#define ss second
#define pb push_back
#define MAX INT_MAX
#define MIN INT_MIN
#define fr(i,a,n) for(int i=a; i<n; i++)
const int MOD=1e9+7;

#include<bits/stdc++.h>
using namespace std;
int main(){
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    std::cout.tie(nullptr);

    return 0;
}
#include <iostream>
using namespace std;

int main() {
                  
       /* *****
           ****
            ***
             **
              *  */

for(int r=1;r<=5;r++){
    
    for(int s=1;s<=6-r ;s++){
        cout<<' ';
    }
    
    for(int c=0;c<=5-r;c++){
        cout<<'*';
    }
    
    cout<<'\n';
    
    
}




        
        
  return 0;      
}
<!-- Import the component -->
<script type="module" src="https://ajax.googleapis.com/ajax/libs/model-viewer/3.1.1/model-viewer.min.js"></script>

<!-- Use it like any other HTML element -->
<model-viewer alt="Neil Armstrong's Spacesuit from the Smithsonian Digitization Programs Office and National Air and Space Museum" src="shared-assets/models/NeilArmstrong.glb" ar environment-image="shared-assets/environments/moon_1k.hdr" poster="shared-assets/models/NeilArmstrong.webp" shadow-intensity="1" camera-controls touch-action="pan-y"></model-viewer>
//@version=4
strategy("Yuvis stock prediction system watch", shorttitle="YSPSW", overlay=true)

// Calculate the Bollinger Bands Length and Standard Deviation based on the chart's time frame
length = input(title="Length", defval=20, minval=1)
mult = input(title="Multiplier", defval=2.0, minval=0.1, maxval=10.0, step=0.1)

basis = sma(close, length)
dev = mult * stdev(close, length)
upper = basis + dev
lower = basis - dev

// Calculate Buy and Sell Conditions
buyCondition = crossover(close, lower)
sellCondition = crossunder(close, upper)

// Define the entry price and holding status
var float entryPrice = na
var bool holding = false

// Strategy Entry and Exit
if (buyCondition)
    if (holding == false) // Only enter if not already holding a position
        entryPrice := close
        strategy.entry("Buy", strategy.long)
        holding := true

if (sellCondition)
    if (holding)
        // Check if the current close is greater than or equal to the entry price
        if (close >= entryPrice)
            strategy.close("Buy") // Close long position
            holding := false
        // If the close is below the entry price, do nothing and continue holding

// Plot entry and exit signals on the chart for visualization
plotshape(series=buyCondition, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.triangleup, size=size.small)
plotshape(series=sellCondition, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.triangledown, size=size.small)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta name="x-apple-disable-message-reformatting">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="telephone=no" name="format-detection">
<title>Copy of Order Confirmation</title><!--[if (mso 16)]>
<style type="text/css">
a {text-decoration: none;}
</style>
<![endif]--><!--[if gte mso 9]><style>sup { font-size: 100% !important; }</style><![endif]--><!--[if gte mso 9]>
<xml>
<o:OfficeDocumentSettings>
<o:AllowPNG></o:AllowPNG>
<o:PixelsPerInch>96</o:PixelsPerInch>
</o:OfficeDocumentSettings>
</xml>
<![endif]-->
<style type="text/css">
.rollover:hover .rollover-first {
max-height:0px!important;
display:none!important;
}
.rollover:hover .rollover-second {
max-height:none!important;
display:inline-block!important;
}
.rollover div {
font-size:0px;
}
u + .body img ~ div div {
display:none;
}
#outlook a {
padding:0;
}
span.MsoHyperlink,
span.MsoHyperlinkFollowed {
color:inherit;
mso-style-priority:99;
}
a.es-button {
mso-style-priority:100!important;
text-decoration:none!important;
}
a[x-apple-data-detectors] {
color:inherit!important;
text-decoration:none!important;
font-size:inherit!important;
font-family:inherit!important;
font-weight:inherit!important;
line-height:inherit!important;
}
.es-desk-hidden {
display:none;
float:left;
overflow:hidden;
width:0;
max-height:0;
line-height:0;
mso-hide:all;
}
.es-button-border:hover > a.es-button {
color:#ffffff!important;
}
@media only screen and (max-width:600px) {*[class="gmail-fix"] { display:none!important } p, a { line-height:150%!important } h1, h1 a { line-height:120%!important } h2, h2 a { line-height:120%!important } h3, h3 a { line-height:120%!important } h4, h4 a { line-height:120%!important } h5, h5 a { line-height:120%!important } h6, h6 a { line-height:120%!important } h1 { font-size:30px!important; text-align:center } h2 { font-size:26px!important; text-align:center } h3 { font-size:20px!important; text-align:center } h4 { font-size:24px!important; text-align:left } h5 { font-size:20px!important; text-align:left } h6 { font-size:16px!important; text-align:left } .es-header-body h1 a, .es-content-body h1 a, .es-footer-body h1 a { font-size:30px!important } .es-header-body h2 a, .es-content-body h2 a, .es-footer-body h2 a { font-size:26px!important } .es-header-body h3 a, .es-content-body h3 a, .es-footer-body h3 a { font-size:20px!important } .es-header-body h4 a, .es-content-body h4 a, .es-footer-body h4 a { font-size:24px!important } .es-header-body h5 a, .es-content-body h5 a, .es-footer-body h5 a { font-size:20px!important } .es-header-body h6 a, .es-content-body h6 a, .es-footer-body h6 a { font-size:16px!important } .es-menu td a { font-size:14px!important } .es-header-body p, .es-header-body a { font-size:16px!important } .es-content-body p, .es-content-body a { font-size:16px!important } .es-footer-body p, .es-footer-body a { font-size:16px!important } .es-infoblock p, .es-infoblock a { font-size:12px!important } .es-m-txt-c, .es-m-txt-c h1, .es-m-txt-c h2, .es-m-txt-c h3, .es-m-txt-c h4, .es-m-txt-c h5, .es-m-txt-c h6 { text-align:center!important } .es-m-txt-r, .es-m-txt-r h1, .es-m-txt-r h2, .es-m-txt-r h3, .es-m-txt-r h4, .es-m-txt-r h5, .es-m-txt-r h6 { text-align:right!important } .es-m-txt-j, .es-m-txt-j h1, .es-m-txt-j h2, .es-m-txt-j h3, .es-m-txt-j h4, .es-m-txt-j h5, .es-m-txt-j h6 { text-align:justify!important } .es-m-txt-l, .es-m-txt-l h1, .es-m-txt-l h2, .es-m-txt-l h3, .es-m-txt-l h4, .es-m-txt-l h5, .es-m-txt-l h6 { text-align:left!important } .es-m-txt-r img, .es-m-txt-c img, .es-m-txt-l img { display:inline!important } .es-m-txt-r .rollover:hover .rollover-second, .es-m-txt-c .rollover:hover .rollover-second, .es-m-txt-l .rollover:hover .rollover-second { display:inline!important } .es-m-txt-r .rollover div, .es-m-txt-c .rollover div, .es-m-txt-l .rollover div { line-height:0!important; font-size:0!important } .es-spacer { display:inline-table } a.es-button, button.es-button { font-size:20px!important } a.es-button, button.es-button { display:block!important } .es-button-border { display:block!important } .es-m-fw, .es-m-fw.es-fw, .es-m-fw .es-button { display:block!important } .es-m-il, .es-m-il .es-button, .es-social, .es-social td, .es-menu { display:inline-block!important } .es-adaptive table, .es-left, .es-right { width:100%!important } .es-content table, .es-header table, .es-footer table, .es-content, .es-footer, .es-header { width:100%!important; max-width:600px!important } .adapt-img { width:100%!important; height:auto!important } .es-mobile-hidden, .es-hidden { display:none!important } .es-desk-hidden { width:auto!important; overflow:visible!important; float:none!important; max-height:inherit!important; line-height:inherit!important } tr.es-desk-hidden { display:table-row!important } table.es-desk-hidden { display:table!important } td.es-desk-menu-hidden { display:table-cell!important } .es-menu td { width:1%!important } table.es-table-not-adapt, .esd-block-html table { width:auto!important } .es-social td { padding-bottom:10px } .h-auto { height:auto!important } .img-4272 { width:88px!important } }
</style>
</head>
<body data-new-gr-c-s-loaded="14.1110.0" class="body" style="width:100%;height:100%;padding:0;Margin:0">
<div class="es-wrapper-color" style="background-color:#555555"><!--[if gte mso 9]>
<v:background xmlns:v="urn:schemas-microsoft-com:vml" fill="t">
<v:fill type="tile" color="#555555"></v:fill>
</v:background>
<![endif]-->
<table class="es-wrapper" width="100%" cellspacing="0" cellpadding="0" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;padding:0;Margin:0;width:100%;height:100%;background-repeat:repeat;background-position:center top;background-color:#555555">
<tr>
<td valign="top" style="padding:0;Margin:0">
<table cellpadding="0" cellspacing="0" class="es-content" align="center" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;width:100%;table-layout:fixed !important">
<tr>
<td align="center" style="padding:0;Margin:0">
<table class="es-content-body" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;background-color:transparent;width:600px" cellspacing="0" cellpadding="0" align="center">
<tr>
<td align="left" style="padding:0;Margin:0;padding-right:10px;padding-bottom:5px;padding-left:10px"><!--[if mso]><table style="width:580px" cellpadding="0" cellspacing="0"><tr><td style="width:280px" valign="top"><![endif]-->
<table class="es-left" cellspacing="0" cellpadding="0" align="left" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;float:left">
<tr>
<td class="es-m-p0r es-m-p20b" valign="top" align="center" style="padding:0;Margin:0;width:280px">
<table width="100%" cellspacing="0" cellpadding="0" role="presentation" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px">
<tr>
<td class="es-infoblock" align="left" style="padding:0;Margin:0"><p style="Margin:0;mso-line-height-rule:exactly;font-family:Arial, sans-serif;line-height:18px;letter-spacing:0;color:#A0A7AC;font-size:12px">FamiliaValadezShop</p></td>
</tr>
</table></td>
</tr>
</table><!--[if mso]></td><td style="width:20px"></td><td style="width:280px" valign="top"><![endif]-->
<table cellspacing="0" cellpadding="0" align="right" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px">
<tr>
<td align="left" style="padding:0;Margin:0;width:280px">
<table width="100%" cellspacing="0" cellpadding="0" role="presentation" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px">
<tr>
<td align="right" class="es-infoblock" style="padding:0;Margin:0"><p style="Margin:0;mso-line-height-rule:exactly;font-family:Arial, sans-serif;line-height:18px;letter-spacing:0;color:#A0A7AC;font-size:12px"><a href="https://www.familiavaladezshop.com/pages/contact" target="_blank" class="view" style="mso-line-height-rule:exactly;text-decoration:none;color:#A0A7AC;font-size:12px;line-height:18px">SEE THIS EMAIL ONLINE</a></p></td>
</tr>
</table></td>
</tr>
</table><!--[if mso]></td></tr></table><![endif]--></td>
</tr>
</table></td>
</tr>
</table>
<table class="es-content" cellspacing="0" cellpadding="0" align="center" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;width:100%;table-layout:fixed !important">
<tr>
<td align="center" bgcolor="transparent" style="padding:0;Margin:0;background-color:transparent">
<table class="es-content-body" cellspacing="0" cellpadding="0" align="center" bgcolor="#000000" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;background-color:#000000;width:600px">
<tr>
<td class="es-m-p10" style="Margin:0;padding-right:10px;padding-left:10px;padding-top:20px;padding-bottom:20px;background-color:#191919;border-radius:0" bgcolor="#191919" align="left">
<table width="100%" cellspacing="0" cellpadding="0" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px">
<tr>
<td valign="top" align="center" style="padding:0;Margin:0;width:580px">
<table width="100%" cellspacing="0" cellpadding="0" role="presentation" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px">
<tr>
<td class="es-m-p230l es-m-p35r es-m-txt-c" align="center" style="padding:0;Margin:0;font-size:0"><a target="_blank" href="https://www.familiavaladezshop.com/" style="mso-line-height-rule:exactly;text-decoration:none;color:#3CA7F1;font-size:14px"><img class="img-4272" src="https://fcfftlc.stripocdn.email/content/guids/CABINET_ad982ec6453fe2e5174ea2fea7631bf4a7e10cc10f45954f6f9d8d17814eac7a/images/logotransparentpng.png" alt="" width="105" style="display:block;font-size:14px;border:0;outline:none;text-decoration:none;border-radius:0" height="101"></a></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr>
<td style="Margin:0;padding-top:20px;padding-bottom:20px;padding-right:20px;padding-left:20px;background-color:#3d85c6" bgcolor="#3d85c6" align="left">
<table width="100%" cellspacing="0" cellpadding="0" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px">
<tr>
<td valign="top" align="center" style="padding:0;Margin:0;width:560px">
<table width="100%" cellspacing="0" cellpadding="0" role="presentation" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px">
<tr>
<td align="left" style="padding:0;Margin:0"><h3 style="Margin:0;font-family:Arial, sans-serif;mso-line-height-rule:exactly;letter-spacing:0;font-size:20px;font-style:normal;font-weight:bold;line-height:24px;color:#333333">Thank Your For Shopping With Us!!</h3></td>
</tr>
<tr>
<td align="center" bgcolor="#3d85c6" style="padding:0;Margin:0;padding-top:15px;padding-bottom:15px"><h3 style="Margin:0;font-family:Arial, sans-serif;mso-line-height-rule:exactly;letter-spacing:0;font-size:20px;font-style:normal;font-weight:bold;line-height:43px;color:#000000"><span style="font-size:36px;line-height:54px !important;background:transparent">Your Order Has Shipped!</span></h3></td>
</tr>
<tr>
<td align="center" style="padding:0;Margin:0"><p style="Margin:0;mso-line-height-rule:exactly;font-family:Arial, sans-serif;line-height:24px;letter-spacing:0;color:#ead1dc;font-size:16px">Tracking Number:</p><p style="Margin:0;mso-line-height-rule:exactly;font-family:Arial, sans-serif;line-height:21px;letter-spacing:0;color:#333333;font-size:14px"><a target="_blank" href="https://www.familiavaladezshop.com/pages/refund-poli" style="mso-line-height-rule:exactly;text-decoration:none;color:#3CA7F1;font-size:14px"></a><a href="https://t.17track.net/en#nums=4205021392748927005455000434930875" target="_blank" style="mso-line-height-rule:exactly;text-decoration:none;color:#3CA7F1;font-size:14px">4205021392748927005455000434930875</a></p></td>
</tr>
<tr>
<td align="center" style="padding:0;Margin:0;padding-left:10px"><p style="Margin:0;mso-line-height-rule:exactly;font-family:Arial, sans-serif;line-height:21px;letter-spacing:0;color:#333333;font-size:14px">​</p></td>
</tr>
<tr>
<td align="center" style="Margin:0;padding-right:10px;padding-left:10px;padding-top:15px;padding-bottom:15px"><span class="es-button-border" style="border-style:solid;border-color:#2cb543;background:#191919;border-width:0px;display:inline-block;border-radius:20px;width:auto"><a href="https://www.familiavaladezshop.com/apps/trackingmore" class="es-button" target="_blank" style="mso-style-priority:100 !important;text-decoration:none !important;mso-line-height-rule:exactly;color:#ffffff;font-size:18px;padding:10px 35px;display:inline-block;background:#191919;border-radius:20px;font-family:'lucida sans unicode', 'lucida grande', sans-serif;font-weight:normal;font-style:normal;line-height:22px !important;width:auto;text-align:center;letter-spacing:0;mso-padding-alt:0;mso-border-alt:10px solid #191919">Track Your Order!</a></span></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr>
<td style="Margin:0;padding-right:20px;padding-left:20px;padding-top:25px;padding-bottom:30px;background-color:#f8f8f8" bgcolor="#f8f8f8" align="left"><!--[if mso]><table style="width:560px" cellpadding="0" cellspacing="0"><tr><td style="width:270px" valign="top"><![endif]-->
<table class="es-left" cellspacing="0" cellpadding="0" align="left" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;float:left">
<tr>
<td class="es-m-p20b" align="left" style="padding:0;Margin:0;width:270px">
<table width="100%" cellspacing="0" cellpadding="0" role="presentation" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px">
<tr>
<td align="center" style="padding:0;Margin:0;padding-bottom:10px"><h3 style="Margin:0;font-family:Arial, sans-serif;mso-line-height-rule:exactly;letter-spacing:0;font-size:20px;font-style:normal;font-weight:bold;line-height:24px;color:#242424">We're here to help</h3></td>
</tr>
<tr>
<td align="center" style="padding:0;Margin:0"><p style="Margin:0;mso-line-height-rule:exactly;font-family:Arial, sans-serif;line-height:21px;letter-spacing:0;color:#242424;font-size:14px">Email Us&nbsp;</p><p style="Margin:0;mso-line-height-rule:exactly;font-family:Arial, sans-serif;line-height:21px;letter-spacing:0;color:#242424;font-size:14px">​<a target="_blank" style="mso-line-height-rule:exactly;text-decoration:none;color:#3CA7F1;font-size:14px;line-height:21px" href="mailto:familiavaladezshop@gmail.com">familiavaladezshop@gmail.com</a></p><p style="Margin:0;mso-line-height-rule:exactly;font-family:Arial, sans-serif;line-height:21px;letter-spacing:0;color:#242424;font-size:14px">for expert assistance.</p></td>
</tr>
</table></td>
</tr>
</table><!--[if mso]></td><td style="width:20px"></td><td style="width:270px" valign="top"><![endif]-->
<table class="es-right" cellspacing="0" cellpadding="0" align="right" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;float:right">
<tr>
<td align="left" style="padding:0;Margin:0;width:270px">
<table width="100%" cellspacing="0" cellpadding="0" role="presentation" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px">
<tr>
<td align="center" style="padding:0;Margin:0;padding-bottom:10px"><h3 style="Margin:0;font-family:Arial, sans-serif;mso-line-height-rule:exactly;letter-spacing:0;font-size:20px;font-style:normal;font-weight:bold;line-height:24px;color:#242424">Our guarantee</h3></td>
</tr>
<tr>
<td align="center" style="padding:0;Margin:0"><p style="Margin:0;mso-line-height-rule:exactly;font-family:Arial, sans-serif;line-height:21px;letter-spacing:0;color:#242424;font-size:14px">Your satisfaction is 100% guaranteed.</p><p style="Margin:0;mso-line-height-rule:exactly;font-family:Arial, sans-serif;line-height:21px;letter-spacing:0;color:#242424;font-size:14px">See our&nbsp;<a target="_blank" href="https://www.familiavaladezshop.com/pages/refund-policy" style="mso-line-height-rule:exactly;text-decoration:none;color:#3CA7F1;font-size:14px">Returns and Exchanges policy.</a></p></td>
</tr>
</table></td>
</tr>
</table><!--[if mso]></td></tr></table><![endif]--></td>
</tr>
</table></td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" class="es-footer" align="center" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;width:100%;table-layout:fixed !important;background-color:transparent;background-repeat:repeat;background-position:center top">
<tr>
<td align="center" style="padding:0;Margin:0">
<table class="es-footer-body" cellspacing="0" cellpadding="0" align="center" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;background-color:#242424;width:600px">
<tr>
<td align="left" style="padding:20px;Margin:0">
<table width="100%" cellspacing="0" cellpadding="0" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px">
<tr>
<td valign="top" align="center" style="padding:0;Margin:0;width:560px">
<table width="100%" cellspacing="0" cellpadding="0" role="presentation" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px">
<tr>
<td align="center" style="padding:0;Margin:0"><p style="Margin:0;mso-line-height-rule:exactly;font-family:Arial, sans-serif;line-height:20px;letter-spacing:0;color:#888888;font-size:13px"><strong><a target="_blank" style="mso-line-height-rule:exactly;text-decoration:none;color:#AAAAAA;font-size:13px;line-height:20px" href="https://www.familiavaladezshop.com/collections/all">Browse all products</a>&nbsp;</strong>•<strong href="https://"><a target="_blank" style="mso-line-height-rule:exactly;text-decoration:none;color:#AAAAAA;font-size:13px;line-height:20px" href="https://viewstripo.email">Locate store</a></strong></p></td>
</tr>
<tr>
<td align="center" style="padding:0;Margin:0;padding-top:20px;padding-bottom:20px"><p style="Margin:0;mso-line-height-rule:exactly;font-family:Arial, sans-serif;line-height:16px;letter-spacing:0;color:#888888;font-size:13px"><a target="_blank" href="mailto:familiavaladezshop@gmail.com" style="mso-line-height-rule:exactly;text-decoration:none;color:#AAAAAA;font-size:13px;line-height:16px">Familiavaladezshop@gmail.com</a></p></td>
</tr>
<tr>
<td align="center" style="padding:0;Margin:0"><p style="Margin:0;mso-line-height-rule:exactly;font-family:Arial, sans-serif;line-height:20px;letter-spacing:0;color:#888888;font-size:13px"><strong><a target="_blank" style="mso-line-height-rule:exactly;text-decoration:none;color:#AAAAAA;font-size:13px;line-height:20px" class="unsubscribe" href="">​</a><a target="_blank" style="mso-line-height-rule:exactly;text-decoration:none;color:#AAAAAA;font-size:13px;line-height:20px" href="https://www.familiavaladezshop.com/pages/contact">Customer Support</a></strong></p></td>
</tr>
<tr>
<td align="center" style="padding:0;Margin:0;padding-bottom:10px;padding-top:10px"><p style="Margin:0;mso-line-height-rule:exactly;font-family:Arial, sans-serif;line-height:20px;letter-spacing:0;color:#888888;font-size:13px"><em><span style="font-size:11px;line-height:17px">You are receiving this email because you have visited our site or asked us about regular newsletter</span></em></p></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
<table class="es-content" cellspacing="0" cellpadding="0" align="center" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;width:100%;table-layout:fixed !important">
<tr>
<td align="center" style="padding:0;Margin:0">
<table class="es-content-body" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;background-color:transparent;width:600px" cellspacing="0" cellpadding="0" align="center">
<tr>
<td align="left" style="Margin:0;padding-right:20px;padding-left:20px;padding-bottom:30px;padding-top:30px">
<table width="100%" cellspacing="0" cellpadding="0" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px">
<tr>
<td valign="top" align="center" style="padding:0;Margin:0;width:560px">
<table width="100%" cellspacing="0" cellpadding="0" role="presentation" style="mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px">
<tr>
<td class="es-infoblock made_with" align="center" style="padding:0;Margin:0;font-size:0"><a target="_blank" href="https://viewstripo.email/?utm_source=templates&utm_medium=email&utm_campaign=gadgets&utm_content=trigger_newsletter" style="mso-line-height-rule:exactly;text-decoration:none;color:#A0A7AC;font-size:12px"><img src="https://fcfftlc.stripocdn.email/content/guids/CABINET_9df86e5b6c53dd0319931e2447ed854b/images/64951510234941531.png" alt="" width="125" height="56" style="display:block;font-size:14px;border:0;outline:none;text-decoration:none"></a></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
</div>
</body>
</html>
    // for sophon opencv, the memory is not continuous if the width of image is not 64 bytes aligned
    uint8_t continous_data[cvmat.cols * cvmat.rows * cvmat.channels()];
    if (!cvmat.isContinuous())
    {
        std::cout << "cvmat is not continuous" << std::endl;
        for (int i = 0; i < cvmat.rows; i++)
        {
            std::memcpy(continous_data + i * cvmat.cols * cvmat.channels(), cvmat.ptr(i), cvmat.cols * cvmat.channels());
        }
    }
    else
    {
        std::memcpy(continous_data, cvmat.data, cvmat.cols * cvmat.rows * cvmat.channels());
    }
/******************************************************************************

                            Online Java Compiler.
                Code, Compile, Run and Debug java program online.
Write your code in this editor and press "Run" button to execute it.

*******************************************************************************/
import java.lang.Math;
public class Main
{
	public static void main(String[] args) {
		System.out.println("Hello World");
// 		int a=1,b=-7,c=10;
// 		int d=b*b-4*a*c;
// 		double sqrt=Math.sqrt(Math.abs(d));
// 		if(d>0){
// 		    double s1=(-b+sqrt)/2*a;
// 		    double s2=(-b-sqrt)/2*a;
// 		    System.out.println(s1+" "+s2);
// 		} else if(d==0){
// 		    System.out.println(-b/2*a);
// 		} else {
// 		    System.out.println((-b/2*a)+"+i"+sqrt+" "+(-b/2*a)+"-i"+sqrt);
// 		}
		
// 		String[] single_digits = new String[] {
//         "zero", "one", "two", "three", "four",
//         "five", "six", "seven", "eight", "nine"
//         };
        
//         String[] two_digits = new String[] {
//         "", "ten", "eleven", "twelve",
//         "thirteen", "fourteen", "fifteen", "sixteen",
//         "seventeen", "eighteen", "nineteen"
//         };
        
//         String[] tens_multiple = new String[] {
//         "", "", "twenty", "thirty", "forty",
//         "fifty", "sixty", "seventy", "eighty", "ninety"
//         };
        
//         String[] tens_power = new String[] { "hundred", "thousand" };
//         String s="";
        
//         int n=1019;  //321 one hundred twenty one 311 one hundred and thirteen
//         int n1=n;
//         int r=0;
//         int c=0;
//         if(n==0){
//             System.out.println(single_digits[0]);
//             return;
//         }
//         while(n>0){
//             int m=n%10;
//             r=r*10+m;
//             n/=10;
//             c++;
//         }
        
//     int m=r%10;
//             if(c==4){
//                 s=single_digits[m]+" "+tens_power[1]+" ";
//             } else if(c==3 && m!=0){
//                 s=single_digits[m]+" "+tens_power[0];
//                 s=n1%100!=0?s+" and":s;
//                 // System.out.print(n);
//             } else if(c==2){
//                 if(m!=1){
//                     s=tens_multiple[m];
//                 } else {
//                     int b=r/10;
//                     s=two_digits[b+1];
//                     r=0;
//                 }
//             }
//         c--;
//         r=r/10;
//         while(r>0){
//             m=r%10;
//              if(c==3){
//                 if(m==0) {
//                     s+=" and";
//                 } else {
//                     s+=single_digits[m]+" "+tens_power[0];
//                     s=n1%100!=0?s+" and":s;
//                 }
//             } else if(c==2){
//                 if(m!=1){
//                     s+=" "+tens_multiple[m];
//                 } else {
//                     int b=r/10;
//                     s+=" "+two_digits[b+1];
//                     break;
//                 }
//             } else {
//                 s+=" "+single_digits[m];
//             }
//             c--;
//             r/=10;
//         }
//         System.out.println(s);

        int n1=1,d1=5,n2=4,d2=15,gcd,x,y;
        int max=Math.max(d1,d2);
        int min=Math.min(d1,d2);
        if(max%min==0){
            x=max/min;
            gcd=max;
            if(d1==min){
                n1*=x;
            } else {
                n2*=x;
            }
        }else{
            gcd=d1*d2;
            n1*=(gcd/d1);
            n2*=(gcd/d2);
        }
        System.out.println((double)(n1+n2)/gcd);
	
	}
}
#include <iostream>
#include<cmath>
#include<iomanip>
using namespace std;
int main() {
   int p1n1,p1n2,p2n1,p2n2,sum1,sum2,roll1,roll2;
   char name1,name2;
   cout<<"player 1 enter your roll number "<<endl;
   cin>>roll1;
   cout<<"player 1 input your name plz "<<endl;
   cin>>name1;
   cout<<"player 2 input your name plz "<<endl;
   cin>>name2;
   cout<<"player 2 enter your roll number "<<endl;
   cin>>roll2;
   for(int j=1;j<=5;j++){
      
   cout<<"player 1 toss the dice twice:"<<endl;
   cin>>p1n1>>p1n2;
   sum1 = sum1 + p1n1 + p1n2; 
   
                     
           
       }      
   cout<<"total score of payer 1 is = "<<sum1<<endl;
   
   
     for(int j=1;j<=5;j++){
      
   cout<<"player 2 toss the dice twice:"<<endl;
   cin>>p2n1>>p2n2;
   sum2 = sum2 + p2n1 + p2n2; 
   
                     
           
       }      
   cout<<"total score of payer 2 is = "<<sum2<<endl;
    return 0;
}
/* Keyword values */
background-size: cover;
background-size: contain;

/* One-value syntax */
/* the width of the image (height becomes 'auto') */
background-size: 50%;
background-size: 3.2em;
background-size: 12px;
background-size: auto;

/* Two-value syntax */
/* first value: width of the image, second value: height */
background-size: 50% auto;
background-size: 3em 25%;
background-size: auto 6px;
background-size: auto auto;

/* Multiple backgrounds */
background-size: auto, auto; /* Not to be confused with `auto auto` */
background-size: 50%, 25%, 25%;
background-size: 6px, auto, contain;

/* Global values */
background-size: inherit;
background-size: initial;
background-size: revert;
background-size: revert-layer;
background-size: unset;
ctrl + u - clear current line in terminal
class Solution
{
    public:
    Node* pairWiseSwap(struct Node* curr) 
    {
        // The task is to complete this method
        if(!curr || !curr->next)
            return curr;
        
        Node* nxtHead = pairWiseSwap(curr->next->next);
        Node* newHead = curr->next;
        curr->next->next = curr;
        curr->next = nxtHead;
        return newHead;
        
    }
};
selector input.jet-search-filter__input{
  
    background-image: url("https://desenvolvimento.pinaculodigital.com.br/andav/wp-content/uploads/2023/10/Vector.svg");
    background-repeat: no-repeat;
    background-position: 24px;
    padding-left: 52px !important;
    
}
selector input.jet-search-filter__input:focus-visible {
    outline: 1px solid #F47E54!important;
}
star

Tue Oct 10 2023 06:35:04 GMT+0000 (Coordinated Universal Time)

@Astik

star

Tue Oct 10 2023 05:54:52 GMT+0000 (Coordinated Universal Time)

@Astik

star

Tue Oct 10 2023 04:21:24 GMT+0000 (Coordinated Universal Time) https://chat.openai.com/

@rtrmukesh

star

Mon Oct 09 2023 22:50:10 GMT+0000 (Coordinated Universal Time) https://bling2.com/

@proseo #json #mysql #react.js #nodejs

star

Mon Oct 09 2023 22:13:33 GMT+0000 (Coordinated Universal Time)

@pablo1766

star

Mon Oct 09 2023 19:34:20 GMT+0000 (Coordinated Universal Time) https://beginnersbook.com/2014/06/c-program-to-find-factorial-of-number-using-recursion/

@sammy

star

Mon Oct 09 2023 17:11:07 GMT+0000 (Coordinated Universal Time)

@hamzakhan123

star

Mon Oct 09 2023 16:49:18 GMT+0000 (Coordinated Universal Time)

@destinyChuck #html #css #javascript

star

Mon Oct 09 2023 15:45:52 GMT+0000 (Coordinated Universal Time) www.google.com

@vipo

star

Mon Oct 09 2023 15:04:35 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/7715124/do-something-if-screen-width-is-less-than-960-px

@nataliaferraz

star

Mon Oct 09 2023 15:03:00 GMT+0000 (Coordinated Universal Time) https://www.udemy.com/course/microservices-with-node-js-and-react/learn/lecture/19119936

@jalalrafiyev

star

Mon Oct 09 2023 13:41:04 GMT+0000 (Coordinated Universal Time)

@jrg_300i #php #poo #mvc #jquery #postgresql

star

Mon Oct 09 2023 13:39:39 GMT+0000 (Coordinated Universal Time)

@aniket_chavan

star

Mon Oct 09 2023 12:03:20 GMT+0000 (Coordinated Universal Time)

@akaeyad

star

Mon Oct 09 2023 10:51:33 GMT+0000 (Coordinated Universal Time)

@viinod07

star

Mon Oct 09 2023 10:47:40 GMT+0000 (Coordinated Universal Time)

@hasnat #ios #swift #menu #slide #slidemenu #slider #slideview

star

Mon Oct 09 2023 10:40:24 GMT+0000 (Coordinated Universal Time)

@viinod07

star

Mon Oct 09 2023 10:30:02 GMT+0000 (Coordinated Universal Time)

@viinod07

star

Mon Oct 09 2023 09:53:24 GMT+0000 (Coordinated Universal Time)

@viinod07

star

Mon Oct 09 2023 09:35:39 GMT+0000 (Coordinated Universal Time)

@viinod07

star

Mon Oct 09 2023 08:52:10 GMT+0000 (Coordinated Universal Time) https://chat.openai.com/

@rtrmukesh

star

Mon Oct 09 2023 08:47:36 GMT+0000 (Coordinated Universal Time)

@atsigkas

star

Mon Oct 09 2023 08:32:16 GMT+0000 (Coordinated Universal Time) https://leetcode.com/contest/weekly-contest-366/problems/apply-operations-to-make-two-strings-equal/

@DxBros #c++ #dp #two_string_equal

star

Mon Oct 09 2023 07:52:02 GMT+0000 (Coordinated Universal Time)

@hasnat #ios #swift #menu #slide #slidemenu #slider #slideview

star

Mon Oct 09 2023 07:42:33 GMT+0000 (Coordinated Universal Time)

@Samarmhamed78

star

Mon Oct 09 2023 07:19:21 GMT+0000 (Coordinated Universal Time)

@lawlaw #r

star

Mon Oct 09 2023 07:03:41 GMT+0000 (Coordinated Universal Time)

@atsigkas

star

Mon Oct 09 2023 05:11:58 GMT+0000 (Coordinated Universal Time)

@hallancma #apex #javascript

star

Mon Oct 09 2023 00:47:38 GMT+0000 (Coordinated Universal Time)

@lawlaw #r

star

Sun Oct 08 2023 21:17:32 GMT+0000 (Coordinated Universal Time)

@Tesla #cpp

star

Sun Oct 08 2023 16:22:39 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/28295933/difference-between-build-gradle-project-and-build-gradle-module

@super

star

Sun Oct 08 2023 15:39:33 GMT+0000 (Coordinated Universal Time)

@sadik #css #react.js #frontend #styling

star

Sun Oct 08 2023 13:00:17 GMT+0000 (Coordinated Universal Time)

@royp79549 #c++

star

Sun Oct 08 2023 10:54:49 GMT+0000 (Coordinated Universal Time)

@yolobotoffender

star

Sun Oct 08 2023 08:02:19 GMT+0000 (Coordinated Universal Time) https://modelviewer.dev/

@mehran

star

Sun Oct 08 2023 05:38:48 GMT+0000 (Coordinated Universal Time)

@Tonyfingh

star

Sun Oct 08 2023 04:44:04 GMT+0000 (Coordinated Universal Time)

@FamiliaValadez

star

Sun Oct 08 2023 02:09:44 GMT+0000 (Coordinated Universal Time)

@zhwalker #c++

star

Sat Oct 07 2023 23:11:37 GMT+0000 (Coordinated Universal Time) https://www.thiscodeworks.com/extension/initializing?newuser

@Ty

star

Sat Oct 07 2023 20:33:09 GMT+0000 (Coordinated Universal Time) https://qiwi.com/main

@jokergsh

star

Sat Oct 07 2023 20:31:26 GMT+0000 (Coordinated Universal Time) https://vk.com/team_spirit

@jokergsh

star

Sat Oct 07 2023 20:08:02 GMT+0000 (Coordinated Universal Time)

@samee

star

Sat Oct 07 2023 16:52:35 GMT+0000 (Coordinated Universal Time)

@yolobotoffender

star

Sat Oct 07 2023 12:16:53 GMT+0000 (Coordinated Universal Time) https://developer.mozilla.org/en-US/docs/Web/CSS/background-size

@farzan_basha

star

Sat Oct 07 2023 11:05:15 GMT+0000 (Coordinated Universal Time) https://www.thiscodeworks.com/extension/initializing?newuser

@stepania2023

star

Sat Oct 07 2023 10:53:32 GMT+0000 (Coordinated Universal Time)

@pullamma

star

Sat Oct 07 2023 04:12:38 GMT+0000 (Coordinated Universal Time) https://practice.geeksforgeeks.org/problems/pairwise-swap-elements-of-a-linked-list-by-swapping-data/1

@DxBros #linkedlist #pairwiseswap

star

Sat Oct 07 2023 01:11:06 GMT+0000 (Coordinated Universal Time)

@nielsonsantana #css

Save snippets that work with our extensions

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