#codeexample kết quả tìm kiếm

6/ Niva in Zeta: Operational Mechanics 📚 Usage is straightforward: - Specify the model. - Choose quantization type ("dynamic" or "static"). - Define the layers to quantize (for dynamic). - Set the desired data type (like torch.qint8). #ZetaFramework #CodeExample

KyeGomezB's tweet image. 6/ Niva in Zeta: Operational Mechanics

📚 Usage is straightforward: 
- Specify the model. 
- Choose quantization type ("dynamic" or "static"). 
- Define the layers to quantize (for dynamic). 
- Set the desired data type (like torch.qint8). #ZetaFramework #CodeExample

Generators in Python are magical iterators that produce a stream of data on-the-fly, saving memory and optimizing performance. Let's dive into how they work, step by step, and explore practical applications! 🌟 Step 1️⃣: Function Definition #CodeExample #PythonGenerators

InboxPraveen's tweet image. Generators in Python are magical iterators that produce a stream of data on-the-fly, saving memory and optimizing performance. Let's dive into how they work, step by step, and explore practical applications! 🌟

Step 1️⃣: Function Definition 
#CodeExample #PythonGenerators

1️⃣ Setup Redux Toolkit 🔧 Create a store: #CodeExample #WebDev

AnilKumarb98's tweet image. 1️⃣ Setup Redux Toolkit 🔧

Create a store:
#CodeExample #WebDev
AnilKumarb98's tweet image. 1️⃣ Setup Redux Toolkit 🔧

Create a store:
#CodeExample #WebDev

How do you usually deal with the challenge of knowing which button in your @wizedapp list has been clicked? 🤔💭 #CodeExample

lowcodeapps_'s tweet image. How do you usually deal with the challenge of knowing which button in your @wizedapp list has been clicked? 🤔💭

#CodeExample
lowcodeapps_'s tweet image. How do you usually deal with the challenge of knowing which button in your @wizedapp list has been clicked? 🤔💭

#CodeExample

7/ Example of adding a key-value pair: Code in action: 📸 See how easy it is to extend our dictionary? 🗽 #CodeExample #PythonDictionaries

YourPythonFun's tweet image. 7/ Example of adding a key-value pair:

Code in action: 📸

See how easy it is to extend our dictionary? 🗽

#CodeExample #PythonDictionaries

3/ Example of adding an item: Code in action: 📸 Notice how using append() adds "date" to our list of fruits? 🍏🍌🍒 #CodeExample #PythonLists

YourPythonFun's tweet image. 3/ Example of adding an item:

Code in action: 📸

Notice how using append() adds "date" to our list of fruits? 🍏🍌🍒

#CodeExample #PythonLists

1️⃣ Parsing JSON strings to Python objects is easy with the `json` module. 🚀 Code example below shows how to convert a JSON string to a Python dictionary. Use `json.loads()` to achieve this. #CodeExample #PythonBasics

YourPythonFun's tweet image. 1️⃣ Parsing JSON strings to Python objects is easy with the `json` module.

🚀 Code example below shows how to convert a JSON string to a Python dictionary. Use `json.loads()` to achieve this. #CodeExample #PythonBasics

Here's how you can use truthiness in conditionals. In this snippet, a check determines if a number is falsy or truthy. Use this logic for cleaner code 🧹 #CodeExample

YourPythonFun's tweet image. Here's how you can use truthiness in conditionals. In this snippet, a check determines if a number is falsy or truthy. Use this logic for cleaner code 🧹 #CodeExample

"1️⃣ Solidity Basics 🖥️ Store data on-chain with a simple contract! #SmartContracts #CodeExample"

AnilKumarb98's tweet image. "1️⃣ Solidity Basics 🖥️
Store data on-chain with a simple contract!
#SmartContracts #CodeExample"

"1️⃣ Middleware Magic 🛠️ Log requests, handle errors, authenticate users! #BackendDev #CodeExample"

AnilKumarb98's tweet image. "1️⃣ Middleware Magic 🛠️
Log requests, handle errors, authenticate users!
#BackendDev #CodeExample"

🔥Example: Fibonacci in Rust Let's create a Rust function to compute the nth Fibonacci number #Rust #Python #CodeExample

ArashiB7's tweet image. 🔥Example: Fibonacci in Rust
Let's create a Rust function to compute the nth Fibonacci number
#Rust #Python #CodeExample

Here's how environment variables are often used in Python projects. Notice the repetition: 🔽 Code before using Environs: #Environment #Python #CodeExample

YourPythonFun's tweet image. Here's how environment variables are often used in Python projects. Notice the repetition: 

🔽 Code before using Environs:

#Environment #Python #CodeExample

Here's an example of using async/await to fetch data from an API #JavaScript #CodeExample (5/7)

peyidev's tweet image. Here's an example of using async/await to fetch data from an API #JavaScript #CodeExample (5/7)

21/50 Code sample: 🖥️ Defines a class 'MathUtils' with two 'add()' methods that can handle different numbers of arguments. 🧮🔢 #PythonMethodOverloading #CodeExample

TechByteIQ's tweet image. 21/50 Code sample: 🖥️ 

Defines a class 'MathUtils' with two 'add()' methods that can handle different numbers of arguments. 🧮🔢 #PythonMethodOverloading #CodeExample

18/50 Code sample: 🖥️ Illustrates applying OOP concepts by defining classes 'Vehicle', 'Car', and 'Bike' with specific behaviors. 🚗🚲 #PythonOOP #CodeExample

TechByteIQ's tweet image. 18/50 Code sample: 🖥️ 

Illustrates applying OOP concepts by defining classes 'Vehicle', 'Car', and 'Bike' with specific behaviors. 🚗🚲 #PythonOOP #CodeExample

39/50 Code sample: 🖥️ Illustrates inheritance by defining classes 'Person' and 'Employee', with the latter extending the functionality of the former. 👨‍💼📝 #PythonInheritance #CodeExample

TechByteIQ's tweet image. 39/50 Code sample: 🖥️ 
Illustrates inheritance by defining classes 'Person' and 'Employee', with the latter extending the functionality of the former. 👨‍💼📝 #PythonInheritance #CodeExample

6/6 📝 Code Example: POST Request 📤 Now, let's create a new user by sending a POST request to the API: This code creates a new user with the specified name and email. #REST #POSTRequest #CodeExample

maniteja2601's tweet image. 6/6 📝 Code Example: POST Request 📤

Now, let's create a new user by sending a POST request to the API:
This code creates a new user with the specified name and email. #REST #POSTRequest #CodeExample

here some example. these function will yield even numbers up to 'limit'. #Python #Generators #CodeExample

ArashiB7's tweet image. here some example. these function will yield even numbers up to 'limit'.
#Python #Generators #CodeExample

Elevate your JavaScript unit testing skills by mastering Jest beforeEach with a practical code example! 🛠️ Let's write better tests together! #JestTesting #CodeExample buff.ly/3ONgcBG

geshan's tweet image. Elevate your JavaScript unit testing skills by mastering Jest beforeEach with a practical code example! 🛠️ Let's write better tests together! #JestTesting #CodeExample 
buff.ly/3ONgcBG
geshan's tweet image. Elevate your JavaScript unit testing skills by mastering Jest beforeEach with a practical code example! 🛠️ Let's write better tests together! #JestTesting #CodeExample 
buff.ly/3ONgcBG
geshan's tweet image. Elevate your JavaScript unit testing skills by mastering Jest beforeEach with a practical code example! 🛠️ Let's write better tests together! #JestTesting #CodeExample 
buff.ly/3ONgcBG

🛠️ Practical example: Build a countdown timer in Java Swing using javax.swing.Timer. Clean, simple, effective. #CodeExample


// 3. Setup store const store = configureStore({ reducer: counterSlice.reducer }); #ReactJS #ReduxToolkit #CodeExample


// 2. Export actions export const { increment } = counterSlice.actions; #ReactJS #ReduxToolkit #CodeExample


4/ Basic Flow of Redux Toolkit // 1. Create a slice const counterSlice = createSlice({ name: 'counter', initialState: { value: 0 }, reducers: { increment: state => { state.value += 1 } } }); #ReactJS #CodeExample #ReduxToolkit


2. Without cleanups, event listeners or timers can pile up, eating memory like a hungry gremlin. 🧀 Here’s an example: useEffect(() => { const timer = setInterval(() => console.log("Tick"), 1000); // Oops, no cleanup! }, []); #CodeExample #WebDevelopment


3. Example: A generic function to return the first item of an array: function firstItem<T>(arr: T[]): T | undefined { return arr[0]; } console.log(firstItem([1, 2, 3])); // 1 console.log(firstItem(["a", "b"])); // "a" #CodeExample #WebDevelopment


3. Example: function outer() { let count = 0; return function inner() { count++; console.log(count); }; } const increment = outer(); increment(); // 1 increment(); // 2 #CodeExample #WebDevelopment


Here's how environment variables are often used in Python projects. Notice the repetition: 🔽 Code before using Environs: #Environment #Python #CodeExample

YourPythonFun's tweet image. Here&apos;s how environment variables are often used in Python projects. Notice the repetition: 

🔽 Code before using Environs:

#Environment #Python #CodeExample

7/ Example of adding a key-value pair: Code in action: 📸 See how easy it is to extend our dictionary? 🗽 #CodeExample #PythonDictionaries

YourPythonFun's tweet image. 7/ Example of adding a key-value pair:

Code in action: 📸

See how easy it is to extend our dictionary? 🗽

#CodeExample #PythonDictionaries

3/ Example of adding an item: Code in action: 📸 Notice how using append() adds "date" to our list of fruits? 🍏🍌🍒 #CodeExample #PythonLists

YourPythonFun's tweet image. 3/ Example of adding an item:

Code in action: 📸

Notice how using append() adds &quot;date&quot; to our list of fruits? 🍏🍌🍒

#CodeExample #PythonLists

Here's how environment variables are often used in Python projects. Notice the repetition: 🔽 Code before using Environs: #Environment #Python #CodeExample

YourPythonFun's tweet image. Here&apos;s how environment variables are often used in Python projects. Notice the repetition: 

🔽 Code before using Environs:

#Environment #Python #CodeExample

Here's how environment variables are often used in Python projects. Notice the repetition: 🔽 Code before using Environs: #Environment #Python #CodeExample

YourPythonFun's tweet image. Here&apos;s how environment variables are often used in Python projects. Notice the repetition: 

🔽 Code before using Environs:

#Environment #Python #CodeExample

Here's how you can use truthiness in conditionals. In this snippet, a check determines if a number is falsy or truthy. Use this logic for cleaner code 🧹 #CodeExample

YourPythonFun's tweet image. Here&apos;s how you can use truthiness in conditionals. In this snippet, a check determines if a number is falsy or truthy. Use this logic for cleaner code 🧹 #CodeExample

Here's how environment variables are often used in Python projects. Notice the repetition: 🔽 Code before using Environs: #Environment #Python #CodeExample

YourPythonFun's tweet image. Here&apos;s how environment variables are often used in Python projects. Notice the repetition: 

🔽 Code before using Environs:

#Environment #Python #CodeExample

Here's how you can use truthiness in conditionals. In this snippet, a check determines if a number is falsy or truthy. Use this logic for cleaner code 🧹 #CodeExample

YourPythonFun's tweet image. Here&apos;s how you can use truthiness in conditionals. In this snippet, a check determines if a number is falsy or truthy. Use this logic for cleaner code 🧹 #CodeExample

Here's how environment variables are often used in Python projects. Notice the repetition: 🔽 Code before using Environs: #Environment #Python #CodeExample

YourPythonFun's tweet image. Here&apos;s how environment variables are often used in Python projects. Notice the repetition: 

🔽 Code before using Environs:

#Environment #Python #CodeExample

1️⃣ Setup Redux Toolkit 🔧 Create a store: #CodeExample #WebDev

AnilKumarb98's tweet image. 1️⃣ Setup Redux Toolkit 🔧

Create a store:
#CodeExample #WebDev
AnilKumarb98's tweet image. 1️⃣ Setup Redux Toolkit 🔧

Create a store:
#CodeExample #WebDev

"1️⃣ Solidity Basics 🖥️ Store data on-chain with a simple contract! #SmartContracts #CodeExample"

AnilKumarb98's tweet image. &quot;1️⃣ Solidity Basics 🖥️
Store data on-chain with a simple contract!
#SmartContracts #CodeExample&quot;

"1️⃣ Middleware Magic 🛠️ Log requests, handle errors, authenticate users! #BackendDev #CodeExample"

AnilKumarb98's tweet image. &quot;1️⃣ Middleware Magic 🛠️
Log requests, handle errors, authenticate users!
#BackendDev #CodeExample&quot;

ถ้าดูผ่านเว็บในคอมลอง ctrl+shift+I ตามด้วย ctrl+F พิมพ์ filter กด enterจนเจอ grayscale ปรับให้เป็น0 ให้หมด(คลิกขวา Edit as HTML) จะกลับมามีสีคับ

DY_CYCB's tweet image. ถ้าดูผ่านเว็บในคอมลอง ctrl+shift+I ตามด้วย ctrl+F พิมพ์ filter กด enterจนเจอ grayscale ปรับให้เป็น0 ให้หมด(คลิกขวา Edit as HTML) จะกลับมามีสีคับ

นักสืบกุยังต้องไว้ทุกข์

jellybearchan's tweet image. นักสืบกุยังต้องไว้ทุกข์


"Replace <img /> elements with <img-2> to automatically pre-cache images and improve page performance." github.com/RevillWeb/img-2

css's tweet image. &quot;Replace &amp;lt;img /&amp;gt; elements with &amp;lt;img-2&amp;gt; to automatically pre-cache images and improve page performance.&quot;

github.com/RevillWeb/img-2

HERE ARE SOME IG FILTERS THAT YOU SHOULD TRY. ⓒ A THREAD;

fvckbabeb's tweet image. HERE ARE SOME IG FILTERS THAT YOU SHOULD TRY. ⓒ 

A THREAD;
fvckbabeb's tweet image. HERE ARE SOME IG FILTERS THAT YOU SHOULD TRY. ⓒ 

A THREAD;
fvckbabeb's tweet image. HERE ARE SOME IG FILTERS THAT YOU SHOULD TRY. ⓒ 

A THREAD;
fvckbabeb's tweet image. HERE ARE SOME IG FILTERS THAT YOU SHOULD TRY. ⓒ 

A THREAD;

⚡ CSS Filters Ultimate Cheatsheet + Codepen⚡

Aakash_codes's tweet image. ⚡ CSS Filters Ultimate Cheatsheet  + Codepen⚡

girls, if you're going to use a filter, use it correctly. here is an example...

causticbob's tweet image. girls, if you&apos;re going to use a filter, use it correctly. here is an example...

CSS Tip 1️⃣6️⃣ Create reflection of image with only 1 line of code 👇

CodeByPoonam's tweet image. CSS Tip 1️⃣6️⃣
Create reflection of image with only 1 line of code 👇

6/ Niva in Zeta: Operational Mechanics 📚 Usage is straightforward: - Specify the model. - Choose quantization type ("dynamic" or "static"). - Define the layers to quantize (for dynamic). - Set the desired data type (like torch.qint8). #ZetaFramework #CodeExample

KyeGomezB's tweet image. 6/ Niva in Zeta: Operational Mechanics

📚 Usage is straightforward: 
- Specify the model. 
- Choose quantization type (&quot;dynamic&quot; or &quot;static&quot;). 
- Define the layers to quantize (for dynamic). 
- Set the desired data type (like torch.qint8). #ZetaFramework #CodeExample

Yo! so since my c0mms are open again, i wanna showcase what they entail! heres some examples of what i can do (youtube banners, thumbnails, ect) 🧵(1/?) #SonicTheHedgehog #art

codetrillogy's tweet image. Yo! so since my c0mms are open again, i wanna showcase what they entail! heres some examples of what i can do (youtube banners, thumbnails, ect) 🧵(1/?)
#SonicTheHedgehog #art
codetrillogy's tweet image. Yo! so since my c0mms are open again, i wanna showcase what they entail! heres some examples of what i can do (youtube banners, thumbnails, ect) 🧵(1/?)
#SonicTheHedgehog #art
codetrillogy's tweet image. Yo! so since my c0mms are open again, i wanna showcase what they entail! heres some examples of what i can do (youtube banners, thumbnails, ect) 🧵(1/?)
#SonicTheHedgehog #art
codetrillogy's tweet image. Yo! so since my c0mms are open again, i wanna showcase what they entail! heres some examples of what i can do (youtube banners, thumbnails, ect) 🧵(1/?)
#SonicTheHedgehog #art

⚡ filter( ) method in JavaScript 😉 Don't underestimate this array method is very useful. 🧵...

ATechAjay's tweet image. ⚡ filter( ) method in JavaScript

😉 Don&apos;t underestimate this array method is very useful.

🧵...

The Importance of Filters – A Basic Beginner's Guide: goo.gl/GjlYn0

500px's tweet image. The Importance of Filters – A Basic Beginner&apos;s Guide: goo.gl/GjlYn0

The backdrop-filter CSS property is looking pretty rad. css-tricks.com/the-backdrop-f…

css's tweet image. The backdrop-filter CSS property is looking pretty rad. css-tricks.com/the-backdrop-f…

Enjoy the color views! Pick your favorite! 📸🤩 Try yours, link in bio. 🔗 #Photo #Image #Pro #Filter

TheAceMaker's tweet image. Enjoy the color views! Pick your favorite! 📸🤩
Try yours, link in bio. 🔗

#Photo #Image #Pro #Filter
TheAceMaker's tweet image. Enjoy the color views! Pick your favorite! 📸🤩
Try yours, link in bio. 🔗

#Photo #Image #Pro #Filter
TheAceMaker's tweet image. Enjoy the color views! Pick your favorite! 📸🤩
Try yours, link in bio. 🔗

#Photo #Image #Pro #Filter
TheAceMaker's tweet image. Enjoy the color views! Pick your favorite! 📸🤩
Try yours, link in bio. 🔗

#Photo #Image #Pro #Filter

💡 Javascript Visually Explained How to use an array filter method in Javascript. Two inline array filter examples and one with a custom filter function.

csaba_kissi's tweet image. 💡 Javascript Visually Explained

How to use an array filter method in Javascript.

Two inline array filter examples and one with a custom filter function.

More examples of my filter Left: After Right: Before You can get them here leeyikkeat.com/mobile-presets

leeyikkeat's tweet image. More examples of my filter

Left:    After
Right: Before

You can get them here

leeyikkeat.com/mobile-presets
leeyikkeat's tweet image. More examples of my filter

Left:    After
Right: Before

You can get them here

leeyikkeat.com/mobile-presets
leeyikkeat's tweet image. More examples of my filter

Left:    After
Right: Before

You can get them here

leeyikkeat.com/mobile-presets
leeyikkeat's tweet image. More examples of my filter

Left:    After
Right: Before

You can get them here

leeyikkeat.com/mobile-presets

💡 CSS Tip ➡️ With a transparent image, use the filter property instead of box-shadow: #100daysofcode #coding #javascript

YannBrds's tweet image. 💡 CSS Tip

➡️ With a transparent image, use the filter property instead of box-shadow:

#100daysofcode #coding #javascript

A use case for CSS filters: re-coloring the emoji — codepen.io/kizu/pen/PzGadO

kizmarh's tweet image. A use case for CSS filters: re-coloring the emoji — codepen.io/kizu/pen/PzGadO

Here are some filter templates that you see a bunch of people using. I found them last night. You can use the apps PicsArt or phonto and just put them over your pictures.

amourclarissa's tweet image. Here are some filter templates that you see a bunch of people using. I found them last night. You can use the apps PicsArt or phonto and just put them over your pictures.
amourclarissa's tweet image. Here are some filter templates that you see a bunch of people using. I found them last night. You can use the apps PicsArt or phonto and just put them over your pictures.
amourclarissa's tweet image. Here are some filter templates that you see a bunch of people using. I found them last night. You can use the apps PicsArt or phonto and just put them over your pictures.
amourclarissa's tweet image. Here are some filter templates that you see a bunch of people using. I found them last night. You can use the apps PicsArt or phonto and just put them over your pictures.

Ok, you know how if you make a copy of a copy of a copy of a copy it becomes really terrible quality? Well.....it works the same with the old filter...

CodySIO's tweet image. Ok, you know how if you make a copy of a copy of a copy of a copy it becomes really terrible quality? Well.....it works the same with the old filter...

im gunna drop this here as if you haven’t probably already seen 30 people use this filter just today 🤷🏼‍♀️

MadiT03's tweet image. im gunna drop this here as if you haven’t probably already seen 30 people use this filter just today 🤷🏼‍♀️

Loading...

Something went wrong.


Something went wrong.


United States Trends