Cᴏᴅᴇs Sɴɪᴘᴘᴇᴛs
Open in Telegram
👩💻 Wᴇʟᴄᴏᴍᴇ ᴛᴏ @CodesSnippet! 🚀 Jᴏɪɴ ᴜs ғᴏʀ ᴅᴀɪʟʏ sɴɪᴘᴘᴇᴛs ᴏғ ᴄᴏᴅɪɴɢ 🧩 ᴋɴᴏᴡʟᴇᴅɢᴇ! 💻💡 Hᴇʀᴇ, ʏᴏᴜ'ʟʟ ғɪɴᴅ 👀 ʙɪᴛᴇ-sɪᴢᴇᴅ ᴘɪᴇᴄᴇs ᴏғ ᴄᴏᴅᴇ, 🔥 ᴘʀᴏɢʀᴀᴍᴍɪɴɢ ᴛɪᴘs, ᴀɴᴅ ᴛʀɪᴄᴋs ᴛᴏ ʟᴇᴠᴇʟ ᴜᴘ ʏᴏᴜʀ ᴄᴏᴅɪɴɢ sᴋɪʟʟs! 💪💻 Sᴛᴀʏ ᴜᴘᴅᴀᴛᴇᴅ ᴏɴ ᴛʜᴇ ʟᴀᴛᴇsᴛ ᴛʀᴇɴᴅs ɪɴ ᴛᴇᴄʜ
Show moreThe country is not specifiedTechnologies & Applications51 481
305
Subscribers
No data24 hours
-67 days
-630 days
Posts Archive
📚 Explore 5 FREE University Courses to Become a Machine Learning Pro:
1. 🏛️ MIT's Introduction to Machine Learning: Learn the basics like linear classifiers, neural networks, and more with this easy-to-follow course.
🔗 Link to Course
2. 🌟 Harvard's Data Science: Machine Learning: Get hands-on with practical stuff like recommendation systems and cross-validation in Harvard's course.
🔗 Link to Course
3. 🖥️ University of Michigan's Applied Machine Learning with Python: Dive into popular algorithms using simple programming exercises on Coursera.
🔗 Link to Course
4. 🌐 Stanford's Machine Learning: Understand supervised and unsupervised learning easily with Stanford's recommended course.
🔗 Link to Course
5. 🚀 Stanford's Statistical Learning with Python: Covering key topics in a simple way, this course helps you master statistical modeling.
🔗 Link to Course
Join @coderslearning for more! ✅
ENJOY LEARNING 👍 👍
#MachineLearning #DataScience #FreeCourses
To make virtual environment in vs code .
Run command:-
python -m venv <foldername>
example
python -m venv test
To activate Run:-
test\Scripts\Activate.ps1
To deactivate run:-
deactivateRepost from ᴍʀ sᴜᴋᴋᴜɴ
Chatgpt using Dart Programming Language
import 'dart:convert';
import 'package:http/http.dart' as http;
import 'dart:io';
void main() async {
print("Enter your question: ");
var question = stdin.readLineSync();
var url =
Uri.parse('https://chatgpt.apinepdev.workers.dev/?question=${question}');
var response = await http.get(url);
if (response.statusCode == 200) {
var jsonResponse = json.decode(response.body);
print(jsonResponse["answer"]);
} else {
print('Request failed with status: ${response.statusCode}.');
}
}
First, make sure to add the http package to your pubspec.yaml file:
name: your_project_name
environment:
sdk: "^3.3.0"
dependencies:
http: ^0.13.3
By : @mr_sukkunRepost from ᴍʀ sᴜᴋᴋᴜɴ
Chatgpt using Dart Programming Langauge
import 'dart:convert';
import 'package:http/http.dart' as http;
import 'dart:io';
void main() async {
print("Enter your question: ");
var question = stdin.readLineSync();
var url =
Uri.parse('https://chatgpt.apinepdev.workers.dev/?question=${question}');
var response = await http.get(url);
if (response.statusCode == 200) {
var jsonResponse = json.decode(response.body);
print(jsonResponse["answer"]);
} else {
print('Request failed with status: ${response.statusCode}.');
}
}
First, make sure to add the http package to your pubspec.yaml file:
name: your_project_name
environment:
sdk: "^3.3.0"
dependencies:
http: ^0.13.3
By : @mr_sukkunvoid main() {
print("Welcome to Dart Programming Language!");
print("hi");
}
void main2() {
print("hi");
}Roadmap:
• Frontend : https://roadmap.sh/frontend
• Backend : https://roadmap.sh/backend
• Devops : https://roadmap.sh/devops
• Reactjs : https://roadmap.sh/react
• Android : https://roadmap.sh/android
• Angular : https://roadmap.sh/angular
• Python : https://roadmap.sh/python
• Golang : https://roadmap.sh/golang
• Java : https://roadmap.sh/java
#Roadmap
Jᴏɪɴ ᴜs :- @Python_Codes_Pro
Support group :- @python_group_pro
Convert Image to text
import pytesseract as t
from PIL import Image
img = Image.open("photo.jpg")
text = t.image_to_string(img)
print(text)
Language: Python
Jᴏɪɴ ᴜs :- @CodesSnippetRotate character using python.
import time
rotation_chars = ['-', '\\', '|', '/']
while True:
for char in rotation_chars:
print(char, end='\r')
time.sleep(0.5)
Language: Python
Jᴏɪɴ ᴜs :- @CodesSnippetNode.js:
May 27, 2009: Initial release by Ryan Dahl.
June 2015: Formation of the Node.js Foundation.
Major Version Releases with Key Features (up to April 26, 2024):
Node.js v0.x (2009-2013): Early development versions, not recommended for production use.
Node.js v0.10 (2013): Introduced Long Term Support (LTS) releases. (Note: While the exact end-of-life date might be past April 2024, these versions are not recommended for new projects due to their age).
Node.js v4.x (2015): Introduced asynchronous programming features like async/await.
Node.js v6.x (2016): Introduced modern JavaScript syntax features like arrow functions and destructuring.
Node.js v8.x (2017): Introduced improvements to performance and the V8 JavaScript engine.
Node.js v10.x (2018): Introduced features like async iterators and promises improvements.
Node.js v12.x (2017) and later (up to April 2024): This includes several versions with various improvements and features. Here are some notable examples:
Node.js v14.x (2021): Introduced features like experimental WebAssembly System Interface (WASI) support.
Node.js v16.x (2021): Introduced features like BigInt improvements and experimental fetch API.
Node.js v18.x (2022): Introduced features like experimental top-level await and improvements to the V8 JavaScript engine.
Node.js v22.x (April 2024, Current): Introduced features like requiring ESM graphs, WebSocket client implementation, and updates to the V8 JavaScript engine. (This version is currently in the "Current" release stage and will enter LTS in October 2024)
Node js 22 is now released
Fastest growing backend of js language. Actively developed since 2015.
https://nodejs.org/en/blog/announcements/v22-release-announce
