Chinnayya Chinthabasics-networking.hashnode.dev·Dec 23, 2024Practical Applications of OSI and TCP/IP Models in Cloud ComputingPractical of OSI and TCP/IP in Cloud Computing 1. Application Layer (OSI Layer 7 / TCP/IP Application Layer) Function: Provides the interface for end-user applications to communicate over the network. Cloud Example: AWS: AWS Lambda, EC2, or ECS ru...tcp/ip-model
Fenisha KoladiyaforJoFleeblog.joflee.com·Sep 24, 2024How to Create Animations in FlutterFlutter animations are a way to make your app’s user interface more dynamic and engaging. They can help create smooth transitions, visual effects, and interactive elements that enhance the user experience. Here are some key points about Flutter anima...10 likes·69 readsFlutterFlutter
Daniel Rosehilldanielstechworld.com·Sep 10, 2024Example GPT Interaction: Stack Research Use-Case🖊️ Prompt Me: Hi ChatGPT! Today I would like to devise a system for capturing ChatGPT interactions in a standardized document-based format. Which is to say, I'd like to capture the prompts and the outputs and then format those into a PDF that could ...stack research
Romman Sabbirrommansabbir.com·Jun 28, 2024AndroidX : Mastering JetPack Lifecycle.The AndroidX Lifecycle library is part of Jetpack and helps manage the lifecycle of Android components like activities and fragments. It simplifies handling lifecycle events and makes our app's components lifecycle-aware. Key Components and Concepts ...255 readsAndroid Application Development#lifecycleinandroid
Shraddha Bandhakavishraddha361.hashnode.dev·Feb 6, 2024Find Command And Its UsageThe find command is used for searching for files and directories in the Linux command line. Find is one of the most powerful and frequently used commands. It is impossible for a sysadmin or software developer to avoid the find command while working i...FIND
Shraddha Bandhakavishraddha361.hashnode.dev·Feb 5, 2024Grep And Its MagicGrep in Linux is a very useful command-line utility used for searching data sets of specific files for lines that match regular expressions of plain texts. Grep stands for Global Regular Expression Print. In our daily routine of software development ...grep
Namya Shahbigsmoke.hashnode.dev·Dec 26, 2023Python Statistics ModuleFunctions for Statistical Calculations: statistics.mean(): Calculates the arithmetic mean of a sequence of numbers. statistics.median(): Calculates the median of a sequence of numbers. statistics.mode(): Calculates the mode of a sequence of number...harmonic mean
Elucian MoiseforProgramming Languagessagecode.hashnode.dev·Nov 19, 2023Dart: PracticeDartPad DartPad is an in-browser Dart code editor and compiler created by Google. It allows you to write and run Dart code directly in your web browser without needing to install any Dart tools. Some of the main features and use cases of DartPad are:...55 readsDart & FlutterDart
Ganesh Jaiwalblog.ganeshjaiwal.dev·Sep 24, 2023Javascript Functions: A Comprehensive GuideWelcome to our comprehensive guide on Javascript Functions. In this article, we will take an in-depth look at JavaScript functions, exploring both the traditional Vanilla JS and modern ES6 syntax. This guide is designed to cater to all levels of expe...10 likesJavaScript - Basics to AdvanceES6
Johnny Timejohnnytime.hashnode.dev·Apr 7, 2023DelegateCall in Solidity — With ExamplesDelegateCall Solidity DelegateCall is a unique feature in Solidity, which allows contract A to execute code in contract B with contract A storage, and the preserving the msg (msg.sender, msg.value, etc..). Today, we will discuss how DelegateCall work...Solidity