wie bitte 🍡
69 subscribers
399 photos
110 videos
47 files
123 links
🍡 @marifah

π‘†π‘œπ‘“π‘‘π‘€π‘Žπ‘Ÿπ‘’ πΈπ‘›π‘”π‘–π‘›π‘’π‘’π‘Ÿ.
𝐡𝐴 (π»π‘œπ‘›π‘ ) π‘ƒπ‘Ÿπ‘œπ‘—π‘’π‘π‘‘ π‘€π‘Žπ‘›π‘Žπ‘”π‘šπ‘’π‘›π‘‘
𝑇𝑒𝑒𝑠𝑠𝑖𝑑𝑒 π‘ˆπ‘›π‘–π‘£π‘’π‘Ÿπ‘ π‘–π‘‘π‘¦ π‘Žπ‘‘ 𝑀𝐷𝐼𝑆𝑇 '26

B2: πŸ‡ΊπŸ‡² πŸ‡©πŸ‡ͺ πŸ‡·πŸ‡Ί
Download Telegram
CHALLENGE

const teams = [
{ name: 'Warriors', players: ['Curry', 'Thompson'] },
{ name: 'Lakers', players: ['James', 'Davis'] }
];

const newTeams = JSON.parse(JSON.stringify(teams));
newTeams[0].players.push('Green');

const shallowCopy = [...teams];
shallowCopy[1].name = 'Clippers';

const freezeTest = Object.freeze({nested: {value: 42}});
freezeTest.nested.value = 100;

console.log(teams[1].name, teams[0].players.length, freezeTest.nested.value);

Find the output :
Forwarded from @Rustam-Z⚑️
Sundar Pichai: CEO of Google and Alphabet

https://www.youtube.com/watch?v=9V6tWC4CdFQ

8:27 Advice for young people
10:09 Styles of leadership
14:29 Impact of AI in human history
26:39 Veo 3 and future of video
34:24 Scaling laws
38:09 AGI and ASI
44:33 P(doom)
51:24 Toughest leadership decisions
1:02:32 AI mode vs Google Search
1:15:22 Google Chrome
1:30:52 Programming
1:37:37 Android
1:42:49 Questions for AGI
1:48:05 Future of humanity
return (
<div>
<Thumbnail video={video} />
<a href={video.url}>
<h3>{video.title}</h3>
<p>{video.description}</p>
</a>
<LikeButton video={video} />
</div>
);
}



React Start βš™οΈ
Please open Telegram to view this post
VIEW IN TELEGRAM
<html lang="en">

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script crossorigin src="https://unpkg.com/react@18/umd/react.development.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@18/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<title>React-1</title>
<style>
.container {
max-width: 1140px;
width: 100%;
margin: 0 auto;
padding: 0 15px;
text-align: center;
font-size: 24px;
}

button {
margin: 10px;
padding: 10px 20px;
}
</style>
</head>

<body>
<div id="root"></div>

<script type="text/babel">
function App() {
const [count, setCount] = React.useState(0);

return (
<div className="container">
<h1>Count: {count}</h1>
<button onClick={() => setCount(count - 1)}>-</button>
<button onClick={() => setCount(count + 1)}>+</button>
</div>
);
}

const app = document.getElementById("root");
const root = ReactDOM.createRoot(app);
root.render(<App />);
</script>
</body>

</html>


React counter
Mashina qulflanib qolsa: qarisndoshlarim πŸ’‘
dasturchisanku och mashinani (iloji bosikan terminalda ochardim)

Jinni xonani nomerini berila ketaman man πŸ˜‘
my core at 4:00πŸ’‘
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Wieder lernen wir deutsch zum B2 ZertifikatπŸ‡©πŸ‡ͺ
Please open Telegram to view this post
VIEW IN TELEGRAM
Forwarded from Learn React and NextJs
🧿 Boost React Performance

Performance bottlenecks in React often come from unnecessary re-renders and poor state management. Here’s a straightforward guide to optimizing your React apps.
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Forwarded from Learn React and NextJs
πŸ”… What is Vite?

A modern frontend build tool that has quickly gained traction among developers for its remarkable speed and simplicity. Created by Evan You, the developer behind Vue.js, Vite optimizes the development experience by focusing on two primary goals:
- Fast Development: Vite provides instant server start and blazing-fast Hot Module Replacement (HMR) for a smoother development workflow.
- Optimized Production Builds: With native support for ES modules and efficient bundling through Rollup, Vite ensures that production builds are lean and performant.