Thinking about getting a pet snake? 🐍 Check out our guide comparing Corn Snakes and Ball Pythons to help you pick the perfect slithery friend! Click on the link below and learn about it: https://lnkd.in/dhszNFq4 #petsnake #cornsnake #ballpython #snakecare #reptileloversofinstagram #petguide #snakecomparison #easypets #reptilecare #petadvice
Pets Lover Guide’s Post
More Relevant Posts
-
New tutorial | Crop and blur objects with Ultralytics YOLOv8! 😍 Discover how to effectively crop and blur objects using Ultralytics YOLOv8 in this comprehensive guide. This video walks you through object cropping and blurring with practical Python code examples and real-time demos. Whether you're new to Ultralytics or looking to refine your skills, this video has everything you need to master object manipulation with YOLOv8. Key highlights: ✅ Crop and blur using YOLOv8 overview ✅ Code walkthrough for crop and blur using YOLOv8 ✅ Inference demos for crop and blur using YOLOv8 Watch now ➡️ https://lnkd.in/dH3mmpBq #YouTubeTutorial #YOLOv8 #ObjectCropping #Blurring #ObjectDetection
How to Crop and Blur objects using Ultralytics YOLOv8 | Ultralytics Solutions | Episode 57
https://www.youtube.com/
To view or add a comment, sign in
-
🦄 Trafalgar’s Unicorn Continuous Fire Collar is one of our newest products with a constantly expanding range of approvals for different scenarios that occur in modern construction and rectification. 🔥 A scenario that is arising more and more is the need to fire-stop insulated drinks pythons, consisting of multiple drink lines with thick foam insulation, usually found in restaurants and bars. ✅ In our most recent testing, the Unicorn: Continuous fire collar and FyrePEX HP Sealant were used to fire stop a 120mm drinks python penetrating a concrete slab. The collar worked perfectly during the test with the intumescent lining and additional FyrePEX HP expanding to crush the python, along with sealing the hole to prevent the spread of fire through the slab. The system achieved a FRL of -/120/120 with the highest temperature recorded above the penetration being only 65°C! 🌡️ Click here to learn more: https://hubs.li/Q02Yjb_20 #FireSafety #ConstructionSolutions #TrafalgarGroup #FireStopping #BuildingProtection #InsulatedPythons #RestaurantSafety #InnovationInConstruction #TrafalgarGroup #PassiveFire #FireProtection
To view or add a comment, sign in
-
Run RAG Locally with llama.cpp 🚀 Here is a short tutorial about running basic RAG locally using llama.cpp by Mark Hneedham. 🎯 The llama.cpp started as a project to support inference of Meta's LLaMA model with pure C/C++. The project currently supports the core LLMs such as LLAMA 2/3, Mistral 7B, BERT, etc. 📽️: https://lnkd.in/g-QUxPnh ⭐️ 𝑱𝒐𝒊𝒏 𝒎𝒚 𝑫𝒂𝒕𝒂 𝑺𝒄𝒊𝒆𝒏𝒄𝒆 𝑪𝒉𝒂𝒏𝒏𝒆𝒍 👉🏼 https://lnkd.in/g_GdP-pf #llm #rag #datascience #python
Local RAG with llama.cpp
https://www.youtube.com/
To view or add a comment, sign in
-
🚀 Day 64 of my #100DaysOfCodingChallenge 🚀 Today, I solved the LeetCode problem: Can Place Flowers 🌼💻 This problem tested my understanding of array manipulation and edge-case handling. The challenge was to determine the maximum number of flowers that could be planted without violating the no-adjacent-flowers rule—a great exercise in logic and attention to detail! #100DaysOfCode #Day64 #LeetCode #Arrays #ProblemSolving #CodingJourney
To view or add a comment, sign in
-
#SurajitNandy #DynamicProgramming #DP #DSA #Programming #Coding Egg Dropping Puzzle Link: https://lnkd.in/g9C-5vyt import sys INT_MAX = sys.maxsize def rec(x, e, dp): if dp[x][e] != -1: return dp[x][e] if x == 0 or e == 0: dp[x][e] = 0 return dp[x][e] if x == 1: dp[x][e] = 1 return dp[x][e] if e == 1: dp[x][e] = x return dp[x][e] min_moves = INT_MAX moves = 0 for i in range(1, x+1): _break = 1 + rec(i-1, e-1, dp) not_break = 1 + rec(x - i, e, dp) moves = max(_break, not_break) min_moves = min(min_moves, moves) dp[x][e] = min_moves return dp[x][e] class Solution: #Function to find minimum number of attempts needed in #order to find the critical floor. def eggDrop(self, n, k): # code here dp = [[-1 for _ in range(n+1)] for _ in range(k+1)] return rec(k, n, dp)
To view or add a comment, sign in
-
Learned a lot about lists and tuples....
My Quiz Score – Real Python
realpython.com
To view or add a comment, sign in
-
Stacked more Wireshark practice with some new tricks via tcpdump and Python 👍
Solved Litter from Hack The Box!
labs.hackthebox.com
To view or add a comment, sign in
-
Lesson 15 completed: game that gives you animal sounds. Check it out on Replit: https://lnkd.in/d4W7rMr7
100 Days of Code - Learn Python on Replit
replit.com
To view or add a comment, sign in
-
Solution using Python :: # Import your libraries import pandas as pd # code result=yelp_reviews.sort_values(by='cool',ascending=False) result['rank']=result['cool'].rank(ascending=False).astype(int) final_result=result.query('rank==1') final_result[['business_name','review_text']] Nathanael Rosidi StrataScratch Ankit Bansal link : https://lnkd.in/djTS5yz7 https://lnkd.in/djTS5yz7
StrataScratch
platform.stratascratch.com
To view or add a comment, sign in
-
Hello #connections , ✨ Day - 7️⃣ 0️⃣ of #DrGViswanathanChallange #100daysofcodingchallenge Problem Statement : Task You are given a 1-D array, A. Your task is to print the floor, ceil and rint of all the elements of A. Note In order to get the correct output format, add the line numpy.set_printoptions(legacy='1.13') below the numpy import. Input Format A single line of input containing the space separated elements of array A. Constraints - None Output Format On the first line, print the floor of A. On the second line, print the ceil of A. On the third line, print the rint of A. #VitBhopal #HakerRank #VitBhopalLion
To view or add a comment, sign in
270 followers