Snippets Collections
git checkout master
git pull origin master 
bundle install 
yarn install
rails db:migrate 
git checkout -b #add name of the branch

DONT WORK IN MASTER!!!!!!!!
Id oppRecordTypeId = Schema.SObjectType.Quote.getRecordTypeInfosByName().get('Commercial Invoice').getRecordTypeId();
In [1]: index = pd.date_range("1/1/2000", periods=8)

In [2]: s = pd.Series(np.random.randn(5), index=["a", "b", "c", "d", "e"])

In [3]: df = pd.DataFrame(np.random.randn(8, 3), index=index, columns=["A", "B", "C"])
[
    {
        "GiftID": "",
        "SenderID": "",
        "egiftApiKey": "",
        "RecipientFirstName": "",
        "RecipientLastName": "",
        "RecipientEmail": "",
        "TreeAmount": "",
        "Salutation": ""
    }
]
        console.log(data.year);
    }
bundle install

touch .env
echo '.env*' >> .gitignore
const newArr=[...arr1,...arr2]
console.log(newArr)
:: "C:\_git\gitpm.cmd" "[PROJECTNAME]" "[REPONAME]"


echo off

set TeamProject=%~1
set GitRepo=%~2

set TeamCollection="https://dev.azure.com/[ORG]/"

if "%TeamProject%"=="" GOTO validation_error
if "%GitRepo%"=="" GOTO validation_error

REM First, block the Create Branch permission at the repository root for the project's contributors.
tf git permission /deny:CreateBranch /group:"[%TeamProject%]\Contributors" /collection:%TeamCollection% /teamproject:"%TeamProject%" /repository:%GitRepo%

REM Then, allow contributors to create branches under features, hotfixes, and users.
tf git permission /allow:CreateBranch /group:"[%TeamProject%]\Contributors" /collection:%TeamCollection% /teamproject:"%TeamProject%" /repository:%GitRepo% /branch:features
tf git permission /allow:CreateBranch /group:"[%TeamProject%]\Contributors" /collection:%TeamCollection% /teamproject:"%TeamProject%" /repository:%GitRepo% /branch:users
tf git permission /allow:CreateBranch /group:"[%TeamProject%]\Contributors" /collection:%TeamCollection% /teamproject:"%TeamProject%" /repository:%GitRepo% /branch:hotfixes
tf git permission /allow:CreateBranch /group:"[%TeamProject%]\Contributors" /collection:%TeamCollection% /teamproject:"%TeamProject%" /repository:%GitRepo% /branch:releases
tf git permission /allow:CreateBranch /group:"[%TeamProject%]\Contributors" /collection:%TeamCollection% /teamproject:"%TeamProject%" /repository:%GitRepo% /branch:save
tf git permission /allow:CreateBranch /group:"[%TeamProject%]\Contributors" /collection:%TeamCollection% /teamproject:"%TeamProject%" /repository:%GitRepo% /branch:archive
tf git permission /allow:CreateBranch /group:"[%TeamProject%]\Contributors" /collection:%TeamCollection% /teamproject:"%TeamProject%" /repository:%GitRepo% /branch:hold
tf git permission /allow:CreateBranch /group:"[%TeamProject%]\Contributors" /collection:%TeamCollection% /teamproject:"%TeamProject%" /repository:%GitRepo% /branch:misc

REM allow administrators to create a branch called development (in case it ever gets deleted accidentally).
tf git permission /allow:CreateBranch /group:"[%TeamProject%]\Project Administrators" /collection:%TeamCollection% /teamproject:"%TeamProject%" /repository:%GitRepo% /branch:development

REM Finally, allow administrators to create a branch called master (in case it ever gets deleted accidentally).
tf git permission /allow:CreateBranch /group:"[%TeamProject%]\Project Administrators" /collection:%TeamCollection% /teamproject:"%TeamProject%" /repository:%GitRepo% /branch:master
GOTO complete

:validation_error
ECHO Both the TeamProject and GitRepo arguments must be valid
ECHO TeamProject = '%TeamProject%'
ECHO GitRepo= '%GitRepo%'
GOTO EOF

:complete
ECHO All done!

:EOF
db.timetable.updateMany(
   {},
   { $rename: { 'Train No': 'trainNo', 'Train Name': 'trainName', 'SEQ':'seq', 'Station Code':'stationCode', 'Station Name': 'stationName', 'Arrival time':'arrivalTime', 'Departure Time':'departureTime', 'Distance':'distance', 'Source Station':'sourceStation','Source Station Name':'sourceStationName', 'Destination Station':'destinationStation','Destination Station Name':'destinationStationName'  } }
)
public function getFormInputListResponseByUserId(Request $request)
    {
        $text = "<p>{{form_input[4]}} {{form_input[2]}} {{form_input[1]}} azeaze azkjnvnjdd j {{form_input[3]}}</p>";
        $userResponsesInMailArray = $this->mailServices->extractInputsFromMail($text);
        $userResponseList = $this->userServices->getFormInputListResponseByUserId($request->user_id);
        foreach ($userResponseList as $response) {
            $formInputId = $response['form_input_id'];
            if (array_key_exists($formInputId, $userResponsesInMailArray)) {
                if ($response['response'] == null) {
                    if (count($response['values']) > 0) {
                        foreach ($response['values'] as $value) {
                            $userResponsesInMailArray[$formInputId][] = $value['val']['value'];
                        }
                    }
                } else {
                    $userResponsesInMailArray[$formInputId][] = $response['response'];
                }
            }
        }

        foreach ($userResponsesInMailArray as $key => $value) {
            if (count($value) == 1) {
                $text = str_replace("{{form_input[$key]}}", $value[0], $text);
            } else {
                $string_response = "";
                foreach ($value as $subArrayResponse) {
                    $string_response =   $subArrayResponse . " , " . $string_response;
                }
                $text = str_replace("{{form_input[$key]}}", $string_response, $text);
            }
        }

        return response()->json(['user_responses' => $userResponseList], 200);
    }
<?php
use yii\helpers\ArrayHelper;
echo ArrayHelper::getValue($model,'nama_property');
?>
Option Explicit

Function ghepTrong(chuoi As String) As String
If Len(chuoi) = 0 Then Exit Function
Dim mang() As Integer
Dim kq() As String
Dim i, j, k, z
k = Len(chuoi)
ReDim mang(1 To k)
For i = 1 To k
    mang(i) = CInt(Mid(chuoi, i, 1))
Next i
ReDim kq(1 To WorksheetFunction.Permut(k, 2) + k)
For i = 1 To k
    For j = 1 To k
        z = z + 1
        kq(z) = mang(i) & mang(j)
    Next j
Next i
ghepTrong = Replace(Join(kq), " ", ",")
End Function
update table_1 inner join table_2 on table_1.id = table_2.id_table_1
set table_1.field_1=table_2.field_2;
SELECT id, name, family, mobile, COUNT(mobile) as tt FROM `user_login` where deleted=0 GROUP BY `mobile` HAVING tt > 1;

SELECT user_id, COUNT(user_id) as tt FROM `tarh` WHERE finished = 1 GROUP BY `user_id` HAVING tt > 1 ORDER BY `tt` DESC
TINYTEXT - 256B => 255 characters
TEXT - 64KB => 65,535 characters
MEDIUMTEXT - 16MB => 16,777,215 characters
LONGTEXT - 4GB => 4,294,967,295 characters
time xargs -I % -P 100 curl -o /dev/null "http://127.0.0.1:9200/similarity_queue/_search" < <(printf '%s\n' {1..100}) 
#include<iostream>
using namespace std;
int main()
{
 int arr[10] = {0},key,c,d,ch=1;     //k = key, c = collision, d = data
 for(int i=0; i<=9 ; i++)
 {
  cout<<" "<<arr[i];
 }
 while(ch==1)
 {
  cout<<"\nEnter Key";
  cin>>key;
    c = 0;
  d = key % 10;
  for(int i=0;i<=9;i++)
  {
   if(arr[d]>0)
   {
    d++;
    c++;
   }
  }
  arr[d]  = key;
  for(int i=0;i<=9;i++)
  {
  cout<<arr[i]<<endl;;
  }
  cout<<"\nCollisions: "<<c;
  cout<<"Do you want to continue: ";
  cin>>ch;
 }

 return 0;
 }
//Before
import { round } from "./Math";

export default function App() {
  console.log(round(2.5));
  return (
    <div className="App">
      <h1>Hello World</h1>
    </div>
  );
}
GRANT ALL PRIVILEGES ON *.* TO 'sammy'@'localhost' WITH GRANT OPTION;
CREATE USER 'username'@'host' IDENTIFIED WITH authentication_plugin BY 'password';
/*
Based on Alexander Miller’s video on Recreating Vintage Computer Art with Processing and inspired by John Whitney's work:
https://www.youtube.com/watch?v=LaarVR1AOvs&t=181s
*/

let t = 0;
let numLines = 1000;
let variable = 10;
let increasing = 0.001;

function setup() {
  createCanvas(windowWidth, windowHeight);
  strokeWeight(0.1);
  stroke(255);
}

function draw() {
  background(0,10);
  translate(width / 2, height / 2);
  rotate(frameCount/500);
  
  let amplitude = width /4;
  
  variable = variable + increasing;
  
  if (variable < 0 || variable > 800)  increasing*= -1;
 
  
  //  console.log(variable);
  
  let variable1 = 5+variable/200*5;
  let variable2 = 5+variable/10*5;
  scale(.8+sin(frameCount/300)*2);

  // console.log(variable1);

  for (let i = 0; i < numLines; i++) {

    let x1 = sin((t + i) / variable1) * amplitude 
          //  + cos((t + 1) / 5) * 50;

    let y1 = cos((-t + i) / variable1) * amplitude 
          //  + sin(((t + 1) / 5) * 50);

    let x2 = sin((t + i) / variable2) * (amplitude * 3) 
          //  + cos(t + 1) * 50;

    let y2 = cos((-t + i) / variable2) * (amplitude * 3)
          //  + sin(t + 1) * 50;

    stroke(random(200,255));
    line(x1, y1, x2, y2);
    
  }

  t += 0.02;
  
}

function windowResized() {
  resizeCanvas(windowWidth, windowHeight);
  background(0);
}
​veru useful to find pairs and avoid repeating 
eg 1,2 is included so no need to incude 2,1

data = input("Enter values : ")

temp = data.split(" ")

res = {}

for i in temp:
    
    k,v = i.split(":")
    res[int(k)] = int(v)

count_snake = 0
count_ladder = 0

for k1, v1 in res.items():
    
    if k1 < v1:
        count_ladder += 1
    else:
        count_snake +=1

print("Count of snake = " , count_snake) 
print("Count of ladder = " , count_ladder) 
 
no = 1452
res = int("".join(sorted(str(no))))
print(int(res))

name = 'aniket'

name = sorted(name)

# to join list of characters into the string

res = "".join(name)

print(res)
print(type(res))
npm i eslint prettier eslint-config-prettier eslint-plugin-prettier eslint-config-airbnb eslint-plugin-node eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-react --save-dev



aseve gvinda faili

.eslintrc.json   da shig


{
  "extends": ["airbnb", "prettier", "plugin:node/recommended"],
  "plugins": ["prettier"],
  "rules": {
    "prettier/prettier": "error",
    "spaced-comment": "off",
    "no-console": "warn",
    "consistent-return": "off",
    "func-names": "off",
    "object-shorthand": "off",
    "no-process-exit": "off",
    "no-param-reassign": "off",
    "no-return-await": "off",
    "no-underscore-dangle": "off",
    "class-methods-use-this": "off",
    "prefer-destructuring": ["error", { "object": true, "array": false }],
    "no-unused-vars": ["error", { "argsIgnorePattern": "req|res|next|val" }]
  }
}


​#include <iostream>

using namespace std;

int main()
{
    // structura repetitiva
    /// citim un numar oarecare

    for(int i = 1; i <= 5; i = i + 1)
        cout << i << ' ';

    return 0;
}
dialog --backtitle "Package configuration" \
       --title "Configuration sun-java-jre" \
       --yesno "\nBla bla bla...\n\nDo you accept?" 10 30
#include <iostream>
using namespace std;

struct rectangle
{
    int length;
    int breadth;
};

int main() {
    
    rectangle *p;
    // in C, struct rectangle *p;
    
    p = new rectangle;
    //in C, p = (struct rectangle *)malloc(sizeof(struct rectangle));
    
    p->length = 15;
    p->breadth= 7;
    
    cout << "length : "<<p->length<<endl;
    cout << "breadth : "<<p->breadth<<endl;
    
    
 return 0;
}
public class Stats {
    public static void main(String[] args){

        if(args[0].equals("--product")){
            double counter = 1;
            for(int i = 1; i < args.length; i++){
                double result = Double.parseDouble(args[i]);
                //System.out.println(args[i]);
                counter = counter * result;
            }
            System.out.println(counter);
        }
        else if(args[0].equals("--mean")){
            double counter = 0;
            for(int i = 1; i < args.length; i++){
                double result = Double.parseDouble(args[i]);
                counter = counter + result;
                //System.out.println(counter);
            }
            System.out.println(counter/(args.length - 1));
        }
        else if(args[0].equals("--total")){
            double counter = 0;
            for(int i = 1; i < args.length; i++){
                double result = Double.parseDouble(args[i]);
                counter = counter + result;
            }
            System.out.println(counter);
        }
        else if(args[0].equals("--max")){
            double counter = Double.parseDouble(args[1]);
            for(int i = 1; i < args.length; i++){
                double result = Double.parseDouble(args[i]);
                if(counter < result){
                    counter = result;
                }
            }
            System.out.println(counter);
        }
        else if(args[0].equals("--min")){
            double counter = Double.parseDouble(args[1]);
            for(int i = 1; i < args.length; i++){
                double result = Double.parseDouble(args[i]);
                if(counter > result){
                    counter = result;
                }
            }
            System.out.println(counter);
        }
        else{
            System.out.println("Bad option" + args[0]);
        }
        
    }
        
    
}
import random

class FifteenModel:
    
    def __init__(self):
        self.state = [[i + j*4 for i in range(4)] for j in range(4)]
        self.state[3][3] = 0
    
    def getValue(self, row, col):
        return self.state[row][col]
    
    def tryMove(self, row, col):
        if (row > 0 and self.state[row-1][col] == 0):  # Check above
            self.state[row-1][col] = self.state[row][col]
            self.state[row][col] = 0
            return True
        elif (row < 3 and self.state[row+1][col] == 0):  # Check below
            self.state[row+1][col] = self.state[row][col]
            self.state[row][col] = 0
            return True
        elif (col > 0 and self.state[row][col-1] == 0):  # Check left
            self.state[row][col-1] = self.state[row][col]
            self.state[row][col] = 0
            return True
        elif (col < 3 and self.state[row][col+1] == 0):  # Check right
            self.state[row][col+1] = self.state[row][col]
            self.state[row][col] = 0
            return True
        else:
            return False
        
    def shuffle(self):
        for i in range(1000):
            row = random.randint(0, 3)
            col = random.randint(0, 3)
            self.tryMove(row, col)

import math

def find(x,y,z):
    
    return (math.gcd(x,y,z), math.lcm(x,y,z))
  

x,y,z= map(int, input().split())

print(find(x,y,z))
use Faker\Factory as Faker;
$faker = Faker::create();

foreach (range(1, 500) as $i) {
    $user = new App\Models\User;
    $user->first_name = $faker->firstName;
    $user->last_name = $faker->lastName;
    $user->email = $faker->email;
    $user->save();

    $userCongress = new App\Models\UserCongress;
    $userCongress->user_id = $user->user_id;
    $userCongress->congress_id = 5;  
    $userCongress->privilege_id = 3;  
    $userCongress->save();
}
<!DOCTYPE html>
<html>
  <head>
    <!--META information-->
    <meta charset="UTF-8" />
    <meta name="description" content="Random Quote Generator" />
    <meta name="keywords" content="HTML,CSS,JavaScript, Quotes, API" />
    <meta name="author" content="Neha Soni" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <!--End of META information-->

    <title>Random Quote Generator</title>

    <!--LINK CUSTOM CSS FILE-->
    <link rel="stylesheet" href="style.css" />

    <!--FONTAWESOME CDN-->
    <link
      rel="stylesheet"
      href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
      integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
      crossorigin="anonymous"
    />
  </head>
  <body>
    <!-- Quote Container -->
    <div class="container">
      <!-- Quote to be Displayed Here -->
      <h1>
        <i class="fas fa-quote-left"></i>
        <span class="quote" id="quote"></span>
        <i class="fas fa-quote-right"></i>
      </h1>
      <!-- Author to be Displayed Here -->
      <p class="author" id="author"></p>

      <hr />
      <div class="buttons">
        <!--Button to tweet the quote -->
        <a
          class="twitter"
          id="tweet"
          href="https://twitter.com/intent/tweet?text=Greetings"
          data-size="large"
          target="_blank"
          rel="noopener noreferrer"
          ><i class="fab fa-twitter"></i
        ></a>

        <!--Add an onclick event on 'next quote' button. Upon the click of a button, a new random quote is generated-->
        <button class="next" onclick="getNewQuote()">Next quote</button>
      </div>
    </div>

    <!--LINK CUSTOM JS FILE-->
    <script src="script.js"></script>
  </body>
</html>
#include <iostream>
using namespace std;

struct rectangle
{
    int length;
    int breadth;
};

int main() {
   rectangle r={10,5};
   cout <<"length : "<<r.length<<endl;
   cout <<"breadth : "<<r.breadth<<endl<<endl;
   
   cout << "using pointer : " <<endl;
   rectangle *p =&r;  
   cout <<"length : "<< p->length <<endl;
   cout <<"breadth : "<< p->breadth <<endl;

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

int main()
{
    int a= 10;
    int &r = a;
    
    cout <<"a : "<<a<<"  r : "<<r<<endl;
    
    r= 25;
    cout <<"a : "<<a<<"  r : "<<r<<endl;
    
    int b=30;
    r=b;
    cout <<"b : "<<b<<"  a : "<<a<<"  r : "<<r<<endl;
    
  return 0;
}
// これまでの関数
var printName = function() {
    document.write(this + "<br>");
    document.write(this.myName + "<br>");
};
var human = {
    myName: "yuu",
    print: printName
}
human.print();
 
// アロー関数
var printNameArrow = () => {
    document.write(this + "<br>");
    document.write(this.myName + "<br>");
};
var humanArrow = {
    myName: "mamoru",
    print: printNameArrow
}
humanArrow.print();
star

Mon Mar 06 2023 17:52:14 GMT+0000 (Coordinated Universal Time)

@Yoka225

star

Mon Mar 06 2023 17:04:52 GMT+0000 (Coordinated Universal Time)

@pradeepkumar28

star

Mon Mar 06 2023 15:25:15 GMT+0000 (Coordinated Universal Time) https://pandas.pydata.org/pandas-docs/stable/user_guide/basics.html?highlight

@MojeSnippets

star

Mon Mar 06 2023 15:24:24 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/4181861/message-src-refspec-master-does-not-match-any-when-pushing-commits-in-git

@chrisnofan

star

Mon Mar 06 2023 15:14:48 GMT+0000 (Coordinated Universal Time) https://help.forestnation.com/integrations/egift-api

@FOrestNAtion #json

star

Mon Mar 06 2023 15:04:20 GMT+0000 (Coordinated Universal Time) https://www.programiz.com/javascript/online-compiler/

@bhushan03

star

Mon Mar 06 2023 14:51:51 GMT+0000 (Coordinated Universal Time)

@Yoka225

star

Mon Mar 06 2023 14:34:32 GMT+0000 (Coordinated Universal Time) https://www.programiz.com/javascript/online-compiler/

@bhushan03

star

Mon Mar 06 2023 14:31:29 GMT+0000 (Coordinated Universal Time) https://www.programiz.com/javascript/online-compiler/

@bhushan03

star

Mon Mar 06 2023 14:23:55 GMT+0000 (Coordinated Universal Time) https://qiwi.com/main

@Leroy #1900

star

Mon Mar 06 2023 14:22:27 GMT+0000 (Coordinated Universal Time) https://qiwi.com/main

@Leroy

star

Mon Mar 06 2023 14:22:02 GMT+0000 (Coordinated Universal Time) undefined

@Leroy

star

Mon Mar 06 2023 13:25:41 GMT+0000 (Coordinated Universal Time)

@rick_m #tf #git

star

Mon Mar 06 2023 11:15:56 GMT+0000 (Coordinated Universal Time)

@tapasdash #nodejs #mongoose #mongodb #aggregate

star

Mon Mar 06 2023 11:06:02 GMT+0000 (Coordinated Universal Time)

@jassembenrayana

star

Mon Mar 06 2023 09:25:30 GMT+0000 (Coordinated Universal Time)

@nicovicz

star

Mon Mar 06 2023 09:20:40 GMT+0000 (Coordinated Universal Time) https://www.giaiphapexcel.com/diendan/threads/theo-dõi-kết-quả-xổ-số.4601/page-8

@at811

star

Mon Mar 06 2023 09:11:07 GMT+0000 (Coordinated Universal Time)

@ghader431

star

Mon Mar 06 2023 09:09:19 GMT+0000 (Coordinated Universal Time)

@ghader431

star

Mon Mar 06 2023 09:08:30 GMT+0000 (Coordinated Universal Time)

@ghader431

star

Mon Mar 06 2023 08:58:02 GMT+0000 (Coordinated Universal Time)

@amirabbas8643 #elastic #curl #xargs

star

Mon Mar 06 2023 08:33:10 GMT+0000 (Coordinated Universal Time)

@saakshi #c++

star

Mon Mar 06 2023 07:44:52 GMT+0000 (Coordinated Universal Time)

@Sumi_Dey

star

Mon Mar 06 2023 07:18:36 GMT+0000 (Coordinated Universal Time) https://www.digitalocean.com/community/tutorials/how-to-create-a-new-user-and-grant-permissions-in-mysql

@DELIGHTSOME #bash

star

Mon Mar 06 2023 07:18:11 GMT+0000 (Coordinated Universal Time) https://www.digitalocean.com/community/tutorials/how-to-create-a-new-user-and-grant-permissions-in-mysql

@DELIGHTSOME #bash

star

Mon Mar 06 2023 07:17:46 GMT+0000 (Coordinated Universal Time) https://www.digitalocean.com/community/tutorials/how-to-create-a-new-user-and-grant-permissions-in-mysql

@DELIGHTSOME #bash

star

Mon Mar 06 2023 07:17:40 GMT+0000 (Coordinated Universal Time) https://www.digitalocean.com/community/tutorials/how-to-create-a-new-user-and-grant-permissions-in-mysql

@DELIGHTSOME #bash

star

Mon Mar 06 2023 04:17:48 GMT+0000 (Coordinated Universal Time)

@yc_lan

star

Mon Mar 06 2023 03:54:46 GMT+0000 (Coordinated Universal Time) https://learnsql.com/track/sql-practice/course/joins/non-equi/non-equi-self-joins/non-equi-self-joins

@vnmshenoy #undefined

star

Mon Mar 06 2023 03:21:00 GMT+0000 (Coordinated Universal Time)

@aniket_chavan

star

Mon Mar 06 2023 02:53:04 GMT+0000 (Coordinated Universal Time)

@aniket_chavan

star

Mon Mar 06 2023 02:37:00 GMT+0000 (Coordinated Universal Time)

@aniket_chavan

star

Mon Mar 06 2023 02:19:58 GMT+0000 (Coordinated Universal Time)

@jpmri

star

Mon Mar 06 2023 02:18:48 GMT+0000 (Coordinated Universal Time)

@jpmri

star

Mon Mar 06 2023 01:23:05 GMT+0000 (Coordinated Universal Time)

@AC3AK1 #javascript

star

Sun Mar 05 2023 20:00:23 GMT+0000 (Coordinated Universal Time) https://www.pbinfo.ro/probleme/3978/sabc

@takoma2elite #c++

star

Sun Mar 05 2023 18:21:09 GMT+0000 (Coordinated Universal Time)

@r0dri #bash

star

Sun Mar 05 2023 18:12:22 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/1960473/get-all-unique-values-in-a-javascript-array-remove-duplicates

@mdfaizi

star

Sun Mar 05 2023 17:37:26 GMT+0000 (Coordinated Universal Time)

@saakshi #c++

star

Sun Mar 05 2023 17:35:51 GMT+0000 (Coordinated Universal Time)

@Achilles_17

star

Sun Mar 05 2023 17:22:42 GMT+0000 (Coordinated Universal Time)

@AniketRay

star

Sun Mar 05 2023 16:57:26 GMT+0000 (Coordinated Universal Time)

@aniket_chavan

star

Sun Mar 05 2023 16:08:27 GMT+0000 (Coordinated Universal Time)

@jassembenrayana

star

Sun Mar 05 2023 15:43:18 GMT+0000 (Coordinated Universal Time) https://www.codewithrandom.com/2022/08/13/quote-generator-using-javascript/

@visgiii

star

Sun Mar 05 2023 15:35:04 GMT+0000 (Coordinated Universal Time)

@saakshi #c++

star

Sun Mar 05 2023 14:00:41 GMT+0000 (Coordinated Universal Time) https://www.roblox.com/users/3818051554/profile

@DrayPlay

star

Sun Mar 05 2023 10:28:58 GMT+0000 (Coordinated Universal Time)

@saakshi #c++

star

Sun Mar 05 2023 06:51:02 GMT+0000 (Coordinated Universal Time) https://developer.salesforce.com/docs/platform/graphql/guide/filter-boolean.html

@pradeepkumar28

star

Sun Mar 05 2023 06:46:26 GMT+0000 (Coordinated Universal Time) https://crocro.com/write/manga_javascript/wiki.cgi?p

@gemudaisuki #javascript

Save snippets that work with our extensions

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