Snippets Collections
selector {
    animation: spin 1s linear infinite;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
  }

@keyframes spin {
	100% {
		transform: rotate(360deg);
	}
}
/*ממקם את שדה ההסכמה בסוף הטופס מתחת לכפתור*/
selector .elementor-field-type-acceptance {
    order:4;
}

/*מעגל פינות ומיישר את הצ'בוקס*/
selector .elementor-field-option *, input[type=checkbox]:checked:before{
    border-radius: 100px;
    transform: translate3d(0px, 5px, 0px)
}

/*מעצב את המצב הלא מסומן*/
selector .elementor-field-option input[type=checkbox] {
		-webkit-appearance: none;
		border:3px solid #E70F57;
		padding:8px;
		display: inline-flex;
		width:8px;
		height:8px;
}

/*מעצב את המצב המסומן*/
input[type=checkbox]:checked:before
 {
        content: '\f00c';
        color: white;
		font-size:10px;
		padding-right: 3px;
		line-height: 19px;
        font-weight: 600;
        background-color: #E70F57;
		width:16px;
		height:16px;
        font-family:'Font Awesome\ 5 Free';
		transform: translate3d(8px, -8px, 0px);
		position: absolute;
}
selector::before {
    content:"";
    width: 50px;
    height: 50px;
    background-image: url('/image.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    width: 100%;
}
selector .swiper-wrapper {
    transition-timing-function: linear;
}
selector{
    animation-name: floating 3s ease-in-out infinite;
}

@keyframes floating {
    from { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    to   { transform: translate(0, -0px); }
}
selector{
    animation:spin 15s linear infinite;
}


@keyframes spin { 100% {
    transform: rotate(360deg); }

}
selector{
    -webkit-mask-image: url(/wp-content/uploads/2023/01/file.svg);
    mask-image: url(/wp-content/uploads/2023/01/file.svg);

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    mask-size: 100%;
    -webkit-mask-size: 100%;

    -webkit-mask-position: center bottom;
    mask-position: center bottom;
}
@media only screen and (min-width: 1024px) {
selector{
    color: red !important;
}
}
@media only screen and (max-width: 1024px) {
selector{
    color: red !important;
}
}
border-style: none;
border-style: hidden;
border-style: dotted;
border-style: dashed;
border-style: solid;
border-style: double;
border-style: groove;
border-style: ridge;
border-style: inset;
border-style: outset;
margin: 50px 50px 50px 50px;

margin: 50px;
margin-top: 50px;
margin-right: 30px;
margin-bottom: 50px;
margin-left: 80px;
padding: 50px 50px 50px 50px;

padding: 50px;
padding-top: 50px;
padding-right: 30px;
padding-bottom: 50px;
padding-left: 80px;
background: linear-gradient(180deg, #0000 60%, #FED130 60%, #FED130 85%,  #0000 80%);
background: linear-gradient(195deg, #FE9D01, #ED269B);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-color: white;
background-color: #ffffff;
background: linear-gradient(195deg, #FE9D01, #ED269B);
curl -sSLf https://github.com/aclap-dev/vdhcoapp/releases/latest/download/install.sh | bash
ANIMATION_TIMEOUT = parseInt(getComputedStyle(rootEl).getPropertyValue('--transition-duration'), 10);
curl -L https://gitignore.io/api/[好きな言語や環境名。カンマ区切りで複数にも対応] -o .gitignore
docker-compose run --rm frontend sh -c 'npx create-react-app プロジェクト名 --template typescript'
q
  const [queryData, setQueryData] = useState<UserQueryData>({
    is_active: null,
    pageIndex: 1,
    pageSize: 10,
    pages: 10,
    total: 0,
  });

  const { isPending, data: userData } = useGetAllUsers(
    {
      size: queryData.pageSize,
      page: queryData.pageIndex,
      search: debouncedResults,
      is_active: queryData.is_active,
    },
    {
      query: {
        queryKey: [
          queryKeys.getUser,
          queryData.pageSize,
          queryData.pageIndex,
          queryData.is_active,
          debouncedResults,
        ],
      },
    },
  );  



const handleUnselectAll = useCallback(() => {
    dataTableRef.current?.resetSelected();
  }, [dataTableRef]);

  useEffect(() => {
    if (selectedCells.length <= 0) {
      handleUnselectAll();
    }
  }, [selectedCells, handleUnselectAll]);

  const handlePaginationChange = (pageIndex: number) => {
    dataTableRef.current?.resetSelected();
    setSelectedCells([]);
    setQueryData((prevData) => {
      return { ...prevData, ...{ pageIndex } };
    });
  };

  const handleSelectChange = (pageSize: number) => {
    setQueryData((prevData) => ({ ...prevData, ...{ pageSize } }));
  };

  const onRowSelect = (checked: boolean, row: CategoriesCell) => {
    setSelectedCells((prevSelectedCells) => {
      const existsIndex = prevSelectedCells.findIndex(
        (item) => item.id === row.id,
      );

      if (checked) {
        if (existsIndex === -1) {
          return [...prevSelectedCells, row];
        }
        return prevSelectedCells;
      } else {
        if (existsIndex !== -1) {
          const updatedSelection = [...prevSelectedCells];
          updatedSelection.splice(existsIndex, 1);
          return updatedSelection;
        }
        return prevSelectedCells;
      }
    });
  };

  const onAllRowSelect = useCallback(
    (checked: boolean, rows: Row<MoodsCell>[]) => {
      if (checked) {
        const originalRows = rows.map((row) => row.original);
        const selectedIds: MoodsCell[] = [];
        originalRows.forEach((row) => {
          selectedIds.push(row);
        });
        setSelectedCells(selectedIds);
      } else {
        setSelectedCells([]);
      }
    },
    [],
  );
// 1. push()
// Appends one or more elements to the end of an array
let arr1 = [1, 2, 3];
arr1.push(4);
console.log(arr1); // [1, 2, 3, 4]

// 2. pop()
// Removes the last element from the array and returns it
let arr2 = [1, 2, 3];
let lastElement = arr2.pop();
console.log(lastElement); // 3
console.log(arr2); // [1, 2]

// 3. shift()
// Removes the first element from the array and returns it
let arr3 = [1, 2, 3];
let firstElement = arr3.shift();
console.log(firstElement); // 1
console.log(arr3); // [2, 3]

// 4. unshift()
// Appends one or more elements to the beginning of an array
let arr4 = [2, 3];
arr4.unshift(1);
console.log(arr4); // [1, 2, 3]

// 5. concat()
// Combines two or more arrays
let arr51 = [1, 2];
let arr52 = [3, 4];
let newArr5 = arr51.concat(arr52);
console.log(newArr5); // [1, 2, 3, 4]


// 6. slice()
// Returns a new array containing part of the original array
let arr6 = [1, 2, 3, 4];
let newArr6 = arr6.slice(1, 3);
console.log(newArr6); // [2, 3]

// 7. splice()
// Changes the contents of an array by removing, replacing, or adding new elements
let arr7 = [1, 2, 3, 4];
arr7.splice(1, 2, 'a', 'b');
console.log(arr7); // [1, 'a', 'b', 4]

// 8. forEach()
// Executes the specified function once for each element of the array
let arr8 = [1, 2, 3];
arr8.forEach(element => console.log(element));
// 1
// 2
// 3

// 9. map()
// Creates a new array with the results of calling the specified function for each element of the array
let arr9 = [1, 2, 3];
let newArr9 = arr9.map(element => element * 2);
console.log(newArr9); // [2, 4, 6]

// 10. filter()
// Creates a new array with all elements that passed the test implemented by the given function
let arr10 = [1, 2, 3, 4];
let newArr10 = arr10.filter(element => element % 2 === 0);
console.log(newArr10); // [2, 4]

// 11. reduce()
// Applies a function to each element of an array (from left to right) to reduce it to a single value
let arr11 = [1, 2, 3, 4];
let sum = arr11.reduce((accumulator, currentValue) => accumulator + currentValue, 0);
console.log(sum); // 10

// 12. find()
// Returns the first element of the array that satisfies the given function
let arr12 = [1, 2, 3, 4];
let found = arr12.find(element => element > 2);
console.log(found); // 3

// 13. findIndex()
// Returns the index of the first array element that satisfies the given function
let arr13 = [1, 2, 3, 4];
let index = arr13.findIndex(element => element > 2);
console.log(index); // 2

// 14. some()
// Checks whether at least one element of the array satisfies the condition implemented by the function
let arr14 = [1, 2, 3, 4];
let hasEven = arr14.some(element => element % 2 === 0);
console.log(hasEven); // true

// 15. every()
// Checks whether all elements of an array satisfy the condition implemented by the function
let arr15 = [1, 2, 3, 4];
let allEven = arr15.every(element => element % 2 === 0);
console.log(allEven); // false

// 16. sort()
// Sorts the elements of an array and returns the sorted array
let arr16 = [3, 1, 4, 2];
arr16.sort();
console.log(arr16); // [1, 2, 3, 4]

// 17. reverse()
// Reverses the order of the elements in the array
let arr17 = [1, 2, 3, 4];
arr17.reverse();
console.log(arr17); // [4, 3, 2, 1]

// 18. join()
// Combines all elements of the array into a row
let arr18 = [1, 2, 3, 4];
let str = arr18.join('-');
console.log(str); // "1-2-3-4"

// 19. includes()
// Tests whether an array contains a specified element
let arr19 = [1, 2, 3, 4];
let hasThree = arr19.includes(3);
console.log(hasThree); // true

// 20. flat()
// Creates a new array with all subarray elements submerged to the specified depth
let arr20 = [1, [2, [3, [4]]]];
let flatArr = arr20.flat(2);
console.log(flatArr); // [1, 2, 3, [4]]

// 21. flatMap()
// First, it displays each element using a function, and then sums the result into a new array
let arr21 = [1, 2, 3];
let flatMappedArr = arr21.flatMap(element => [element, element * 2]);
console.log(flatMappedArr); // [1, 2, 2, 4, 3, 6]
{
	"blocks": [
		{
			"type": "header",
			"text": {
				"type": "plain_text",
				"text": "🌟 Melbourne Boost Day Reminder! 🌟"
			}
		},
		{
			"type": "divider"
		},
		{
			"type": "section",
			"text": {
				"type": "mrkdwn",
				"text": "Good morning Melbourne!\n\n \n\n Get ready for another fantastic Boost Day with these exciting offerings: \n\n ☕ *Xero Café:* Enjoy delicious café-style beverages crafted by our skilled baristas, and sweet treats like Lemon Slices, Yo-Yo Biscuits (Gluten Free) and Almond Crescents \n\n 📋 *Weekly Café Special:* Indulge in a delicious Biscoff Latte! \n\n :breakfast: *Breakfast*: Start your day with a delicious breakfast spread provided by Kartel Catering from 8:30am - 10:30am in the L3 Kitchen/Breakout Space. \n\n :fruits: *Reminder:* we now have a Nutribullet blender! Create your perfect mix for a delicious smoothie using our fresh fruit delivered on Mondays and Wednesdays! \n\n Enjoy your delicious smoothies and remember to #washyourowncoffeecup and clean up after yourself so the next Xero can enjoy too!"
			}
		},
		{
			"type": "divider"
		},
		{
			"type": "section",
			"text": {
				"type": "mrkdwn",
				"text": "Stay tuned to this channel for more details, check out the <https://calendar.google.com/calendar/u/0?cid=Y19xczkyMjk5ZGlsODJzMjA4aGt1b3RnM2t1MEBncm91cC5jYWxlbmRhci5nb29nbGUuY29t|*Melbourne Social Calendar*>, and get ready to Boost your workdays!\n\nLove,\nWX Team :party-wx:"
			}
		}
	]
}
const htmlMurkup = '<p>Good</p>'
let quill = new Quill()
quill.container.firstChild.innerHTML = htmlMurkup
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Website</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }

        header{
            width: 100%;
            height: 40px;
            background-color:yellow;
            color: red;
            font-size: xx-large;
            font-weight: 700;
            text-align: center;
        }
        nav{
            width: 100%;
            height: 30px;
            background-color: aqua;
            display: flex;
            justify-content: center;
            align-items: center;
          

        }
        nav ul{
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;

        }
        nav ul li{
            text-decoration: none;
            list-style-type:none ;
        }
        style>
h1{
    color: aqua;
    background-color: yellow;
    font-size: 50px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
*{
    margin: 0;
    padding: 0;
}
.nav{
    display: flex;
    width: 100%;
    height: 50px;
    background-color: green;
    justify-content: space-around;
    align-items: center;

}
/* .nav>div:nth-child(1){
    margin-left: 10px;
}
.nav>div:last-child{
    margin-left: 150px;
} */

.nav > div{
    height: 25px;
    width: 75px;
    background-color: aqua;
    text-align: center;
}
.nav .green{
    background-color: green;
}
main{
    border: 2px solid black;
    width: 100%;
    height: 700px;
    display: flex;

}
.items{
    width: 25%;
    height: 700px;
    border: 2px solid black;
}
.promo{
    width: 25%;
    height: 700px;
    border: 2px solid black;
}
.content{
    width: 50%;
    height: 700px;
    border: 2px solid black;
}
.items ul li{
    margin: 27px;
}
h2{
    text-align: center;

}
.container{
    width: 100%;
    height: 550px;
    display: flex;
    flex-wrap: wrap;
    background-color: aqua;
    justify-content: space-around;

}
.box{
    


    width: 150px;
    height: 150px;
    background-color: chartreuse;
    margin: 20px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

    </style>

</head>
<body>
    <header>
        Mycloth
    </header>
    <nav>
        <ul>
            <li>Home</li>
            <li>About us</li>
            <li>Investors</li>
            <li>Relations</li>
            <li>Our Story</li>
            <li>More info</li>
        </ul>



    </nav>
      
<main>

    <div class="items">
    
        <h2 >Offers</h2>
        <ul>
            <li> Get up to 10% discount</li>
            <li> Apply coupon:Fest</li>
            <li>get up to 20% off on ready made cloth </li>
            <li>sale starts on 29dec </li>
            <li>get 5% discount using cards </li>
        </ul>
    
    </div>
    
    
    <div class="content">
        <h2>Our Products</h2>
        <div class="container">
    
             <div class="box">
                <h5>Sports dresses</h5>
                <img src="dress.jfif" alt="" width="100px" height="90px">
                <button>Buy Now</button>
             </div>
             <div class="box">
                <h5>Sports dresses</h5>
                <img src="dress.jfif" alt="" width="100px" height="90px">
                <button>Buy Now</button>
             </div>

             <div class="box">
                <h5>Sports dresses</h5>
                <img src="dress.jfif" alt="" width="100px" height="90px">
                <button>Buy Now</button>
             </div>
        

        </div>
    
    
    </div>
    <div class="promo">
        <h2>Promotions</h2>
        <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Aspernatur est aliquid velit adipisci ipsam explicabo! Velit eos nostrum sapiente odio vitae nesciunt laborum dolorum incidunt facilis alias sint placeat corrupti ducimus tempora minima, animi totam nihil ea unde dignissimos adipisci commodi molestiae modi rem. Expedita saepe accusantium voluptate labore amet vitae, iusto ullam recusandae soluta nemo delectus eligendi vero ea a praesentium pariatur. Aperiam sed atque mollitia deleniti architecto odit possimus? Odio facilis corporis inventore unde possimus quis id, saepe doloribus dolores veniam illo, ea hic adipisci quibusdam quas eligendi ratione, eaque natus voluptate. Odit laborum nesciunt repudiandae accusamus. Temporibus nisi quas deserunt, optio adipisci facilis voluptatem quam eaque repellat exercitationem reiciendis, doloribus sit dolores blanditiis quae eum dolorem quibusdam vero voluptas molestias accusantium recusandae maxime aspernatur. Ipsa deleniti, quasi laboriosam optio voluptatem nihil accusamus iusto a corporis dignissimos facere vero voluptates rerum tempore porro! Beatae saepe adipisci praesentium commodi, officia dolore repellendus illo sint ab, id esse tempore tempora a facere, veritatis recusandae mollitia aspernatur unde? Maxime similique a voluptates facere, quos, molestias vitae tempore nihil eius saepe eos, assumenda accusamus libero numquam facilis in fuga quam ipsa sapiente esse! Veritatis nisi perferendis, libero sequi doloremque suscipit deleniti dolor.</p>
    
    </div>
    
    
    
    
    
    </main>



</body>
</html>
{
	"blocks": [
		{
			"type": "header",
			"text": {
				"type": "plain_text",
				"text": ":te-wiki-o-te-reo-maori: Boost Days - What's on this week! :te-wiki-o-te-reo-maori:"
			}
		},
		{
			"type": "section",
			"text": {
				"type": "mrkdwn",
				"text": "Happy Māori Language Week Te-Whanganui-a-tara! \n\nLet's make this week a great one with our Boost Day Program :zap: See below for what's coming up! "
			}
		},
		{
			"type": "divider"
		},
		{
			"type": "header",
			"text": {
				"type": "plain_text",
				"text": ":calendar-date-17: Tuesday, 17th September",
				"emoji": true
			}
		},
		{
			"type": "section",
			"text": {
				"type": "mrkdwn",
				"text": "\n:coffee: *Xero Café*: Café-style beverages and sweet treats\n:arrow-right: *Barista Special*: Irish Cream Coffee \n:sun_with_face: *Breakfast*: Provided by *Simply Food* from *8:00am - 10:30am* on Level 3\n :person_in_steamy_room: *Massage*: Book in with Justine <http://justinescottmassagetherapist.gettimely.com/|here> to secure a spot, please note this is not covered by WX \n :walking:*Steptember*: Participate in a 30 minute walk from the office at *3:00pm* led by Kimi Zerafat! \n :xero-boxing: *Boxing*: Xero led Boxing Session at 12pm in the XO Gym! \n:connect: *Boost Survey*: Official feedback survey released today, give us your thoughts <https://yourvoice.xero.com/jfe/form/SV_eyA8ArYHfnsfUwu|here> - form open until Friday October 18th "
			}
		},
		{
			"type": "header",
			"text": {
				"type": "plain_text",
				"text": ":calendar-date-19: Thursday, 19th September",
				"emoji": true
			}
		},
		{
			"type": "section",
			"text": {
				"type": "mrkdwn",
				"text": ":coffee: *Xero Café*: Café-style beverages and sweet treats \n:arrow-right: *Barista Special*: Irish Cream Coffee \n :little-bread-loaf: *Morning Tea*: Provided by our favourite Māori owned bakery, Little Bread Loaf, at *10:30am* on *Level 3* \n :film_projector: *AB & SB Product Vision*: Streamed in the *All Hands* at *10:45am*, grab a bite and a seat to view together!\n :kia-kaha-trm: *Online Session*: Join this virtual Te Reo Māori history session with Riki Consulting <https://calendar.google.com/calendar/event?action=TEMPLATE&tmeid=NjE2ajFiZDhwcmNlaGptaW1xNmd2ZWNjcXIgY18wamJma3B1cmhlOWJtZmpwOHJtbHFqYTlrOEBn&tmsrc=c_0jbfkpurhe9bmfjp8rmlqja9k8%40group.calendar.google.com|here> at *12:00pm*\n:yoga2:*Wellness - Yoga*: Held in the Xero gym with <https://www.awhiyoga.co.nz/|AWHI Yoga> from *12:00pm-1:00pm*, confirm your spot <https://docs.google.com/spreadsheets/d/1EtVKnMDTf53TkjXPaAxgCN7AvNWlDz9NQNGMg2Ll56o/edit?usp=sharing|here> \n:xero-boxing: *Boxing*: Xero led Boxing Sessions at 5pm in the XO Gym!"
			}
		},
		{
			"type": "divider"
		},
		{
			"type": "section",
			"text": {
				"type": "mrkdwn",
				"text": "*What else?*"
			}
		},
		{
			"type": "section",
			"text": {
				"type": "mrkdwn",
				"text": ":maori-flag: *Ake Ake Ake - A Forever Language*: Check out the Māori Pasifika ERG post in #nz to see what else is on celebrating Te Wiki o te Reo Māori at Xero! \n\n:footprint: *Steptember*: Fuel up with our Boost Breakfast for the afternoon walk, followed by an educational video hosted in the *All Hands* to raise awareness for Cerebral Palsy \n\n:slot_machine: *Xero Game Show Social+*: This months Social+ is on *Thursday 26th September* from 4pm-6pm in the All Hands space"
			}
		},
		{
			"type": "divider"
		},
		{
			"type": "section",
			"text": {
				"type": "mrkdwn",
				"text": "Stay tuned to this channel for more details, check out the <https://calendar.google.com/calendar/u/0?cid=Y180Y2UwNGEwNjY2YjI5NDNlZmEwZGM4YWI5MTdjMTcyNDE2NzVhZmQ5MTllN2EwZjg5NTg5OTVkMTA2MDAzZmEwQGdyb3VwLmNhbGVuZGFyLmdvb2dsZS5jb20|*Wellington Social Calendar*>, and get ready to Boost your workdays!\n\nLove,\nWX Team :party-wx:"
			}
		}
	]
}
selector .e-loop-item:nth-of-type(3){
      grid-row: span 2;
}

.e-loop-item:nth-of-type(4){
    grid-column: span 2;
   
}
const audioContext = new (window.AudioContext || window.webkitAudioContext)();

function playSound() {
  const oscillator = audioContext.createOscillator();
  oscillator.type = 'sine';
  oscillator.frequency.setValueAtTime(440, audioContext.currentTime); // Frequency in Hz
  oscillator.connect(audioContext.destination);
  oscillator.start();
  oscillator.stop(audioContext.currentTime + 0.1); // Play sound for 0.1 seconds
}

// Call playSound() at appropriate times during sorting
star

Wed Jul 31 2024 13:43:43 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:43:29 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:43:24 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:43:20 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:43:17 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:43:14 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:43:10 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:43:07 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:43:04 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:43:01 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:42:57 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:42:53 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:42:49 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:42:47 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:42:44 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:42:41 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:42:23 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:42:20 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:42:18 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:42:15 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:42:13 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:42:10 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:42:08 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:42:01 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:41:59 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:41:56 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:41:52 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:41:50 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:41:48 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:41:46 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:41:43 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:41:36 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:41:33 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 13:41:32 GMT+0000 (Coordinated Universal Time) https://schooliner.com/codesheet/

@lipi44 #css

star

Wed Jul 31 2024 12:13:24 GMT+0000 (Coordinated Universal Time) https://www.netflix.com/in/

@ruturaj1400

star

Wed Jul 31 2024 12:12:45 GMT+0000 (Coordinated Universal Time) https://www.netflix.com/in/

@ruturaj1400

star

Wed Jul 31 2024 11:42:13 GMT+0000 (Coordinated Universal Time) https://www.downloadhelper.net/install-coapp-v2

@DelldMi

star

Wed Jul 31 2024 09:41:02 GMT+0000 (Coordinated Universal Time) jobs.ts in COOP

@vankoosh #javascript

star

Wed Jul 31 2024 09:34:20 GMT+0000 (Coordinated Universal Time) https://zenn.dev/kiri_i/articles/gitignore_io

@maridann1022 #bash #git

star

Wed Jul 31 2024 09:21:28 GMT+0000 (Coordinated Universal Time) https://qiita.com/urouro_net/items/dd7166f9728d08bc933b

@maridann1022 #react

star

Wed Jul 31 2024 08:02:28 GMT+0000 (Coordinated Universal Time) https://qiita.com/91works-i-kato/items/9f9ad03fee32d42ed547

@maridann1022 #react #type #docker

star

Wed Jul 31 2024 07:51:17 GMT+0000 (Coordinated Universal Time) https://qiita.com/shizuma/items/2b2f873a0034839e47ce

@maridann1022 #ssh #git

star

Wed Jul 31 2024 07:42:46 GMT+0000 (Coordinated Universal Time)

@chiragwebelight

star

Wed Jul 31 2024 07:14:20 GMT+0000 (Coordinated Universal Time)

@radeon323 #js #javascript #typescript #ts

star

Wed Jul 31 2024 04:50:08 GMT+0000 (Coordinated Universal Time)

@WXAPAC

star

Wed Jul 31 2024 04:26:04 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/46626633/how-do-you-insert-html-into-a-quilljs

@webmaster30

star

Wed Jul 31 2024 04:21:30 GMT+0000 (Coordinated Universal Time)

@signup

star

Tue Jul 30 2024 23:55:08 GMT+0000 (Coordinated Universal Time)

@FOHWellington

star

Tue Jul 30 2024 21:08:02 GMT+0000 (Coordinated Universal Time)

@odesign

star

Tue Jul 30 2024 21:03:28 GMT+0000 (Coordinated Universal Time)

@tanushahaha

Save snippets that work with our extensions

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