Snippets Collections
package org.example;
public class Main {
    public static void main(String[] args) {

        for (int i = 0; i < 5; i++) {

            if (i == 3) {
                System.out.println("The value of i is " +i );
            }

        }
    }
}
// Output: The value of i is 3
public class Main {
    public static void main(String[] args) {

        for (int i = 0; i < 5; i++) {

            System.out.println("We love Java!");

        }
    }
}
/* Output:
We love Java!
We love Java!
We love Java!
We love Java!
We love Java!
*/
public class Main {
    public static void main(String[] args) {
      
        int i = 0;
        do {
            System.out.println("int i is equal to " +i);
            i++;
        }
        while (i < 5);
    }
}
/* Output:
int i is equal to 0
int i is equal to 1
int i is equal to 2
int i is equal to 3
int i is equal to 4
*/
public class Main {
    public static void main(String[] args) {

        int i = 0;
        while (i < 11) {
            System.out.println("int i is equal to " + i);
            i++;
        }
    }
}
/* Output: 
int i is equal to 0
int i is equal to 1
int i is equal to 2
int i is equal to 3
int i is equal to 4
int i is equal to 5
int i is equal to 6
int i is equal to 7
int i is equal to 8
int i is equal to 9
int i is equal to 10
*/
/* Mobile */
@media (max-width: 480px) { // styles
}
/* Extra small devices */
@media (min-width: 481px) and (max-width: 767px) { // styles
}
/* Small tablets */
@media (min-width: 768px) and (max-width: 991px) { // styles
}
/* Large tablets/laptops */
@media (min-width: 992px) and (max-width: 1199px) { // styles
}
/* Desktops */
@media (min-width: 1200px) and (max-width: 1919px) { // styles
}
/* Extra large screens */
@media (min-width: 1920px) {
// styles
}
public class Main {
    public static void main(String[] args) {

        String browserType = "chrome";

        // Switch-case statement to select a browser
        switch (browserType) {
            case "chrome":
                System.out.println("Selected browser: Chrome");
                break;
            case "firefox":
                System.out.println("Selected browser: Firefox");
                break;
            case "ie":
                System.out.println("Selected browser: Internet Explorer");
                break;
            default:
                System.out.println("Unsupported browser type: " + browserType);
        }
    }
}
// Output: Selected browser: Chrome
public class Main {
    public static void main(String[] args) {
      
        boolean enrolledInAutomationClass = true; 
        boolean notEnrolledInAutomationClass = !enrolledInAutomationClass;

        System.out.println("Is the student enrolled in the automation class? " + notEnrolledInAutomationClass);
    }
}
// Output: Is the student enrolled in the automation class? false
public class Main {
    public static void main(String[] args) {

        boolean hasAccessCard = true;
        boolean hasSecurityClearance = false;

        boolean canEnterRestrictedArea = hasAccessCard || hasSecurityClearance;

        System.out.println("Can the user enter the restricted area? " + canEnterRestrictedArea);
    }
}
// Output: Can the user enter the restricted area? true
const sleep = (ms: number) =>
	new Promise((resolve) =>
	setTimeout(resolve, ms),
);

{#await data.streamed.members}
	{#await sleep (200) then _}
	    Loading data
    {/await}
{:then value}
  {#each value as { id, full_name }}
  	{id}: {full_name}
  {/each}
{/await}
public class Main {
    public static void main(String[] args) {

        int a = 5;
        int b = 7;

        boolean notEqual = a != b;
        System.out.println("a != b is " + notEqual);
    }
}
// Output: a != b is true
public class Main {
    public static void main(String[] args) {

        String username = "admin";
        String password = "password";
        boolean isLoginSuccessful = username.equals("admin") && password.equals("password");

        System.out.println("Login successful: " + isLoginSuccessful);
    }
}
// Output: Login successful: true
public class Main {
    public static void main(String[] args) {

        int a = 5;
        int b = 5;

        boolean equalTo = a == b;
        System.out.println("a == b is " + equalTo);
    }
}
// Output: a == b is true
public class Main {
    public static void main(String[] args) {

        int a = 20;
        int b = 20;
      
        boolean greaterThanOrEqual = a >= b;
        System.out.println("a >= b is " + greaterThanOrEqual);
    }
}
// Output: a >= b is true
public class Main {
    public static void main(String[] args) {

        int a = 15;
        int b = 12;

        boolean greaterThan = a > b;
        System.out.println("a > b is " + greaterThan);
    }
}
// Output: a > b is true
public class Main {
    public static void main(String[] args) {
      
        int a = 10;
        int b = 10;
      
        boolean lessThanOrEqual = a <= b;
        System.out.println("a <= b is " + lessThanOrEqual);
    }
}
// Output: a <= b is true
public class Main {
    public static void main(String[] args) {

        int a = 5;
        int b = 10;

        boolean lessThan = a < b;
        System.out.println("a < b is " + lessThan);
    }
}
// Output: a < b is true
public class Main {
    public static void main(String[] args) {

     	String myFirstString = "Hello Test Pro Student!";
     
        System.out.println(myFirstString.toLowerCase());
    }
}
// Output: hello test pro student!
public class Main {
    public static void main(String[] args) {
 
     String myFirstString = "Hello Test Pro Student!";
 
        System.out.println(myFirstString.contains("Test Pro1"));
    }
}
// Output: false
public class Main {
    public static void main(String[] args) {
 
        String myFirstString = "Hello Test Pro Student!";
 
        System.out.println(myFirstString.contains("Test Pro"));
    }
}
// Output: true
public class Main {
    public static void main(String[] args) {

        String myFirstString = "Hello Test Pro Student!";

        System.out.println(myFirstString);
    }
}
// Output: Hello Test Pro Student!
public class Main {
    public static void main(String[] args) {
 
        String testpro1 = "TestPro";
        String testpro2 = "TestPro";
 
        System.out.println(testpro1.equals(testpro2));
    }
}
// Output: true
//Jquery Code
$('.checkbox-wrapper').delegate('input:checkbox', 'change', function()
    {
        var $lis = $('.blog-list > .post').hide();
        $('.checkbox-wrapper #all').prop('checked', false);
        //For each one checked
        $('input:checked').each(function()
        {
            // $('.checkbox-wrapper #all').prop('checked', false);
            $lis.filter('.' + $(this).attr('rel')).show();
        });    
        if ($(".checkbox-wrapper input:checkbox:checked").length > 0)
        {
            $('.checkbox-wrapper #all').prop('checked', false);
        }
        else
        {
            $('.checkbox-wrapper #all').prop('checked', true);
            $('.blog-list > .post').show();
            
        }  
    });


//Checkbox group
<ul class="checkbox-wrapper">
    <li><input class="form-check-input me-1" type="checkbox" rel="all" id="all" checked>
         <label class="form-check-label">All Blogs</label>
    </li>
	<li><label class="form-check-label" for="blogCategory1">
      <input class="form-check-input me-1 1" type="checkbox" rel="analytics">Analytics</label>
    </li>
</ul>

//blog List

<div class="blog-list">
<div class="post col mb-4 all analytics"><h1>Blog Title</h1></div>
<div class="post col mb-4 all BDA"><h1>BDA</h1></div>
</div>
echo "Code Cloned..."

docker-compose down

docker-compose up -d --no-dep --build web

echo "Code build and Deployed..."
public class Main {
    public static void main(String[] args) {

        int a = 7;
        int b = 7;

        System.out.println(a == b);
    }
}
// Output: true
import {
  Chart as ChartJS,
  CategoryScale,
  LinearScale,
  PointElement,
  LineElement,
  Title,
  Tooltip,
  Legend
} from 'chart.js';
import { Line } from 'react-chartjs-2';       


function HraHero() {
  return (
    <Line
      className='bg-white h-3/4 w-full'
      options={{
        responsive: true,
        plugins: {
          legend: false
        },
        scales: {
          x: {
            ticks: {
              color: 'orange'
            },
            title: {
              display: true,
              text: 'Years of Growth',
              color: '#00aeef',
              font: {
                size: 14
              }
            }
          },
          y: {
            ticks: {
              callback: function (value, i) {
                if (i == 0) {
                  return value + ' k';
                }

                return value + ' Lakhs';
              }
            },
            title: {
              display: true,
              text: 'Amount Invested',
              color: '#154d83',
              font: {
                size: 14
              }
            },
            border: {
              dash: [6, 4]
            }
          }
        }
      }}
      data={{
        labels: [
          2022, 2024, 2026, 2028, 2030, 2032, 2034, 2036, 2038, 2040, 2042
        ],
        datasets: [
          {
            data: [0, 2, 3, 5, 10, 15, 20, 25, 30, 35],
            borderColor: '#f47920',
            tension: 0.1,
            pointRadius: '6',
            pointHoverRadius: '6',
            pointBackgroundColor: '#00aeef',
            pointHoverBackgroundColor: '#f47920'
          }
        ]
      }}
    />
  );
}

export default HraHero
import {
  Chart as ChartJS,
  CategoryScale,
  LinearScale,
  PointElement,
  LineElement,
  Title,
  Tooltip,
  Legend
} from 'chart.js';
import { Line } from 'react-chartjs-2';       


function HraHero() {
   ChartJS.register(
    CategoryScale,
    LinearScale,
    PointElement,
    LineElement,
    Title,
    Tooltip,
    Legend
  );
  
  return (
    <Line
      className='bg-white h-3/4 w-full'
      options={{
        responsive: true,
        plugins: {
          legend: false
        },
        scales: {
          x: {
            ticks: {
              color: 'orange'
            },
            title: {
              display: true,
              text: 'Years of Growth',
              color: '#00aeef',
              font: {
                size: 14
              }
            }
          },
          y: {
            ticks: {
              callback: function (value, i) {
                if (i == 0) {
                  return value + ' k';
                }

                return value + ' Lakhs';
              }
            },
            title: {
              display: true,
              text: 'Amount Invested',
              color: '#154d83',
              font: {
                size: 14
              }
            },
            border: {
              dash: [6, 4]
            }
          }
        }
      }}
      data={{
        labels: [
          2022, 2024, 2026, 2028, 2030, 2032, 2034, 2036, 2038, 2040, 2042
        ],
        datasets: [
          {
            data: [0, 2, 3, 5, 10, 15, 20, 25, 30, 35],
            borderColor: '#f47920',
            tension: 0.1,
            pointRadius: '6',
            pointHoverRadius: '6',
            pointBackgroundColor: '#00aeef',
            pointHoverBackgroundColor: '#f47920'
          }
        ]
      }}
    />
  );
}

export default HraHero
Error: Similar to -> You can only commit if your email is one of the verified emails

In your terminal, navigate to the repo you want to make the changes in.
Execute git config --list to check current username & email in your local repo.

Check the username -> git config [--global] user.name
Check the email -> git config [--global] user.email

Change username & email as desired. Make it a global change or specific to the local repo:
git config [--global] user.name "Full Name"
git config [--global] user.email "email@address.com"
git config [--global] user.password "your password"

Per repo basis you could also edit .git/config manually instead.
Done!

Then execute ->
git commit --amend --reset-author --no-edit
 const numbersArray = Array.from({length: 20}, ((_, index) => index + 1));
#include<stdio.h>
int main()
{
    int bio,chem,phy,marks,obt;
    
    printf("enter bio marks");
    scanf("%d",&bio);
    
    printf("enter chem  marks");
    scanf("%d",&chem);
    
    printf("enter phy marks");
    scanf("%d",&phy);
    
    obt=phy+chem+bio;
    
    printf("your total out of 255 is %d",obt);
    
    if (obt<=255 && obt>200)
                  {
                      printf("your grade is A");
                  }
    else if (obt<=200 && obt >150)
                  {
                      printf("ypur grade is B");
                  }
    else if (obt<=150 && obt> 100)
                  {
                      printf("your grade is C");
                  }
    else if (obt < 100)
                  {
                      printf("u are fail ");
                  }
    else
                  {
                      printf("invalid number");
                  }
                
}                  
git instaweb [--local] [--httpd=<httpd>] [--port=<port>]
               [--browser=<browser>]
git instaweb [--start] [--stop] [--restart]
rstudioapi::getSourceEditorContext()$path
Console Output
Started by user Ishwar Shinde
Running as SYSTEM
Building in workspace /var/lib/jenkins/workspace/django-todo-app-delivery
The recommended git tool is: NONE
No credentials specified
> git rev-parse --resolve-git-dir /var/lib/jenkins/workspace/django-todo-app-delivery/.git # timeout=10
Fetching changes from the remote Git repository
> git config remote.origin.url https://github.com/ishwarshinde041/Jenkins-CI-CD-project.git # timeout=10
Fetching upstream changes from https://github.com/ishwarshinde041/Jenkins-CI-CD-project.git
> git --version # timeout=10
> git --version # 'git version 2.34.1'
> git fetch --tags --force --progress -- https://github.com/ishwarshinde041/Jenkins-CI-CD-project.git +refs/heads/*:refs/remotes/origin/* # timeout=10
> git rev-parse refs/remotes/origin/main^{commit} # timeout=10
Checking out Revision c2dca3f30890792a3f6eb6078f05f4d886b40129 (refs/remotes/origin/main)
> git config core.sparsecheckout # timeout=10
> git checkout -f c2dca3f30890792a3f6eb6078f05f4d886b40129 # timeout=10
Commit message: "Update index.html"
> git rev-list --no-walk c2dca3f30890792a3f6eb6078f05f4d886b40129 # timeout=10
[django-todo-app-delivery] $ /bin/sh -xe /tmp/jenkins4033466684745059068.sh
+ echo Code cloned...
Code cloned...
+ docker build . -t django-app
Sending build context to Docker daemon   2.67MB

Step 1/6 : FROM python:3.9
3.9: Pulling from library/python
de4cac68b616: Pulling fs layer
d31b0195ec5f: Pulling fs layer
9b1fd34c30b7: Pulling fs layer
c485c4ba3831: Pulling fs layer
9c94b131279a: Pulling fs layer
863530a48f51: Pulling fs layer
6738828c119e: Pulling fs layer
d271c014c3a0: Pulling fs layer
c485c4ba3831: Waiting
9c94b131279a: Waiting
863530a48f51: Waiting
6738828c119e: Waiting
d271c014c3a0: Waiting
d31b0195ec5f: Verifying Checksum
d31b0195ec5f: Download complete
de4cac68b616: Verifying Checksum
de4cac68b616: Download complete
9b1fd34c30b7: Verifying Checksum
9b1fd34c30b7: Download complete
9c94b131279a: Verifying Checksum
9c94b131279a: Download complete
863530a48f51: Verifying Checksum
863530a48f51: Download complete
6738828c119e: Verifying Checksum
6738828c119e: Download complete
d271c014c3a0: Verifying Checksum
d271c014c3a0: Download complete
c485c4ba3831: Verifying Checksum
c485c4ba3831: Download complete
de4cac68b616: Pull complete
d31b0195ec5f: Pull complete
9b1fd34c30b7: Pull complete
c485c4ba3831: Pull complete
9c94b131279a: Pull complete
863530a48f51: Pull complete
6738828c119e: Pull complete
d271c014c3a0: Pull complete
Digest: sha256:9bae2a5ce72f326c8136d517ade0e9b18080625fb3ba7ec10002e0dc99bc4a70
Status: Downloaded newer image for python:3.9
---> 8bdfd6cc4bbf
Step 2/6 : WORKDIR app
---> Running in 61650cd643fd
Removing intermediate container 61650cd643fd
---> 976056a2d895
Step 3/6 : COPY . /app
---> 5b94f1ad0061
Step 4/6 : RUN pip install -r requirements.txt
---> Running in c3dacf8bf4ed
Collecting asgiref==3.2.3
Downloading asgiref-3.2.3-py2.py3-none-any.whl (18 kB)
Collecting Django==3.0.3
Downloading Django-3.0.3-py3-none-any.whl (7.5 MB)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.5/7.5 MB 5.6 MB/s eta 0:00:00
Collecting django-cors-headers==3.2.1
Downloading django_cors_headers-3.2.1-py3-none-any.whl (14 kB)
Collecting djangorestframework==3.11.0
Downloading djangorestframework-3.11.0-py3-none-any.whl (911 kB)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 911.2/911.2 kB 42.1 MB/s eta 0:00:00
Collecting pytz==2019.3
Downloading pytz-2019.3-py2.py3-none-any.whl (509 kB)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 509.2/509.2 kB 45.7 MB/s eta 0:00:00
Collecting sqlparse==0.3.0
Downloading sqlparse-0.3.0-py2.py3-none-any.whl (39 kB)
Installing collected packages: pytz, asgiref, sqlparse, Django, djangorestframework, django-cors-headers
Successfully installed Django-3.0.3 asgiref-3.2.3 django-cors-headers-3.2.1 djangorestframework-3.11.0 pytz-2019.3 sqlparse-0.3.0
[91mWARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
[0m[91m
[notice] A new release of pip is available: 23.0.1 -> 23.2.1
[notice] To update, run: pip install --upgrade pip
[0mRemoving intermediate container c3dacf8bf4ed
---> 3d6b4bb36bd2
Step 5/6 : EXPOSE 8001
---> Running in 56dd98811220
Removing intermediate container 56dd98811220
---> 96ed2bc70110
Step 6/6 : CMD ["python","manage.py","runserver","0.0.0.0:8001"]
---> Running in 4fd53066b777
Removing intermediate container 4fd53066b777
---> 6b72719ff06c
Successfully built 6b72719ff06c
Successfully tagged django-app:latest
+ echo Code Build...
Code Build...
+ docker run -d -p 8001:8001 django-app:latest
5c625dac7bccf872144dabbd4deff8d6102957cc18652f90950c7fce8694c1e8
+ echo Code Deployed...
Code Deployed...
Finished: SUCCESS
echo "Code Cloned...."

docker build . -t django-app

echo "Code Build...."

docker run -d -p 8001:8001 django-app;latest

echo "Code Deployed...."
Console Output
Started by user Ishwar Shinde
Running as SYSTEM
Building in workspace /var/lib/jenkins/workspace/django-todo-app-delivery
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --resolve-git-dir /var/lib/jenkins/workspace/django-todo-app-delivery/.git # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/ishwarshinde041/Jenkins-CI-CD-project.git # timeout=10
Fetching upstream changes from https://github.com/ishwarshinde041/Jenkins-CI-CD-project.git
 > git --version # timeout=10
 > git --version # 'git version 2.34.1'
 > git fetch --tags --force --progress -- https://github.com/ishwarshinde041/Jenkins-CI-CD-project.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse refs/remotes/origin/main^{commit} # timeout=10
Checking out Revision c2dca3f30890792a3f6eb6078f05f4d886b40129 (refs/remotes/origin/main)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f c2dca3f30890792a3f6eb6078f05f4d886b40129 # timeout=10
Commit message: "Update index.html"
 > git rev-list --no-walk c2dca3f30890792a3f6eb6078f05f4d886b40129 # timeout=10
[django-todo-app-delivery] $ /bin/sh -xe /tmp/jenkins4033466684745059068.sh
+ echo Code cloned...
Code cloned...
+ docker build . -t django-app
Sending build context to Docker daemon   2.67MB

Step 1/6 : FROM python:3.9
3.9: Pulling from library/python
de4cac68b616: Pulling fs layer
d31b0195ec5f: Pulling fs layer
9b1fd34c30b7: Pulling fs layer
c485c4ba3831: Pulling fs layer
9c94b131279a: Pulling fs layer
863530a48f51: Pulling fs layer
6738828c119e: Pulling fs layer
d271c014c3a0: Pulling fs layer
c485c4ba3831: Waiting
9c94b131279a: Waiting
863530a48f51: Waiting
6738828c119e: Waiting
d271c014c3a0: Waiting
d31b0195ec5f: Verifying Checksum
d31b0195ec5f: Download complete
de4cac68b616: Verifying Checksum
de4cac68b616: Download complete
9b1fd34c30b7: Verifying Checksum
9b1fd34c30b7: Download complete
9c94b131279a: Verifying Checksum
9c94b131279a: Download complete
863530a48f51: Verifying Checksum
863530a48f51: Download complete
6738828c119e: Verifying Checksum
6738828c119e: Download complete
d271c014c3a0: Verifying Checksum
d271c014c3a0: Download complete
c485c4ba3831: Verifying Checksum
c485c4ba3831: Download complete
de4cac68b616: Pull complete
d31b0195ec5f: Pull complete
9b1fd34c30b7: Pull complete
c485c4ba3831: Pull complete
9c94b131279a: Pull complete
863530a48f51: Pull complete
6738828c119e: Pull complete
d271c014c3a0: Pull complete
Digest: sha256:9bae2a5ce72f326c8136d517ade0e9b18080625fb3ba7ec10002e0dc99bc4a70
Status: Downloaded newer image for python:3.9
 ---> 8bdfd6cc4bbf
Step 2/6 : WORKDIR app
 ---> Running in 61650cd643fd
Removing intermediate container 61650cd643fd
 ---> 976056a2d895
Step 3/6 : COPY . /app
 ---> 5b94f1ad0061
Step 4/6 : RUN pip install -r requirements.txt
 ---> Running in c3dacf8bf4ed
Collecting asgiref==3.2.3
  Downloading asgiref-3.2.3-py2.py3-none-any.whl (18 kB)
Collecting Django==3.0.3
  Downloading Django-3.0.3-py3-none-any.whl (7.5 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.5/7.5 MB 5.6 MB/s eta 0:00:00
Collecting django-cors-headers==3.2.1
  Downloading django_cors_headers-3.2.1-py3-none-any.whl (14 kB)
Collecting djangorestframework==3.11.0
  Downloading djangorestframework-3.11.0-py3-none-any.whl (911 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 911.2/911.2 kB 42.1 MB/s eta 0:00:00
Collecting pytz==2019.3
  Downloading pytz-2019.3-py2.py3-none-any.whl (509 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 509.2/509.2 kB 45.7 MB/s eta 0:00:00
Collecting sqlparse==0.3.0
  Downloading sqlparse-0.3.0-py2.py3-none-any.whl (39 kB)
Installing collected packages: pytz, asgiref, sqlparse, Django, djangorestframework, django-cors-headers
Successfully installed Django-3.0.3 asgiref-3.2.3 django-cors-headers-3.2.1 djangorestframework-3.11.0 pytz-2019.3 sqlparse-0.3.0
[91mWARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
[0m[91m
[notice] A new release of pip is available: 23.0.1 -> 23.2.1
[notice] To update, run: pip install --upgrade pip
[0mRemoving intermediate container c3dacf8bf4ed
 ---> 3d6b4bb36bd2
Step 5/6 : EXPOSE 8001
 ---> Running in 56dd98811220
Removing intermediate container 56dd98811220
 ---> 96ed2bc70110
Step 6/6 : CMD ["python","manage.py","runserver","0.0.0.0:8001"]
 ---> Running in 4fd53066b777
Removing intermediate container 4fd53066b777
 ---> 6b72719ff06c
Successfully built 6b72719ff06c
Successfully tagged django-app:latest
+ echo Code Build...
Code Build...
+ docker run -d -p 8001:8001 django-app:latest
5c625dac7bccf872144dabbd4deff8d6102957cc18652f90950c7fce8694c1e8
+ echo Code Deployed...
Code Deployed...
Finished: SUCCESS
sudo usermod -aG docker Jenkins
sudo reboot
-- EGV PURCHASE SUCCESS BASED ON TXN MONTH
select year, month, COUNT(merchant_transaction_id) AS cnt, SUM(original_balance/100) AS amt
from egv.gift_cards 
where year IN (2022, 2023) -- AND month BETWEEN (9-3) AND 9
AND program_id = 'PHONEPEGC' AND tenant_id LIKE 'PHONEPE%' AND merchant_id = 'PHONEPEGC'
GROUP BY year, month

-- WALLET TOPUP SUCCESS BASED ON TXN MONTH
SELECT year, month, COUNT(merchant_reference_id) AS cnt, SUM(amount/100) as amt
FROM wallet.transaction_master
WHERE year IN (2022, 2023) -- AND month BETWEEN 3 AND 9
AND category = 'TOPUP' AND txn_type = 'CREDIT'
AND txn_state = 'SUCCESS' AND response_code = 'SUCCESS'
GROUP BY year, month

-- EGV PURCHASE FRAUD CNT & AMT BASED ON TXN MONTH
select A.year, A.month, count(eventdata_transactionid) as count, sum(amt) as amount from 
    (select merchant_transaction_id, card_number, original_balance/100 AS amt, year, month
    from egv.gift_cards 
    where year IN (2022, 2023) -- AND month BETWEEN (9-3) AND 9
    AND program_id = 'PHONEPEGC' AND tenant_id LIKE 'PHONEPE%' AND merchant_id = 'PHONEPEGC')A
INNER JOIN
    (select transaction_id, global_payment_id, amount
    from payment.transactions 
    where year IN (2022, 2023) -- AND month BETWEEN (9-3) AND 9
    and state='COMPLETED' and error_code='SUCCESS' and backend_error_code='SUCCESS'
    AND flow IN ('CONSUMER_TO_MERCHANT_V2', 'CONSUMER_TO_MERCHANT'))B
on A.merchant_transaction_id = B.global_payment_id
INNER JOIN
    (select eventdata_transactionid, year, month
    from foxtrot_stream.cerebro_default 
    where year IN (2022, 2023) -- AND month = 9
    AND (eventdata_fraudtxn = 1 or eventdata_action = 'FRAUD')
    and eventtype = 'MARK_TRANSACTION'
    GROUP BY eventdata_transactionid, year, month)C
on B.transaction_id = C.eventdata_transactionid
group by A.year, A.month
order by A.year, A.month

-- WALLET TOPUP FRAUD CNT & AMT BASED ON TXN MONTH
select A.year, A.month, count(merchant_reference_id) as count, sum(amt) as amount from 
    (SELECT merchant_reference_id, amount/100 as amt, year, month
    FROM wallet.transaction_master
    WHERE year IN (2022, 2023) -- AND month BETWEEN 3 AND 9
    AND category = 'TOPUP' AND txn_type = 'CREDIT'
    AND txn_state = 'SUCCESS' AND response_code = 'SUCCESS'
    GROUP BY merchant_reference_id, amount/100, year, month)A
INNER JOIN
    (select eventdata_transactionid, year, month
    from foxtrot_stream.cerebro_default 
    where year IN (2022, 2023) -- AND month BETWEEN 6 AND 9
    AND (eventdata_fraudtxn = 1 or eventdata_action = 'FRAUD')
    and eventtype = 'MARK_TRANSACTION'
    GROUP BY eventdata_transactionid, year, month)C
on A.merchant_reference_id = C.eventdata_transactionid
group by A.year, A.month
order by A.year, A.month

-- EGV PURCHASE FRAUD CNT & AMT BASED ON REPORTED MONTH
select A.year, A.month, count(eventdata_transactionid) as count, sum(amt) as amount from 
    (select merchant_transaction_id, card_number, original_balance/100 AS amt, year, month
    from egv.gift_cards 
    where year IN (2022, 2023) -- AND month BETWEEN (9-3) AND 9
    AND program_id = 'PHONEPEGC' AND tenant_id LIKE 'PHONEPE%' AND merchant_id = 'PHONEPEGC')A
INNER JOIN
    (select transaction_id, global_payment_id, amount
    from payment.transactions 
    where year IN (2022, 2023) -- AND month BETWEEN (9-3) AND 9
    and state='COMPLETED' and error_code='SUCCESS' and backend_error_code='SUCCESS'
    AND flow IN ('CONSUMER_TO_MERCHANT_V2', 'CONSUMER_TO_MERCHANT'))B
on A.merchant_transaction_id = B.global_payment_id
INNER JOIN
    (select eventdata_transactionid, year, month
    from foxtrot_stream.cerebro_default 
    where year IN (2022, 2023) -- AND month = 9
    AND (eventdata_fraudtxn = 1 or eventdata_action = 'FRAUD')
    and eventtype = 'MARK_TRANSACTION'
    GROUP BY eventdata_transactionid, year, month)C
on B.transaction_id = C.eventdata_transactionid
group by A.year, A.month
order by A.year, A.month

-- WALLET TOPUP FRAUD CNT & AMT BASED ON REPORTED MONTH
select C.year, C.month, count(merchant_reference_id) as count, sum(amt) as amount from 
    (SELECT merchant_reference_id, amount/100 as amt
    FROM wallet.transaction_master
    WHERE year IN (2022, 2023) -- AND month BETWEEN 3 AND 9
    AND category = 'TOPUP' AND txn_type = 'CREDIT'
    AND txn_state = 'SUCCESS' AND response_code = 'SUCCESS'
    GROUP BY merchant_reference_id, amount/100)A
INNER JOIN
    (select eventdata_transactionid, year, month
    from foxtrot_stream.cerebro_default 
    where year IN (2022, 2023) -- AND month BETWEEN 6 AND 9
    AND (eventdata_fraudtxn = 1 or eventdata_action = 'FRAUD')
    and eventtype = 'MARK_TRANSACTION'
    GROUP BY eventdata_transactionid, year, month)C
on A.merchant_reference_id = C.eventdata_transactionid
group by C.year, C.month
order by C.year, C.month

---------------------------------------------------------------------------------------

-- EGV REDEEM FRAUD BASED ON TXN MONTH
SELECT A.year, A.month, COUNT(B.transaction_id), SUM(B.amt) as fraud_amt FROM
    (select eventdata_transactionid, year, month
    from foxtrot_stream.cerebro_default 
    where year IN (2022, 2023) -- AND month BETWEEN 6 AND 9
    AND (eventdata_fraudtxn = 1 or eventdata_action = 'FRAUD')
    and eventtype = 'MARK_TRANSACTION'
    GROUP BY eventdata_transactionid, year, month)A
INNER JOIN
    (select substr(merchant_transaction_id, 0, instr(merchant_transaction_id,':')-1) as transaction_id , sum(amount) as amt, year, month
    from egv.gift_card_histories
    where operation like 'REDEEM'
    and year IN (2022, 2023)
    GROUP BY substr(merchant_transaction_id, 0, instr(merchant_transaction_id,':')-1), year, month)B
ON A.eventdata_transactionid = B.transaction_id
GROUP BY A.year, A.month

-- EGV REDEEM FRAUD BASED ON REPORTED MONTH
SELECT B.year, B.month, COUNT(B.transaction_id), SUM(B.amt) as fraud_amt FROM
    (select eventdata_transactionid, year, month
    from foxtrot_stream.cerebro_default 
    where year IN (2022, 2023) -- AND month BETWEEN 6 AND 9
    AND (eventdata_fraudtxn = 1 or eventdata_action = 'FRAUD')
    and eventtype = 'MARK_TRANSACTION'
    GROUP BY eventdata_transactionid, year, month)A
INNER JOIN
    (select substr(merchant_transaction_id, 0, instr(merchant_transaction_id,':')-1) as transaction_id , sum(amount) as amt, year, month
    from egv.gift_card_histories
    where operation like 'REDEEM'
    and year IN (2022, 2023)
    GROUP BY substr(merchant_transaction_id, 0, instr(merchant_transaction_id,':')-1), year, month)B
ON A.eventdata_transactionid = B.transaction_id
GROUP BY B.year, B.month
 
-- WALLET REDEEM FRAUD BASED ON TXN MONTH
SELECT B.year, B.month, COUNT(B.txn_id), SUM(B.amt) as fraud_amt FROM
    (select eventdata_transactionid, year, month
    from foxtrot_stream.cerebro_default 
    where year IN (2022, 2023) -- AND month BETWEEN 6 AND 9
    AND (eventdata_fraudtxn = 1 or eventdata_action = 'FRAUD')
    and eventtype = 'MARK_TRANSACTION'
    GROUP BY eventdata_transactionid, year, month)A
INNER JOIN
    (SELECT txn_id, (amount/100) as amt, year, month
    FROM wallet.transaction_master
    WHERE year IN (2022, 2023)
    AND category = 'ORDER' AND txn_type = 'DEBIT'
    AND txn_state = 'SUCCESS' AND response_code = 'SUCCESS')B
ON A.eventdata_transactionid = B.txn_id
GROUP BY B.year, B.month

-- WALLET REDEEM FRAUD BASED ON REPORTED MONTH
SELECT A.year, A.month, COUNT(B.txn_id), SUM(B.amt) as fraud_amt FROM
    (select eventdata_transactionid, year, month
    from foxtrot_stream.cerebro_default 
    where year IN (2022, 2023) -- AND month BETWEEN 6 AND 9
    AND (eventdata_fraudtxn = 1 or eventdata_action = 'FRAUD')
    and eventtype = 'MARK_TRANSACTION'
    GROUP BY eventdata_transactionid, year, month)A
INNER JOIN
    (SELECT txn_id, (amount/100) as amt, year, month
    FROM wallet.transaction_master
    WHERE year IN (2022, 2023)
    AND category = 'ORDER' AND txn_type = 'DEBIT'
    AND txn_state = 'SUCCESS' AND response_code = 'SUCCESS')B
ON A.eventdata_transactionid = B.txn_id
GROUP BY A.year, A.month
#include <stdio.h>
int main()
{
    int num;
    printf("enter a num");
    scanf("%d",&num);
    (num%2==0)?printf("%d is even",num):printf("%d is odd",num);
}
//program to take an imput from user and print a greeting message
#include <stdio.h>
int main()
{
    char name[10];
    printf("enter your name");
    /* input from user */
    scanf("%s",&name);
    printf("how are u  %s",name);
}
curl -fsSL https://pkg.jenkins.io/debian/jenkins.io-2023.key | sudo tee \
/usr/share/keyrings/jenkins-keyring.asc > /dev/null

echo deb [signed-by=/usr/share/keyrings/jenkins-keyring.asc] \
https://pkg.jenkins.io/debian binary/ | sudo tee \
/etc/apt/sources.list.d/jenkins.list > /dev/null

sudo apt-get update
sudo apt-get install jenkins
sudo apt update
sudo apt install openjdk-17-jre
java -version
public class CardsPanel : Panel
{
    const int CardWidth = 200;
    const int CardHeight = 150;

    public CardsViewModel ViewModel { get; set; }

    public CardsPanel()
    {
    }
    public CardsPanel(CardsViewModel viewModel)
    {
        ViewModel = viewModel;
        ViewModel.Cards.CollectionChanged += Cards_CollectionChanged;
    }

    private void Cards_CollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
    {
        DataBind();
    }

    public void DataBind()
    {
        SuspendLayout();
        Controls.Clear();

        for(int i = 0; i < ViewModel.Cards.Count; i++)
        {
            var newCtl = new CardControl(ViewModel.Cards[i]);
            newCtl.DataBind();
            SetCardControlLayout(newCtl, i);
            Controls.Add(newCtl);
        }
        ResumeLayout();
    }

    void SetCardControlLayout(CardControl ctl, int atIndex)
    {
        ctl.Width = CardWidth;
        ctl.Height = CardHeight;

        //calc visible column count
        int columnCount = Width / CardWidth;

        //calc the x index and y index.
        int xPos = (atIndex % columnCount) * CardWidth;
        int yPos = (atIndex / columnCount) * CardHeight;

        ctl.Location = new Point(xPos, yPos);
    }
}

public partial class CardControl : UserControl
{
    public CardViewModel ViewModel { get; set; }

    public CardControl()
    {
        InitializeComponent();
    }
    public CardControl(CardViewModel viewModel)
    {
        ViewModel = viewModel;
        InitializeComponent();
    }

    public void DataBind()
    {
        SuspendLayout();

        tbAge.Text = ViewModel.Age.ToString();
        tbAge.Name = ViewModel.Name;
        pbPicture.Image = ViewModel.Picture;

        ResumeLayout();
    }
}

public class CardsViewModel
{
    public ObservableCollection<CardViewModel> Cards { get; set; }
}

public class CardViewModel
{
    public string Name { get; set; }
    public int Age { get; set; }
    public Bitmap Picture { get; set; }
}

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
        cardsPanel1.ViewModel = LoadSomeData();
        cardsPanel1.DataBind();
    }

    private CardsViewModel LoadSomeData()
    {
        ObservableCollection<CardViewModel> cards = new ObservableCollection<CardViewModel>();
        cards.Add(new CardViewModel()
        {
            Age = 1,
            Name = "Dan",
            Picture = new Bitmap(Image.FromFile("C:\\Users\\daniel.rayson\\Pictures\\CuteKitten1.jpg"))
        });
        cards.Add(new CardViewModel()
        {
            Age = 2,
            Name = "Gill",
            Picture = new Bitmap(Image.FromFile("C:\\Users\\daniel.rayson\\Pictures\\CuteKitten1.jpg"))
        });
        cards.Add(new CardViewModel()
        {
            Age = 3,
            Name = "Glyn",
            Picture = new Bitmap(Image.FromFile("C:\\Users\\daniel.rayson\\Pictures\\CuteKitten1.jpg"))
        });
        cards.Add(new CardViewModel()
        {
            Age = 4,
            Name = "Lorna",
            Picture = new Bitmap(Image.FromFile("C:\\Users\\daniel.rayson\\Pictures\\CuteKitten1.jpg"))
        });
        cards.Add(new CardViewModel()
        {
            Age = 5,
            Name = "Holly",
            Picture = new Bitmap(Image.FromFile("C:\\Users\\daniel.rayson\\Pictures\\CuteKitten1.jpg"))
        });            
        CardsViewModel VM = new CardsViewModel()
        {
            Cards = cards
        };
        return VM;
    }
}
              - name: ChatGPT CodeReviewer
                uses: anc95/ChatGPT-CodeReview@v1.0.11
            
(async () => {
    await import('https://code.chatgptjs.org/chatgpt-latest.min.js');
    // Your code here...
})();
<> Copy code
Error
Code copied!
Private Sub Command0_Click()
    Dim DocN As String
    Dim LWordDoc As String
    Dim oApp As Object
    Dim oDoc As Object
    Dim oVariable As Variable
    DocN = "Demo use of variables.docx"
    'Path to the word document
    LWordDoc = "C:\Temp\20230411 test\" & DocN
    If Dir(LWordDoc) = "" Then
        MsgBox "Document not found."
    Else
        'Create an instance of MS Word
        Set oApp = CreateObject(Class:="Word.Application")
        oApp.Visible = True
        'Open the Document
        Set oDoc = oApp.Documents.Open(Filename:=LWordDoc)
    End If
    Call dump_to_file("")
    For Each oVariable In oDoc.Variables
        Call append_to_file(oVariable.Name & " : " & oVariable.Value)
    Next oVariable
    ' Close doc
    oDoc.Close SaveChanges:=True ' True to save, False to close without saving
    Set oDoc = Nothing
    Set oApp = Nothing
    MsgBox "done"
End Sub
1.To check which Git credentials are configured in your system, you can use the following command in the terminal:

```bash
git config --list
```

2. To permanently remove the user.email and user.name settings from your Git configuration, you can use the following commands in the terminal:

```bash
git config --global --unset user.email
git config --global --unset user.name
```

3. Then run the git config --list command to check your Git configuration, the output will not include the user.email and user.name settings.

class Solution:
    def longestPalindromeSubseq(self, s: str) -> int:
        def lcs(s1, s2):
            n = len(s1)
            m = len(s2)
            dp = [[-1] * (m + 1) for i in range(n + 1)]
            for i in range(n + 1):dp[i][0] = 0
            for i in range(m + 1): dp[0][i] = 0
            for ind1 in range(1, n + 1):
                for ind2 in range(1, m + 1):
                    if s1[ind1 - 1] == s2[ind2 - 1]:
                        dp[ind1][ind2] = 1 + dp[ind1 - 1][ind2 - 1]
                    else:
                        dp[ind1][ind2] = max(dp[ind1 - 1][ind2], dp[ind1][ind2 - 1])
            return dp[n][m]
#printing
def lcs(s1, s2):
    n = len(s1)
    m = len(s2)
    
    dp = [[0 for j in range(m + 1)] for i in range(n + 1)]
    for i in range(n + 1):
        dp[i][0] = 0
    for i in range(m + 1):
        dp[0][i] = 0

    for ind1 in range(1, n + 1):
        for ind2 in range(1, m + 1):
            if s1[ind1 - 1] == s2[ind2 - 1]:
                dp[ind1][ind2] = 1 + dp[ind1 - 1][ind2 - 1]
            else:
                dp[ind1][ind2] = 0+max(dp[ind1 - 1][ind2], dp[ind1][ind2 - 1])

    len_ = dp[n][m]
    i = n
    j = m
    
    index = len_ - 1
    str_ = ""
    for k in range(1,1+len_):
      str_+="$" #dummy string
    
    while i > 0 and j > 0:
        if s1[i - 1] == s2[j - 1]:
            str_ = s1[i - 1] + str_[:-1]
            index -= 1
            i -= 1
            j -= 1
        elif s1[i - 1] > s2[j - 1]:
            i -= 1
        else:
            j -= 1
    
    print("The Longest Common Subsequence is", str_)
#memo
class Solution:
    def longestCommonSubsequence(self, text1: str, text2: str) -> int:
        def f(i1,i2,dp):
            if i1<0 or i2<0:return 0
            if dp[i1][i2]!=-1:return dp[i1][i2]
            if text1[i1]==text2[i2]:
                dp[i1][i2] = 1+f(i1-1,i2-1,dp)
                return dp[i1][i2]

            else:
                dp[i1][i2] = max(f(i1,i2-1,dp),f(i1-1,i2,dp))
                return dp[i1][i2]

        dp = [[-1 for i in range(len(text2))] for j in range(len(text1))]
        return f(len(text1)-1,len(text2)-1,dp)
        
local rig = script.Parent

-- Asume que 'rig' es tu modelo que contiene el AnimationController
local animationController = rig:FindFirstChildOfClass('AnimationController')

-- Crea un Animator si no existe uno ya
local animator = animationController:FindFirstChildOfClass('Animator')
if not animator then
	animator = Instance.new('Animator', animationController)
end

-- Asume que 'animation' es tu objeto Animation que está dentro del Animator
local animation = animator:FindFirstChildOfClass('Animation')

-- Carga la animación en el Animator y la reproduce
local animationTrack = animator:LoadAnimation(animation)
animationTrack:Play()
// Automatic FlutterFlow imports
import '/backend/backend.dart';
import '/backend/schema/structs/index.dart';
import '/flutter_flow/flutter_flow_theme.dart';
import '/flutter_flow/flutter_flow_util.dart';
import '/custom_code/actions/index.dart'; // Imports other custom actions
import '/flutter_flow/custom_functions.dart'; // Imports custom functions
import 'package:flutter/material.dart';
// Begin custom action code
// DO NOT REMOVE OR MODIFY THE CODE ABOVE!

import 'dart:async';
import 'package:package_info_plus/package_info_plus.dart';

Future<String> appPackageInfo() async {
  // Add your function code here!
  PackageInfo info = await PackageInfo.fromPlatform();
  String output = info.version;

  return output;
}

// Set your action name, define your arguments and return parameter,
// and then add the boilerplate code using the button on the right!
star

Tue Oct 17 2023 08:30:55 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Tue Oct 17 2023 08:28:08 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Tue Oct 17 2023 08:23:45 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Tue Oct 17 2023 08:22:03 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Tue Oct 17 2023 08:18:05 GMT+0000 (Coordinated Universal Time)

@passoul #css #breakpoints

star

Tue Oct 17 2023 08:15:45 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

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

@testpro #java

star

Tue Oct 17 2023 07:59:43 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Tue Oct 17 2023 07:59:00 GMT+0000 (Coordinated Universal Time)

@passoul #svelte #delay-loading-spinner

star

Tue Oct 17 2023 07:56:34 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Tue Oct 17 2023 07:53:57 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Tue Oct 17 2023 07:50:08 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Tue Oct 17 2023 07:44:42 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Tue Oct 17 2023 07:39:58 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

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

@testpro #java

star

Tue Oct 17 2023 07:30:13 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Tue Oct 17 2023 07:21:28 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Tue Oct 17 2023 07:19:18 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

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

@testpro #java

star

Tue Oct 17 2023 07:13:16 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Tue Oct 17 2023 07:11:50 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Tue Oct 17 2023 07:11:26 GMT+0000 (Coordinated Universal Time)

@gshailesh27 ##multiselect ##jqueryfilter ##jquerycardfilter

star

Tue Oct 17 2023 07:09:29 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Tue Oct 17 2023 07:08:59 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Tue Oct 17 2023 06:27:23 GMT+0000 (Coordinated Universal Time) https://www.chartjs.org/docs/latest/charts/line.html

@pradhyumnsoni #react.js #javascript

star

Tue Oct 17 2023 06:26:51 GMT+0000 (Coordinated Universal Time) https://www.chartjs.org/docs/latest/charts/line.html

@pradhyumnsoni #react.js #javascript

star

Tue Oct 17 2023 06:10:38 GMT+0000 (Coordinated Universal Time) https://superuser.com/questions/1419625/gitlab-you-cannot-push-commits-for-you-can-only-push-commits-that-were-commit

@hardikraja #commandline #git

star

Mon Oct 16 2023 21:25:11 GMT+0000 (Coordinated Universal Time)

@davidmchale #javascript #array

star

Mon Oct 16 2023 20:28:16 GMT+0000 (Coordinated Universal Time) undefined

@Spsypg

star

Mon Oct 16 2023 19:47:52 GMT+0000 (Coordinated Universal Time)

@usman_hamed

star

Mon Oct 16 2023 19:06:33 GMT+0000 (Coordinated Universal Time) https://git-scm.com/docs/git-instaweb

@challow

star

Mon Oct 16 2023 19:04:37 GMT+0000 (Coordinated Universal Time) undefined

@challow

star

Mon Oct 16 2023 15:51:57 GMT+0000 (Coordinated Universal Time)

@vs #r

star

Mon Oct 16 2023 14:55:21 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Mon Oct 16 2023 14:48:54 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Mon Oct 16 2023 14:41:28 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Mon Oct 16 2023 14:38:31 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Mon Oct 16 2023 14:08:31 GMT+0000 (Coordinated Universal Time)

@shubhangi_burle

star

Mon Oct 16 2023 14:00:27 GMT+0000 (Coordinated Universal Time)

@usman_hamed

star

Mon Oct 16 2023 13:50:47 GMT+0000 (Coordinated Universal Time)

@usman_hamed

star

Mon Oct 16 2023 11:58:37 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Mon Oct 16 2023 11:55:52 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Mon Oct 16 2023 11:28:10 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/45014556/custom-c-sharp-card-view-type-control

@amman

star

Mon Oct 16 2023 10:30:15 GMT+0000 (Coordinated Universal Time) https://github.com/marketplace/actions/chatgpt-codereviewer

@cdy94

star

Mon Oct 16 2023 10:27:12 GMT+0000 (Coordinated Universal Time) https://chatgpt.js.org/#/

@cdy94

star

Mon Oct 16 2023 09:52:14 GMT+0000 (Coordinated Universal Time) https://answers.microsoft.com/en-us/msoffice/forum/all/opening-and-closing-a-word-document-from-access/79e877e0-9a9a-4e9d-b99e-6a1ee81fb164

@paulbarry

star

Mon Oct 16 2023 05:11:22 GMT+0000 (Coordinated Universal Time)

@utp

star

Sun Oct 15 2023 22:51:24 GMT+0000 (Coordinated Universal Time)

@Yohigo

star

Sun Oct 15 2023 21:02:17 GMT+0000 (Coordinated Universal Time)

@kjust448 #package_info_plus

Save snippets that work with our extensions

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