Data Structures

4/2 Edited to

... Read moreWhen working with Solidity, an essential part of writing efficient smart contracts is understanding the difference between Memory, Storage, and Calldata. Each of these data locations serves a unique purpose and affects the cost and behavior of your contracts. Memory is a temporary space where data is stored during function execution. It is erased once the function call ends, making it ideal for intermediate calculations or local variables that don’t need to persist. Since Memory lives only during execution, it generally has a lower gas cost compared to Storage. Storage, in contrast, is permanent and persists on the blockchain. Variables stored here remain between function calls and transactions, meaning they can be expensive in terms of gas fees due to the permanent state changes they represent. Storage is best used for critical contract data such as account balances or mappings that must retain values. Calldata is a special, read-only data location used specifically for function inputs. It is also temporary and cheaper in gas than Storage but cannot be modified, which means it’s perfect for passing large arrays or structs into functions without copying them into memory. In practice, choosing the appropriate data location directly impacts contract efficiency and cost. For example, if you are processing data that doesn’t need to be saved on-chain, use Memory or Calldata. For data that must persist and be mutable across transactions, Storage is necessary. By managing these correctly, you can optimize gas consumption, improving both the usability and scalability of your smart contracts. From my experience developing Solidity contracts, I found that understanding these differences early on saved me significant refactoring time and cost optimization. It’s beneficial to profile and test your functions with different data locations to find the best balance for your specific use case. This knowledge will help you deliver more secure, faster, and cost-effective decentralized applications.

Related posts

Data Structures & Algorithms Was EASY With These!
When I first started learning DSA, finding the right resources felt overwhelming. That’s why I want to share the playlists that made a huge difference for me! Abdul Bari’s Algorithms Course was a lifesaver—his clear and simple explanations helped me truly understand complex concepts like sorting
CompSkyy

CompSkyy

27 likes

Master Programming Fundamentals, Algorithms, Computational Thinking, Computer S
Prepare for WGU D684: Introduction to Computer Science with this comprehensive study guide featuring practice questions with verified answers. Review key topics including computational thinking, programming fundamentals, algorithms, data structures, computer systems, networking, cybersecurity, and
Lemon367443437826

Lemon367443437826

1 like

10 most important data structures: part 2
Various essential concepts and data structures play a pivotal role in CS for organizing and managing data efficiently. This brief overview will delve into five fundamental data structures: Graphs, Hash Maps, Heaps, Trie (Prefix Tree), and Hash Sets. Graphs: Graphs, consisting of nodes and edges
anjali.gama

anjali.gama

12 likes

10 most important data structures: part 1
Understanding data structures is essential for computer science and programming. Here are 10 important data structures that you should be familiar with: 1. Arrays: A basic data structure that stores a collection of elements of the same type. Elements are accessed using their index. 2. Linked Li
anjali.gama

anjali.gama

8 likes

Stop creating messy spreadsheets ✋🏼🛑 Start using tabular data structures #excel #data #analytics
Encyclopedia-Excel

Encyclopedia-Excel

1 like

A desk setup with a monitor, white keyboard, and pink mouse, featuring the title 'best websites for learning computer science' and a 'Start' button.
A tablet displaying the GitHub website, with text overlay 'github Collaborate, host, and manage your coding projects seamlessly.'
A tablet displaying the Stack Overflow website, with text overlay 'stack overflow Get answers to coding questions and learn from industry professionals.'
Sites for CS Students!
Learning computer science can feel like drinking from a firehose sometimes, but the right resources make all the difference. Whether you’re debugging code, prepping for interviews, or diving into data science, these websites are absolute must-haves. GitHub is your go-to for managing projects and
CompSkyy

CompSkyy

215 likes

My Programming Interest Just Skyrocketed! 🚀
I just discovered something that has made my interest in programming explode to 1000000000000000%! 🤯 🎮 Learning Programming is Like a Game Adventure! From Python, Java, JavaScript, to HTML, there are all kinds of programming languages available, along with systematic topic courses. The learning p
Valder

Valder

2175 likes

Data engineering roadmap part 1
Here's a comprehensive roadmap for data engineering that covers various aspects of the field. This roadmap is divided into multiple parts to help you systematically learn and master the necessary skills. ### Part 1: Foundation 1. Basic Programming Skills: - Learn Python or Java, focu
anjali.gama

anjali.gama

19 likes

A young woman with long, curly brown hair and glasses smiles with her eyes closed, wearing a dark sweater. Text overlay reads "HARDEST CLASSES of my Computer Science degree so far..." with a white arrow pointing right, and "lemon8 @compskyy" at the bottom.
A pink background with a white text box detailing strategies for Discrete Math Structures. It mentions failing the first time, immense studying, study groups, and practicing proof writing. "lemon8 @compskyy" and a white arrow are at the bottom.
A pink background with a white text box outlining strategies for Data Structures & Algorithms. Tips include using visualization tools, teaching others, and utilizing YouTube channels like Computerphile and HackerRank. "lemon8 @compskyy" and a white arrow are at the bottom.
Hardest Classes Of My Computer Science Degree!!
1️⃣ Discrete Mathematics: My toughest battle. I faced the unfamiliar territory of abstract concepts and rigorous proofs. It was the only class I've failed so far, but I didn't give up. Retaking it the next semester, I dedicated myself to mastering proofs and the unique logic of discrete mat
CompSkyy

CompSkyy

274 likes

A laptop displaying Google, with a book titled 'Atomic Habits' and a mouse on a desk. The image features text overlay 'FREE ONLINE COURSES (computer science edition)' and 'LEARN MORE', indicating a guide to free computer science courses.
A graphic listing 'Free CS Courses' including Harvard's CS50, MIT OpenCourseWare, FreeCodeCamp for web design, and Kaggle's Data Science Courses. It provides brief descriptions for each, suggesting options for learning computer science.
A desk setup with a white keyboard, an ergonomic mouse, and a pink notebook. Text overlay prompts viewers to 'COMMENT 💻 IF YOU'LL TRY THESE COURSES!' and 'Follow for more', encouraging engagement with the content.
You Can Learn Computer Science For FREE!?
💻 Learn computer science for free with courses from Harvard, MIT, FreeCodeCamp, and Kaggle! Whether you’re diving into Python, exploring web design, or getting started with data science, these resources have you covered. 🌟 Comment a 🔥 if you’re ready to start learning, and follow for more study tip
CompSkyy

CompSkyy

1010 likes

A night view of a university campus with illuminated buildings, including one inscribed with classical names, and people walking. The image has text overlayed: 'WHY I CHOSE NEW YORK CITY FOR GRAD SCHOOL'.
A sunset cityscape of New York City across a body of water, with the skyline reflecting sunlight. Text overlay states: 'I went from undergrad in LA to NYC for grad school. Thinking about a similar switch? Here's why I chose this path:'.
A winter park scene with bare trees, a bridge, and distant buildings. Text overlays list reasons for choosing NYC: 'East coast tech scene', 'Program opportunities', and 'New environment'.
Columbia to UCLA: My Academic Journey
Making the switch from LA to NYC for grad school? Here's my personal take and perspective on why I chose to go to the schools I did. East coast tech scene exposure: Different cities provide networking opportunities, and there are various segments of the tech industry that depend on geographic
vvanessaww

vvanessaww

11 likes

A circular infographic titled 'Types of Databases' categorizes various database systems. It displays Relational Databases (MySQL, Postgres, Firebird, MariaDB, SQLite, SQL Server) and Document Stores (MongoDB, CouchDB, RethinkDB, PouchDB) with their respective logos.
Different types of databases
Databases can be classified into many different types such as relational, document, columnar, wide-column, graph, key-value, object-oriented, multi-model, time-series, and vector databases based on their structures and use cases Here are a categorized list of available databases 😎👇 #linux
Learn Linux with Dan

Learn Linux with Dan

2 likes

A woman with curly hair holds a microphone, presenting a title card that reads 'Data Analysis with Python For Beginners'.
A woman with curly hair holds a microphone, presenting an introductory text about simple steps for learning Python for Data Analysis.
A woman with curly hair holds a microphone, presenting a list of four steps for beginners to learn Python for Data Analysis.
Beginner Friendly Tips For Learning Python for Dat
If I was to learn Python for Data Analysis as a beginner, I would start with the basics, I would learn: Variables Data Types Loops and Functions. There's no Python without libraries and these are the most used for Data Analysis: 👉 Pandas - Data Manipulation 👉 Numpy - Numerical Comput
NeLo

NeLo

76 likes

Wikipedia Link Trick 
If you keep clicking the first link in a Wikipedia article, you’ll almost always end up on the Philosophy page. Try it yourself. 
 #BenTested #WikipediaHack #FunFactVideo #InternetTricks #PhilosophyPage #MindBlownMoment #DidYouKnow #CuriousFacts
BenTested

BenTested

14 likes

Gaming Final
#lemon8diarychallenge #python #gaming During the spring semester, I took a Python coding class that taught data structures and algorithms with a gaming context. This is the most rewarding project that I created during my first year in college. We were given around a month to complete a ga
Kayla Gale

Kayla Gale

9 likes

You Don’t Have To Go To College to Be a Tech Bro!
Getting into computer science doesn’t have to cost a fortune—there are so many free resources out there that helped me get started. Harvard’s CS50 was a game-changer, breaking down core concepts like algorithms and data structures in a super engaging way. CrashCourse made understanding CS fundament
CompSkyy

CompSkyy

144 likes

Career tips for computer science majors
1. Build a Strong Portfolio - Work on projects that demonstrate your skills, such as web apps, mobile apps, or machine learning models. Host them on GitHub or a personal website. 2. Master the Fundamentals - Focus on core CS concepts like data structures, algorithms, and object-orien
vedha | career tips (tech) 👩‍

vedha | career tips (tech) 👩‍

37 likes

Tips if you plan on taking CS major
Computer Science major is considered one of the hardest and most rewarding to pursue. To excel in your Computer Science major and prepare for a successful career, it's essential to follow these key strategies: 1. Master Fundamentals: Build a strong foundation in math and programming. Develop
anjali.gama

anjali.gama

41 likes

I Almost Failed Physics But Then Did This...
Story time to when I was taking Physics for Engineers (which I think is harder than the normal physics bc it kicked my a** lol). I was doing so badly in the class and really suffering in the labs too. It seemed like everyone else was understanding the material and equations and they were keeping up
CompSkyy

CompSkyy

40 likes

How to Break Into Software Engineering
#codingforbeginners #htmlcssforbeginners #programming #studymotivation #softwareengineering
Aysha

Aysha

415 likes

Anjali Viramgama stands in a modern building, introducing "Mistakes you shouldn't make as a CS student Part 1." The image features a red and black torn paper aesthetic.
A hand stacks wooden blocks spelling "BACK TO BASICS," illustrating the importance of not neglecting fundamentals in CS, as explained in the accompanying text.
A young man scratches his head in front of a blackboard, representing the challenge of a lack of hands-on experience in CS, as detailed in the text.
Mistakes you shouldn’t make as a CS student
Here are some mistakes you should never make as a CS student, part 1: 1. Neglecting Fundamentals: CS is built on fundamental concepts in mathematics, algorithms, and data structures. Neglecting these basics can hinder your ability to tackle more advanced topics. Ensure you have a strong foundati
anjali.gama

anjali.gama

10 likes

A title slide on a dark background with abstract colorful shapes, stating "RATING ALL THE CLASSES I TOOK THIS SEMESTER AS A CS & LINGUISTICS MAJOR" and a "SWIPE LEFT" prompt. The user's handle "the lazy gal" and "lemons @the_lazygal" are also visible.
A slide reviewing "DISCRETE MATH" on a dark background with abstract shapes. The text describes the class as challenging and abstract, with the student preferring calculus. The user's handle "the lazy gal" and "lemons @the_lazygal" are present.
A slide reviewing "HUMANITIES 80" on a dark background with abstract shapes. The text indicates it was a liked GE class, cool, and good for making friends due to its smaller size and group work. The user's handle "the lazy gal" and "lemons @the_lazygal" are present.
this was my first semester so i’m still taking GE’s but next year I’m taking 4 major classes ! what was your favorite class this semester? 🏷️ #ratingclasses #fallsemester #college #collegeclass #collegetips #csmajor #csmajors #linguistics #computerscience #computersciencestude
sejal 🪷 💌

sejal 🪷 💌

3 likes

7 blockchain Data Structures
#crypto #blockchain #TechTips #technology #techjobs
Arn Hayes

Arn Hayes

4 likes

A graduate in a cap and gown throws their cap in the air in front of a modern building. The image has a red torn paper border and text overlay reads "Computer Science VS Computer Engineering Degree."
A decorative graphic with text explaining the focus of Computer Science (CS): software development, algorithms, and computational theory. The graphic includes botanical elements and the name Anjali Viramgama.
A decorative graphic with text outlining the core areas of Computer Science (CS): programming, data structures, algorithms, AI, machine learning, and software development methodologies. The graphic includes botanical elements and the name Anjali Viramgama.
Computer Science vs Computer Engineering Degree
Computer Science (CS) and Computer Engineering (CE) are related fields but differ in their focus and core areas of expertise: Computer Science (CS): 1. Focus: CS primarily deals with the theoretical and practical aspects of software development, algorithms, and computational theory. 2. Core
anjali.gama

anjali.gama

65 likes

A customized Canvas dashboard on a computer screen, featuring colorful class cards, a 'Tasks' sidebar with assignments, and a 'Write your notes here!!' section, demonstrating an aesthetic setup.
A computer screen shows the Canvas dashboard with a pop-up for selecting custom colors for a class card, highlighting a native Canvas feature for personalization.
The settings panel for the 'Better Canvas' Chrome extension is displayed, showing options like dark mode, card assignments, a better to-do list, and dashboard notes for enhanced Canvas customization.
How I Make Canvas Look Aesthetic 🥰
After 2 years of college I think I have finally mastered one thing... How to make my Canvas dashboard look super cute lol! Also sorry in advance to everyone who has to use blackboard :( I'll look for extensions for that soon! I use 2 Google Chrome extensions to do this: 🌸 Better Canvas
CompSkyy

CompSkyy

3311 likes

A smiling woman in a pink WGU hoodie stands outdoors with autumn leaves, with text stating she finished her WGU degree and advises viewers to act quickly.
A collage of money and study images with text promoting UPI Study as a free college "cheat code" for credits, mentioning prices and a 100% off code, and the phrase "financially free."
A WGU Bachelor of Science, Computer Science course list showing "Met" and "Not Met" statuses for various courses, overlaid with text about "Financial Freedom" versus "Student Debt Collector."
WGU: Western Governors University Students - this is for you!! Check out UPISTUDY free courses literally!! #degreehacking #upistudy #upistudy #sdkoo
Scarystories👻

Scarystories👻

1 like

A cozy desk setup with a laptop, open book, candles, and flowers, featuring the title 'MY FAVORITE FREE COURSES FOR DATA SCIENCE' in prominent white text. The image has a warm, inviting ambiance.
A pink pop-up window details the IBM: Python for Data Science, AI & Development course, highlighting learning Python logic, libraries like Pandas & Numpy, and earning a LinkedIn certificate upon completion.
A pink pop-up window describes FreeCodeCamp, recommending it for coding beginners due to its extensive resources like videos and articles that explain concepts in depth without using jargon.
my favorite FREE courses for data science 📈✨📚
I've been thinking of entering the data science field for some time, and especially in today's job market, it’s really helpful to have something that sets you apart from everyone else. Even if you're just thinking, these courses will give you an taste of what it’s like to study and work
may

may

383 likes

Free online classes
#onlinecourse #onlineclass #fyp #AskLemon8 #viral
Steph 🎀

Steph 🎀

500 likes

Roadmap to Learn C: Part 2
Acquiring knowledge in C serves as an excellent method to grasp the core principles of programming and computer systems. It's a foundational language used in various fields, including system programming, embedded systems, and game development. Here's part 2 of the roadmap to help you lea
anjali.gama

anjali.gama

37 likes

Statistics
#collegediary #lemon8contest #statistics #springterm Statistics homework notes
DragonflyChik79

DragonflyChik79

43 likes

A person on a balcony overlooking a scenic coastal town with white buildings and blue domes, with text overlay "DATA SCIENTIST What to study" and "AVERAGE SALARY - $140000".
Text overlay titled "1. Programming and Data Manipulation" listing Python, R, SQL, and Big Data Tools, set against a background of a modern balcony overlooking a coastal town.
Text overlay titled "2. Statistics and Mathematics" listing Linear Algebra, Probability and Statistics, and Calculus, set against a background of a coastal town with white buildings and the sea.
What to study to become a data scientist 🧑‍💻
1. Programming and Data Manipulation - Python: Learn libraries like Pandas, NumPy, and Scikit-learn for data manipulation and modeling. - R: Explore statistical analysis and visualization packages like ggplot2 and caret. - SQL: Master querying, managing, and manipulating structured data in relat
vedha | career tips (tech) 👩‍

vedha | career tips (tech) 👩‍

194 likes

A hand holds a navy blue graduation cap with an orange tassel and a '2023' charm, set against a window with blinds. The text 'I graduated with my Bachelor's what's next?' is overlaid, reflecting the post's theme of graduation and future plans.
A graduate in a cap and gown holds a diploma and flowers, posing with a friend at night. Both are smiling and pointing at each other, with the text 'Best Friend from Freshman year of HS' indicating their close bond.
A screenshot shows an application status page confirming acceptance into a Master of Science in Artificial Intelligence program for Spring 2024, with the nickname 'Tatyana' and a decision date of October 31, 2023.
I Graduated with my BS… what’s next?
this is a dream come true… beside my degree being useless. I graduated with a Bachelor’s degree in Biological sciences with a minor in computer science last Thursday. unfortunately, since i don’t have the full computer science degree/ experience it makes it pretty impossible to get a job in
Taty 🧚🏾‍♀️

Taty 🧚🏾‍♀️

445 likes

🚀 2025 AI Learning Roadmap: From Zero to Employmen
Hey everyone! 🌟 Here's a comprehensive AI learning roadmap to help you go from a beginner to a professional in the field of AI by 2025. Let's break it down into nine stages: ---- 1️⃣ Build Strong Foundations • Python: Master the basics of Python programming. • Data Processing: Learn l
Valder

Valder

877 likes

A desk setup with a laptop and monitor displaying a car, featuring the text "BECOME A DATA ANALYST" on the wall, illustrating a data analyst's workspace.
White buildings with blue domes overlooking the sea, overlaid with text listing free courses for learning data analysis tools and programming languages.
White buildings with blue domes overlooking the sea, with text detailing free courses to develop analytical and statistical skills for data analysis.
Data analyst - what to study? 👩‍💻📈
1. Learn Key Data Analysis Tools and Programming Languages • Tip: Master the core tools and languages that data analysts use. Excel, SQL, Python, and R are essential for data manipulation, analysis, and visualization. SQL is particularly important for querying databases, while Python
vedha | career tips (tech) 👩‍

vedha | career tips (tech) 👩‍

2558 likes

Thinking About Majoring in Data Science?
Here’s my honest take: it can be worth it… but only if you do it right. ✨ The good stuff: High demand = lots of job options Skills like Python & machine learning are super versatile Great pay if you land the right role 💀 The catch: Some programs are all theory, barely any hand
CompSkyy

CompSkyy

25 likes

school morning! #morning routine for school #schoolaesthetic #schoolroutine #collegelife
gyana ᥫ᭡

gyana ᥫ᭡

134 likes

A magnifying glass overlays financial charts, with text "STATISTIC 101 Normal Distribution" highlighted, indicating the topic of the article.
The image displays the probability density function formula for normal distribution, defining μ as the mean and σ as the standard deviation, summarizing key takeaways.
A normal distribution curve is shown with its formula, illustrating the 68-95-99.7 rule, where data percentages fall within one, two, and three standard deviations from the mean.
🎓Normal Distribution and Its Financial Application
Since we have covered basic statistical concepts like mean and standard deviation, we are well-equipped to learn the famous normal distribution. 📝Normal distribution, also known as Gaussian distribution, is one of the most important probability distributions in statistics.  It is bell-shaped
Capital&Crypto

Capital&Crypto

6 likes

A laptop, coffee mug, and notebook on a wooden desk, with an overlay text reading 'Free projects for Computer Science Majors', indicating resources for CS students.
A MacBook displaying the GeeksforGeeks website's 'Computer Science Projects' page, showing project ideas and trending topics for computer science students.
A MacBook displaying the UpGrad blog post titled '33 Best Computer Science Project Ideas & Topics For Beginners To Experts [Latest 2024]', offering project inspiration.
Free hands on projects for CS majors 👩‍💻
1. GeeksforGeeks – Computer Science Projects - I love browsing GeeksforGeeks because they provide a huge variety of project ideas, from simple web development to advanced machine learning. Each project comes with a step-by-step guide, which makes it super easy to dive in! 💻✨ https://www
vedha | career tips (tech) 👩‍

vedha | career tips (tech) 👩‍

157 likes

Huỳnh Lam Kim Cường

Huỳnh Lam Kim Cường

0 likes

A computer science major holding an electric guitar in a classroom, with text overlay 'PROJECTS I AM WORKING ON AS A COMPUTER SCIENCE MAJOR'.
A laptop displaying code for a card game interface project, alongside a water bottle, pen, and tablet with notes, reflecting the task of creating a card game.
A laptop screen showing 'Posit Cloud' with a 'Pokemon Project' in RStudio, described as a battle simulator app created using data sets.
PROJECTS I AM WORKING ON
I love my major, and if you want to talk to me about it I will gladly oblige! 💻 My goal is to become a game dev or an app dev! 👾 #Lemon8Diary #shareyourthoughts #healthylifestyle2024 #college #collegestudent #collegelife #computer #computerscience
LOLLIPOPAK

LOLLIPOPAK

41 likes

A young woman with long dark hair, wearing a pink satin shirt, smiles at the camera while sitting at a table. Overlay text reads: 'Tools and sites I use as a cybersecurity student to progress my skills and keep me interested in studying'.
A screenshot of 'The Hacker News' website, displaying various cybersecurity news articles from January 2025, including topics like vulnerabilities, malware, cyber espionage, and AI jailbreak methods. An ad for Zscaler and a banner for CIS Hardened Images are also visible.
A screenshot of the O'Reilly learning platform, showing various books and expert playlists related to AI, engineering, and data. Overlay text highlights the subscription cost ($50/month or $499/year) and its value for accessing books and live events.
Tools and sites I use as a cybersecurity student 🌸
#cybersecuritystudent #cybersecurity #techgirlie
LexiStudies

LexiStudies

113 likes

Mean, Median, Variance and Standard Deviation
Quantitative finance is deeply rooted in statistics. Mean, median, variance and standard deviation are the most fundamental concepts to bear in mind. The calculation is easily done by Python. 📝Mean The mean, often referred to as the average, is a fundamental statistical measure. It is calcula
Capital&Crypto

Capital&Crypto

4 likes

Data analyst - what to study? 📚
Becoming a data analyst requires mastering a mix of technical, analytical, and communication skills. Here are five essential areas to study: 1. Data Analysis Tools and Software - Excel: Learn advanced features like pivot tables, VLOOKUP, and data visualization. - SQL: Master database querying t
vedha | career tips (tech) 👩‍

vedha | career tips (tech) 👩‍

1508 likes

A smiling woman in a WGU hoodie stands outdoors, with text overlay stating WGU students graduate fast and don't pay for Study or Sophia, implying these resources are free.
A collage of money-related images with text promoting UPI Study as a free college 'cheat code' for obtaining 90 credits cheaply, using a discount code.
A partial WGU Computer Science course list showing completed and uncompleted courses, with text emphasizing flexing debt-free degrees over designer bags in 2025.
My biggest flex is graduating fast without paying for ton of courses #wgustudents #wgucybersecurity #upistudy #sdkoo
Scarystories👻

Scarystories👻

4 likes

learning databases. f I ne tun I ng my tech toolbo
</shy-sinister>

</shy-sinister>

0 likes

Types of databases
Databases are categorized into different types such as relational, document, columnar, wide-column, graph, key-value, object-oriented, multi-model, time-series, and vector databases, based on their design and use cases Here are different types of database examples 😎👇 #database #backend #sof
Learn Linux with Dan

Learn Linux with Dan

2 likes

Huỳnh Lam Kim Cường

Huỳnh Lam Kim Cường

0 likes

Well paying tech jobs 👩‍💻💰🤩
1. Software Engineer - $110,000 per year - Software engineers design, develop, and maintain software systems. They work on everything from apps to system-level software, utilizing languages such as Java, C++, and Python to create reliable and scalable applications. 2. Data Scientist
vedha | career tips (tech) 👩‍

vedha | career tips (tech) 👩‍

887 likes

Highest paying computer science jobs
Here's a detailed breakdown of each role in Computer Science as shown in the salary chart, along with insights into responsibilities and why the salaries may differ: 1. Web Designer ($61,188) Role: Web designers focus on the layout, visual design, and usability of websites. They ensure webs
Randy

Randy

12 likes

A CodeSignal certificate awarded to Cuong Lam Kim Huynh for completing the 'Sorting and Searching Algorithms in Python' course, part of the 'Mastering Algorithms and Data Structures in Python' learning path. The certificate, for General Programming and Algorithms, is dated December 28, 2024, and signed by Tigran Sloyan.
Huỳnh Lam Kim Cường

Huỳnh Lam Kim Cường

0 likes

The best website for data analytics 👩🏻‍💻📊
Tableau software is amazing!! And they have student license that gets you free access for a year. Get a free 1-year license using your school email!! Plus some extra perks like👇🏻 💻 Free access to Tableau Desktop & Tableau Prep 👩🏻‍🏫 Free access to Tableau eLearning 📝 20% off Tableau cert
studywithnali

studywithnali

1533 likes

A desk setup with a computer displaying a document, surrounded by cute stationery and decorations. An overlay reads "SWIPE TO VIEW Where to find the best research papers."
A screenshot of Google Scholar search results for "nutrition and productivity," showing various articles. Text below indicates it provides books, journal articles, and research papers from diverse databases.
A screenshot of the JSTOR website displaying search results for "design theory." Text below highlights it offers academic papers on history, literature, life sciences, and STEM.
🌸 best databases to find research papers
‧°𐐪♡𐑂°‧₊ ☁️ Whether you’re an academic or work in literature or research, here are 3 recommendations for databases that share a variety of research papers, journal articles, conference papers and more! 🌸 Google Scholar presents papers from all disciplines from various databases, but this may
peachiesuga ♡

peachiesuga ♡

124 likes

A laptop displaying code, with the title 'SKILLS NEEDED FOR DATA SCIENTISTS' in pink and white text, and 'SWIPE' with an arrow. It serves as the cover for a post about data science careers.
A laptop screen showing code, overlaid with a purple box listing key data scientist skills: statistical analysis, programming skills (Python, R, SQL), and machine learning algorithms and techniques.
A desk with a laptop, keyboard, plant, and coffee cup, featuring a brown box listing additional data scientist skills: collaboration, data visualization, and big data technologies (Hadoop, Spark, Flink).
Skills needed for Data Scientists
Hello everyone! Data science is a dynamic field that requires a diverse skill set. Proficiency in programming languages like Python and R is essential for data manipulation and analysis. Strong statistical knowledge and the ability to interpret data insights are also crucial. Familiarity with machi
Yun Jung

Yun Jung

38 likes

A spiral-bound notebook page illustrating a structured method for studying history, with sections for Title, Date, Important Events, Timeline, Consequences & Results, Important Figures, and Summary.
A spiral-bound notebook page demonstrating a study method for math, featuring sections for Title, Date, Formulas, Practice Questions, and Explanations.
A spiral-bound notebook page outlining a study approach for science, with designated areas for Title, Date, Methods, Key Terms, Equations, Main Notes, and Summary.
Notes structure for math, history, and science
#schoolorganization #school #noteideas #helpfultips
melanated_muslim

melanated_muslim

2640 likes

See more