url
stringlengths
11
2.25k
text
stringlengths
88
50k
ts
timestamp[s]date
2026-01-13 08:47:33
2026-01-13 09:30:40
https://dev.to/listings
Listings have been removed - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://stackoverflow.com/questions?tab=Week
Most active questions - Stack Overflow Skip to main content Stack Overflow About Products For Teams Stack Internal Implement a knowledge platform layer to power your enterprise and AI tools. Stack Data Licensing Get access to top-class technical expertise with trusted & attributed content. Stack Ads Connect your brand to the world’s most trusted technologist communities. Releases Keep up-to-date on features we add to Stack Overflow and Stack Internal. About the company Visit the blog s-popover#show" data-s-popover-placement="bottom-start" /> Loading… current community Stack Overflow help chat Meta Stack Overflow your communities Sign up or log in to customize your list. more stack exchange communities company blog Log in Sign up Home Questions AI Assist Tags Challenges Chat Articles Users Companies Collectives Communities for your favorite technologies. Explore all Collectives Stack Internal Stack Overflow for Teams is now called Stack Internal . Bring the best of human thought and AI automation together at your work. Try for free Learn more Stack Internal Bring the best of human thought and AI automation together at your work. Learn more Collectives™ on Stack Overflow Find centralized, trusted content and collaborate around the technologies you use most. Learn more about Collectives Stack Internal Knowledge at work Bring the best of human thought and AI automation together at your work. Explore Stack Internal Most active questions Ask Question 1,436 questions from the last 7 days se-uql#toggleEditor"> Newest Active Bountied 12 Unanswered More Bountied 12 Unanswered Frequent Score Trending Week Month Unanswered (my tags) Filter Filter by No answers No upvoted or accepted answers No Staging Ground Has bounty Days old Sorted by Newest Recent activity Highest score Most frequent Bounty ending soon Trending Most activity Tagged with My watched tags The following tags: Apply filter Cancel 7 votes 2 answers 854 views Does a const qualifier inside a struct declaration do anything? struct foo { const int bar; }; struct foo { const int *bar; } Do the 2 const qualifiers have any role? c struct constants Puscas Raul 137 asked yesterday 6 votes 6 answers 213 views Extract selected data from multiple lines of text Here is the output of my curl command (print headers only): HTTP/1.1 200 OK Server: CacheHTTPd v1.0 Date: Thu, 08 Jan 2026 19:21:11 +0000 Content-Type: application/octet-stream Content-Length: ... bash curl awk sed Ramesh 61 asked Jan 8 at 20:31 Advice 4 votes 10 replies 126 views Why was Math.max(...) designed to only support comma separation? You can pass any number of elements to the Math.max(...) method in the parameter. For example, 4 elements: Math.max(10, 25, 7, 40); // returns 40 because 40 is the largest number The values ... javascript Simon 5,014 asked Jan 8 at 7:18 Tooling 5 votes 11 replies 123 views TailwindCSS for beginners How is good is TailwindCSS for programmers in their early web development journey? Does the usage exclusively fall into the somewhat experienced programmers or newbies can and should try it out? Or ... javascript html css tailwind-css Deepaansh Deepak Sial 1 asked Jan 8 at 12:56 5 votes 4 answers 273 views Efficiently generate all unique 4-integer ratios within a range up to scaling I want to generate all unique 4-integer combinations where each value is in a small range, for example 1–10, and two combinations are considered the same if one is a scaled version of the other. ... python algorithm combinatorics number-theory ksap 53 asked Jan 8 at 1:19 Advice 4 votes 9 replies 109 views Is there a practical application for a 25-bit integer adder, or is it likely an academic constraint? I am at the beginning of my journey learning FPGA design and I am currently working on a university project where we are characterizing different adder architectures in Verilog. Our specific ... verilog cpu-architecture fpga integer-arithmetic digital-logic Leonardo Castello 11 asked yesterday 4 votes 3 answers 346 views Why function must be defined with static when compiling I wanted to see what happens if I include the source file instead of the header file. main.c #include <stdio.h> #include "func.c" int main(void) { printf("%d\n", call());... c linker include definition static-functions Ralfs Vetra 43 asked Jan 7 at 12:13 Best practices 0 votes 10 replies 143 views Why is my JavaScript function not showing alert message? I am trying to show an alert when clicking a button. function showMessage() { alert("Button clicked"); } <button onclick="showMessage()">Click me</button> Nothing happens when I click ... javascript html MOHAMED AKRAM U 1 asked Jan 8 at 1:53 Best practices 4 votes 7 replies 118 views When would it be better to use nint over int? I've recently discovered that in C#9 a new types of nint and nuint were added. I understand that they are native-sized integers, meaning they'll be 32 or 64 bits depending on the system they are ... c# B.Griffin 555 asked Jan 8 at 9:35 5 votes 1 answer 177 views Should I use std::rethrow_exception rather than directly rethrowing it? In my code, I have something like: try { do_stuff(); } catch(my_exception_class& e) { if (not can_ignore_exception(e)) { throw(e); } log_or_do_nothing(e); } A static analyzer (... c++ c++11 exception idioms rethrow einpoklum 138k asked 2 days ago 2 votes 4 answers 171 views Making sure Enum prints as a number I'm trying to improve code readability, so when I find "magic numbers" in the code, I try to replace them with something more appropriate (Enums often made a good choice until this point.) ... c# enums string-interpolation Vladimirs Kacs 43 asked Jan 9 at 9:14 5 votes 5 answers 254 views How to use reduce() with gt to compute multiple summary statistics rows? I would like to add a summary rows on a gt table using aggregating functions. I am using weighted data and I need to compute the summary statistics with the appropriate weights columns. I am looking ... r purrr gt user32155803 53 asked Jan 7 at 10:05 Best practices 4 votes 5 replies 192 views Build/Automate Excel table with empty rows as separator Folks, I have an Excel table with the following structure: Category Product A Pencil A Eraser C PC A Calculator B Laptop A Paper C Mouse As first step I am sorting the table by category (using SORTBY()... excel excel-formula PMaier 654 asked Jan 7 at 15:52 1 vote 4 answers 175 views Is exit syscall invoked implicitly? Is exit syscall actually invoked even if it is not called by a library function explicitly in the case a program terminates correctly by reaching the return statement in the main function? c operating-system kernel Fabio 39 asked Jan 9 at 11:30 2 votes 5 answers 199 views How to create a type-deducing tuple with neither copyable nor movable members? The tuple itself is a class member #include <iostream> #include <tuple> template <typename T> struct S { S(const S&) = delete; S& operator=(const S&) = delete; S(S&&) = delete; S&... c++ stdtuple static-polymorphism Jackoo 555 asked Jan 9 at 5:20 Advice 0 votes 7 replies 68 views Which is more suitable in production environment, python zip vs enumerate? # version1 a = ["child", "car", "grave", "happy", "suprise"] for index, value in zip(range(len(a)), a): print("have more control") # ... python machine-learning GeezCircuit 1 asked Jan 9 at 13:49 2 votes 2 answers 166 views C++ hinnant date lib - not parsing string to date under Linux, works on Windows If I do: #include <chrono> #include "./date/date.h" #include "./date/tz.h" using UtcTime = std::chrono::time_point<std::chrono::system_clock>; UtcTime xParseRfc822(... c++ datetime c++20 c++-chrono Martin Perry 9,665 asked Jan 9 at 16:18 5 votes 4 answers 150 views Vectorise coincidences lookup between numpy arrays I am trying to check how many elements in one numpy array can be found, with a certain tolerance, inside another numpy array. For now I have been using a for loop to apply my comparison logic, however,... python arrays numpy Minivip89 53 asked Jan 7 at 13:21 7 votes 1 answer 660 views Code is not generating concentric circles I am drawing some 2D renders, and I tried to render the cosine of the distance as a color. What I expected was some concentric circles with the color oscillating once, but this does not do that. ... c math 2d stb-image drok 120 asked 2 days ago 4 votes 3 answers 207 views Triangulating matrices using LU decomposition method in C : Question about for loop optimization Matrices can be triangulated using less than ten lines of code in C, I have heard being said. But LU decomposition method needs to be used, instead of Cramer's rule. So, I was trying to do that. My ... c for-loop matrix triangulation uran42 509 asked Jan 7 at 17:51 Best practices 0 votes 12 replies 99 views How to Cover an N × N Square Room with the least Square Tiles? (could be reused) The problem is: Cover an N × N square room with square tiles (the tiles do not all need to be the same size) without overlapping, where the side length of each tile is integral and less than N. What ... c++ algorithm geometry tiling commonplace-brid 1 asked yesterday Best practices 1 vote 12 replies 101 views Avoid using OUTER APPLY in Query Employee table: Id Name 1 John 2 Peter Attendance table: Id EmployeeId DateTime 1 1 2026-01-10 09:00:00 2 1 2026-01-10 14:00:00 3 1 2026-01-10 15:00:00 This is my SQL query: SELECT E.Name, A.... sql sql-server greatest-n-per-group outer-apply Gulfam Ali 33 asked 2 days ago Advice 2 votes 6 replies 106 views My first programming exercises in College this is my first posting questions here in stackoverflow Machine Problem 1: Create a program to print your name on the screen. You may add some info. like Course etc.: Name: Juan Dela Cruz Course: ... c scythress 1 asked Jan 8 at 12:23 -3 votes 3 answers 273 views How accurate is the == function with floats with different decimals I am trying to solve a two unknowns equation using three loops. I have: K6 = (C1/j^2)*(sin(xs/j))/(xs) + (C2/j^2)*(cos(xs/j))/(xs) - (W*j^2/2)/(xs) – k7/(xs) K6 and K7 are my unknowns, all the other ... c floating-point rounding oriol 31 asked Jan 6 at 12:21 9 votes 1 answer 307 views constexpr initialisation of std::string from const char* with count According to cppreference, basic_string has a constructor: basic_string( const CharT* s, size_type count, const Allocator& alloc = Allocator() ); (6) (constexpr since C++20) ... c++ c++20 constexpr Olly 413 asked Jan 8 at 10:34 Advice 0 votes 12 replies 126 views Generate Regex based on Input String and also known output I have an input string like example/123/2457 and I know the expected output would be 2457. Is it possible based on the above information to generate a regex so when that would be applied on the input ... python regex anshuk_pal 311 asked Jan 6 at 12:02 -2 votes 1 answer 246 views Partial Specialization for range but not vector<bool> I have templatized class: template<typename T> class Exporter { void print(T const& value) { /* Print Each member of value recursively */ } }; But I also want it to work for ... c++ c++20 std-ranges Loki Astari 267k asked Jan 8 at 7:57 3 votes 3 answers 89 views -rpath-link=dir not able to locate the shared library In the main project there are 3 shared library sub-projects and one binary project. The shared library libb.so depends on liba.so and shared library libd.so depends on libb.so and lastly the binary op ... c++ makefile linker g++ linker-errors Harry 4,288 asked Jan 6 at 5:23 4 votes 2 answers 83 views How to prevent race condition in AWS DynamoDB and Lambda I have a pipeline where: Lambda A reads DynamoDB and publishes events to Kinesis Kinesis partitions events by key Lambda B consumes the stream and writes the latest record per key back to DynamoDB ... amazon-web-services algorithm aws-lambda amazon-dynamodb race-condition Yasin Türk 69 asked Jan 9 at 23:51 4 votes 3 answers 236 views Does the returned value from `std::steady_clock::now()` denote a point in global time of the program? Consider this example: #include <atomic> #include <chrono> #include <thread> uint64_t timestamp() { auto now = std::chrono::steady_clock::now().time_since_epoch(); return ... c++ multithreading language-lawyer atomic c++-chrono xmh0511 7,713 asked Jan 6 at 9:51 9 votes 2 answers 251 views Invalid directory left when CreateDirectory fails on bad path I'm using Directory.CreateDirectory(string path) to create a new directory and testing invalid paths. When running from an empty C:\code\test\net10.0\ folder, I execute: Directory.CreateDirectory(&... c# .net-core Paul 4,064 asked 21 hours ago Advice 1 vote 5 replies 126 views I want advice on "how to parse any file using python/java/c?" I came here to ask you all, should I build a parser to parse a file or use the inbuild libraries. In java, python we have libraries. But when it comes to other files how can we parse if there is no ... python java c GeezCircuit 1 asked yesterday 0 votes 3 answers 264 views How to avoid using import-csv for huge sized files? How to avoid using import-csv for huge sized files. Currently I am using System.IO.File . Can someone share some lights with clear understanding of Get-content vs System.IO.StreamReader. [System.IO.... powershell large-data streamreader import-csv Ranadip Dutta 10.8k asked Jan 7 at 20:23 0 votes 3 answers 113 views awk - "transpose-like" data transformation [closed] I have a slow bash script which I would like to replace with awk, if possible to achieve the following. The input file has 3 columns. Date, FQDN and a Label (low, mid, high) The Labels can be replaced ... bash awk zippy-flop 29 asked 2 days ago Best practices 0 votes 7 replies 73 views PHP form data not saving in MySQL database using mysqli I am working on a PHP project with MySQL. I am trying to save form data into the database, but the data is not inserting and no error is showing. What I expected: Data should be saved in the users ... php mysql mysqli Adesh Saxena 1 asked Jan 10 at 3:21 4 votes 1 answer 276 views std::memmove and std::memcpy requiring objects as source, according to cppreference According to cppreference documentation, std::memmove and std::memcpy would expect an object address as input, which will theoretically limit there usage with buffer obtained from C-like API (mmap, ... c++ language-lawyer lifetime memcpy memmove Oersted 4,008 asked Jan 6 at 17:49 3 votes 2 answers 94 views Shorthand to "reuse" object obtained from List? I have a line of code like so: return listOfObjects[Index].param1 == "test1" && listOfObjects[Index].param2 == "test2" ? listOfObjects[Index] : null; Instead of ... c# list CocoaMix86 157 asked 14 hours ago Best practices 2 votes 7 replies 143 views multiple threads write on common flag I did not find a clear answer to this question about multithreading. I have multiple threads working in parallel on their own data resulting on success / failure status. After a join point, main ... c multithreading Nicolas LAURENT 21 asked Jan 6 at 7:14 3 votes 2 answers 266 views Is there a function similar to `all.equal()` to compare a vector input to a single value? I know there are floating point inaccuracies that may lead to some unexpected results when comparing to double values, e.g. x <- 0.1 * 3 x == 0.3 #> [1] FALSE In this case, one could use all.... r bretauv 8,925 asked 2 days ago Best practices 0 votes 20 replies 127 views Explicit control of initialization & destruction of global variables I am working in an microcontroller / embedded environment which relies on global variables. Some of these global variables have non-trivial constructors and destructors, and suffers from the static ... c++ embedded c++23 marco9999 83 asked 2 days ago 2 votes 2 answers 173 views Switch separate argv character in separate function I am trying to check if passed argument is - and a letter afterwards but keep getting Segmentation fault (core dumped). Trying different things gets me the Default. void switch_argument (char const *... c YukiXXL 95 asked Jan 7 at 19:01 2 votes 1 answer 117 views Change width of two divs with same class ONLY if they are one right after the other I've several divs like this in my page: <div class="Text_part1">blablabla</div> <div class="img_container">Photo 1</div> <div class="Text_part2">blablabla</div> <... javascript html css michel spb2000 99 asked Jan 7 at 1:03 Best practices 3 votes 7 replies 91 views IEEE754 floating point to struct and vice versa I have started an own libc for the purpose of education and for further bare-metal projects. Now I want implement the math library (libm). For easier working with IEEE754 depending if the target ... c floating-point type-conversion ieee-754 Johannes Krottmayer 171 asked Jan 9 at 11:21 3 votes 2 answers 109 views How to compare a u16 variable with a u16 enum I'm reading data from a device, and I've setup an enum<u16> to catch the possible values: #[derive(Copy, Clone)] #[repr(u16)] pub enum Packets { StartCode = 0xEF01, CommandPacket = 0x01, ... rust Fransurbo 513 asked 2 days ago 0 votes 4 answers 167 views Delphi IDE shortcut key for cleaning project I know that I can press F9 to Compile/Run my project. Is there a shortcut key to Clean my project, or a way to set a shortcut key for this? I hate having to right click and select to Clean manually ... delphi keyboard-shortcuts delphi-ide delphi-13-florence user31362432 519 asked Jan 7 at 17:17 1 vote 1 answer 241 views Storing millions of 4-bit values (nibbles) - should I use macros or classes? [closed] I need to dynamically allocate around a million 4-bit data types. I tried defining a 1-byte uint8_t (8 bits) as 'word' and accessing its first 4 bits (low order word) and last 4 bits (high order word) ... c++ Sterticc 58 asked Jan 8 at 14:14 2 votes 3 answers 147 views Not finding Module in non child folder in Python I have a Python project in VS Code with this file structure: project src main.py __init__.py lib utils.py __init__.py The __init__.py files are empty. (Update: ... python visual-studio-code Joe 4,251 asked Jan 8 at 0:26 0 votes 3 answers 123 views How do I show text based on the button user clicked [closed] I am trying to change the text in my site based on the button that the user clicked. There is a total of 5 buttons. Here is my javascript: const choices = document.getElementsByClassName("choices&... javascript html css dom-manipulation Orges Hajzeraj 3 asked yesterday Advice 1 vote 6 replies 137 views Modulo implementaion Is there a better way to do this? I wanted to create an implementation of the modulo. def odd_even(num): elif num == -32768: return 'even' elif num == -32767: return '... python math Roman 1 asked Jan 7 at 19:52 Advice 0 votes 8 replies 104 views Technical insights on migrating from Vue 3 to React: Benefits in predictability and maintenance In my company, we are considering a full migration from Vue 3 to React for all our products, both those currently in production and those in development. Beyond the library's popularity, we want to ... reactjs typescript vuejs3 micro-frontend hexagonal-architecture Juan Pablo Spiatta 49 asked Jan 6 at 19:39 15 30 50 per page 1 2 3 4 5 … 29 Next The Overflow Blog Now everyone can chat on Stack Overflow Vibe code anything in a Hanselminute Featured on Meta A proposal for bringing back Community Promotion & Open Source Ads Community Asks Sprint Announcement – January 2026: Custom site-specific badges! Policy: Generative AI (e.g., ChatGPT) is banned Modernizing curation: A proposal for The Workshop and The Archive All users on Stack Overflow can now participate in chat Collectives see all AWS 37k Members Join A collective for developers who utilize Amazon Web Services' infrastructure and platform capabilities. The AWS Collective is organized and managed by the Stack Overflow community as a resource for developers. Mobile Development 27k Members Join A collective for developers who want to share their knowledge and learn more about mobile development practices and platforms PHP 17k Members Join A collective where developers working with PHP can learn and connect about the open source scripting language. Hot Network Questions I found a paper that basically covers my whole thesis Papers with a lot of references to Arxiv manuscripts Is the radius of this inscribed circle really equal to 2026? How to translate habebat in this sentence? AI-proof translation for four Chinese characters Short story - metal mice-like creatures (James 2:18b) Was James speaking facetiously to make a spiritual and practical pastoral point? SOQL FOR UPDATE: Will related records also be locked? Are the YouTube channel Courts & Crimes's shorts AI-generated deep fakes? Is the set of triangles formed by vertices of regular polygons dense in the set of all triangles? What does levelling up hands do, and how do I do it? What are some commonly taught inaccuracies in mathematics? Should we correct them? Which torture methods were used on Sam Lowry? A reformulation of lower bounds for R(k,k) via additive constraints in circulant 2-colorings — is this known? The book of James does not really allude to the Holy Spirit. (James 4:5 maybe.) Is this "lack" intentional for some reason? Is training with a coach whose students include a world champion worth it for a 10-year-old compared to FM/IM coaching? Detect ssh user@host vs ssh user@host <command> in PAM module during ssh auth Matrix row operation mental practice tool Why do some simple/early achievements have a very low unlock percentage? Invalid directory left when CreateDirectory fails on bad path The Four-Word Oracle How could accelerated human healing allow one person to survive wolfsbane poisoning while another dies in a Bronze Age–level setting? Manipulate within another Manipulate: How do I set the initial values of the control variables to reflect the inner Manipulate's last state? Where to get feedback on a math paper? more hot questions Stack Overflow Questions Help Chat Business Stack Internal Stack Data Licensing Stack Ads Company About Press Work Here Legal Privacy Policy Terms of Service Contact Us cookie-settings#toggle" class="s-btn s-btn__link py4 js-gps-track -link" data-gps-track="footer.click({ location: 3, link: 38 })" data-consent-popup-loader="footer"> Cookie Settings Cookie Policy Stack Exchange Network Technology Culture & recreation Life & arts Science Professional Business API Data Blog Facebook Twitter LinkedIn Instagram Site design / logo © 2026 Stack Exchange Inc; user contributions licensed under CC BY-SA . rev 2026.1.12.38533
2026-01-13T08:47:43
https://stuff.git-tower.com/
Tower Stuff Store Menu Cart Products 👕 T-Shirts 🖼 Posters ☕️ Mugs 💻 Stickers --- Tower Tower Stands with Ukraine Tech Animals Coding Wisdom Startup Posters History of Mac OS X May the Fork Be with You Tower Git Client My Account Continue Shopping Your Cart is Empty Products ▾ 👕 T-Shirts 🖼 Posters ☕️ Mugs 💻 Stickers --- Tower Tower Stands with Ukraine Tech Animals Coding Wisdom Startup Posters History of Mac OS X May the Fork Be with You Tower Git Client Cart DRESS CODE - FOR DEVELOPERS & DESIGNERS Posters - Most Popular Say goodbye to boring office walls and hello to motivation and fun. Get one of our  museum-quality posters: see all posters . + Quick Shop The Developer Manifesto from $20.00 $36.00 Sale The Developer Manifesto $20.00 $21.00 Coding is an Art. This poster is a constant reminder of this timeless truth. Hang it where you can see it... Museum-quality poster. Thick, durable, matte perfection. View full product details » 24×36" / green 24×36" / black 18×24" / green 18×24" / black 12×16" / green 12×16" / black Size 24×36" 18×24" 12×16" Color green black Qty Add to Cart + Quick Shop May the Fork Be with You from $26.00 May the Fork Be with You $26.00 May the Fork Be with You.Museum-quality poster. Thick, durable, matte perfection. View full product details » Size 18×24 24×36 Size 18×24 24×36 Qty Add to Cart + Quick Shop You Code for People, not Machines $26.00 You Code for People, not Machines $26.00 Size: 18x24 inches Museum-quality posters made on thick and durable matte paper. Add a wonderful accent to your room and office with these posters that are sure to brighten any environment.... View full product details » Qty Add to Cart + Quick Shop Firefox (Tech Animals) $21.00 Firefox (Tech Animals) $21.00 Size: 12x18 inches Museum-quality posters made on thick and durable matte paper. Add a wonderful accent to your room and office with these posters that are sure to brighten any... View full product details » Qty Add to Cart + Quick Shop The Startup Manifesto from $21.00 The Startup Manifesto $21.00 Running a business is an art. This poster is a constant reminder of this timeless truth. Hang it where you can see it... Museum-quality poster. Thick, durable, matte perfection. View full product details » 12×16" / green 12×16" / black 18×24" / green 18×24" / black 24×36" / green 24×36" / black Size 12×16" 18×24" 24×36" Color green black Qty Add to Cart + Quick Shop The History of macOS $26.00 The History of macOS $26.00 From the first "Mac OS 10.0" all the way to the present: a complete, wonderfully illustrated journey through Apple's "macOS"! Size: 24x36" Museum-quality poster. Thick, durable, matte perfection. View full product details » Qty Add to Cart T-Shirts - Most Popular All of our T-Shirts are high-quality products, either from American Apparel or Bella Canvas , smooth and soft to wear. See all shirts . + Quick Shop Tower T-Shirt - No. 6 $25.00 Tower T-Shirt - No. 6 $25.00 Color: Navy Quality: A high-quality American Apparel t-shirt, smooth and soft to wear. Made of fine jersey cotton and sweatshop-free in the USA.   View full product details » Size Guide Size S M L XL XXL XXXL Size S M L XL XXL XXXL Qty Add to Cart + Quick Shop May the Fork be with You $25.00 May the Fork be with You $25.00 Color: White Quality: A high-quality American Apparel t-shirt, smooth and soft to wear. Made of fine jersey cotton and sweatshop-free in the USA.   View full product details » Size Guide Size S M L XL XXL XXXL Size S M L XL XXL XXXL Qty Add to Cart + Quick Shop Mac OS X 10.4 - Tiger from $25.00 Mac OS X 10.4 - Tiger $25.00 Here's to a wonderful cat: Tiger, also known as Mac OS 10.4. Color: White Quality: A high-quality "Bella + Canvas" t-shirt that feels soft and light, with just the right amount... View full product details » Size S M L XL XXL XXXL Size S M L XL XXL XXXL Qty Add to Cart + Quick Shop Tower T-Shirt - Logo from $25.00 Tower T-Shirt - Logo $25.00 This t-shirt is everything you've dreamed of and more. It feels soft and lightweight, with the right amount of stretch. It's comfortable and flattering for both men and women. •... View full product details » Ash / S Ash / M Ash / L Ash / XL Ash / 2XL Ash / 3XL Athletic Heather / S Athletic Heather / M Athletic Heather / L Athletic Heather / XL Athletic Heather / 2XL Athletic Heather / 3XL Color Ash Athletic Heather Size S M L XL 2XL 3XL Qty Add to Cart + Quick Shop Coding is an Art! $25.00 Coding is an Art! $25.00 This t-shirt is everything you've dreamed of and more. It feels soft and lightweight, with the right amount of stretch. It's comfortable and flattering for both men and women. •... View full product details » Size S M L XL 2XL Size S M L XL 2XL Qty Add to Cart + Quick Shop Tower T-Shirt - No. 1 $25.00 Tower T-Shirt - No. 1 $25.00 Colors: Yellow or White Quality: A high-quality t-shirt that feels soft and light, with just the right amount of stretch. It's comfortable and the unisex cut is flattering for both men... View full product details » Size Guide S / White M / White L / White XL / White XL / Yellow S / Yellow L / Yellow M / Yellow XXL / White XXL / Yellow XXXL / White XXXL / Yellow Size S M L XL XXL XXXL Color White Yellow Qty Add to Cart + Quick Shop Swift (Tech Animals) Men $25.00 Swift (Tech Animals) Men $25.00 This t-shirt is everything you've dreamed of and more. It feels soft and lightweight, with the right amount of stretch. It's comfortable and flattering for both men and women. •... View full product details » White / S White / M White / L White / XL White / 2XL Ash / S Ash / M Ash / L Ash / XL Ash / 2XL Color White Ash Size S M L XL 2XL Qty Add to Cart + Quick Shop Mac OS X 10.6 - Snow Leopard from $25.00 Mac OS X 10.6 - Snow Leopard $25.00 Here's to a wonderful cat: Snow Leopard, also known as Mac OS 10.6. Color: White Quality: A high-quality "Bella + Canvas" t-shirt that feels soft and light, with just the right... View full product details » Size S M L XL XXL XXXL Size S M L XL XXL XXXL Qty Add to Cart + Quick Shop Linux (Tech Animals) Men $25.00 Linux (Tech Animals) Men $25.00 This t-shirt is everything you've dreamed of and more. It feels soft and lightweight, with the right amount of stretch. It's comfortable and flattering for both men and women. •... View full product details » White / S White / M White / L White / XL White / 2XL Ash / S Ash / M Ash / L Ash / XL Ash / 2XL Color White Ash Size S M L XL 2XL Qty Add to Cart + Quick Shop Tower 10 for Mac $25.00 Tower 10 for Mac $25.00 The 100% cotton men's classic tee will help you land a more structured look. It sits nicely, maintains sharp lines around the edges, and goes perfectly with layered streetwear outfits.... View full product details » Navy / S Navy / M Navy / L Navy / XL Navy / 2XL Carolina Blue / S Carolina Blue / M Carolina Blue / L Carolina Blue / XL Carolina Blue / 2XL Sky / S Sky / M Sky / L Sky / XL Sky / 2XL Ash / S Ash / M Ash / L Ash / XL Ash / 2XL Color Navy Carolina Blue Sky Ash Size S M L XL 2XL Qty Add to Cart Products Posters T-Shirts Mugs Stickers About Shipping and Returns Terms of Service Privacy Policy Contact About Tower As the makers of Tower , the best Git client for Mac and Windows, we help over 100,000 users in companies like Apple, Google, and Amazon get the most out of Git. © 2026 Tower Stuff Store . Imprint. X
2026-01-13T08:47:43
https://privacy.x.com/en/ccpa
CCPA Skip to main content Privacy <path opacity="0" d="M0 0h24v24H0z" /> <path d="M17.207 11.293l-7.5-7.5c-.39-.39-1.023-.39-1.414 0s-.39 1.023 0 1.414L15.086 12l-6.793 6.793c-.39.39-.39 1.023 0 1.414.195.195.45.293.707.293s.512-.098.707-.293l7.5-7.5c.39-.39.39-1.023 0-1.414z" /> </svg>" data-icon-arrow-left="<svg width="28px" height="28px" viewbox="0 0 28 28" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="none" class="twtr-icon u01b__icon-arrow-left"> <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round"> <g transform="translate(-1216.000000, -298.000000)" stroke-width="2.25"> <g transform="translate(1200.000000, 282.000000)"> <g transform="translate(17.000000, 17.000000)"> <path d="M0.756410256,12.8589744 L25.7179487,12.8589744"></path> <path d="M13.2371795,25.3397436 L25.7179487,12.8589744"></path> <path d="M13.2371795,12.4807692 L25.3397436,0.378205128" transform="translate(19.288462, 6.429487) rotate(-90.000000) translate(-19.288462, -6.429487) "></path> </g> </g> </g> </g> </svg>" data-icon-chevron-down="<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" aria-hidden="true" focusable="false" role="none" class="twtr-icon"> <path opacity="0" d="M0 0h24v24H0z" /> <path d="M20.207 7.043c-.39-.39-1.023-.39-1.414 0L12 13.836 5.207 7.043c-.39-.39-1.023-.39-1.414 0s-.39 1.023 0 1.414l7.5 7.5c.195.195.45.293.707.293s.512-.098.707-.293l7.5-7.5c.39-.39.39-1.023 0-1.414z" /> </svg>" data-icon-close="<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewbox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve" aria-hidden="true" focusable="false" role="none" class="twtr-icon--md"> <g> <g> <defs> <rect id="SVGID_1_" x="-468" y="-1360" width="1440" height="3027" /> </defs> <clippath id="SVGID_2_"> <use xlink:href="#SVGID_1_" style="overflow:visible;" /> </clippath> </g> </g> <rect x="-468" y="-1360" class="st0" width="1440" height="3027" style="fill:rgb(0,0,0,0);stroke-width:3;stroke:rgb(0,0,0)" /> <path d="M13.4,12l5.8-5.8c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0L12,10.6L6.2,4.8c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4 l5.8,5.8l-5.8,5.8c-0.4,0.4-0.4,1,0,1.4c0.2,0.2,0.4,0.3,0.7,0.3s0.5-0.1,0.7-0.3l5.8-5.8l5.8,5.8c0.2,0.2,0.5,0.3,0.7,0.3 s0.5-0.1,0.7-0.3c0.4-0.4,0.4-1,0-1.4L13.4,12z" /> </svg>" data-icon-search="<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" aria-hidden="true" focusable="false" role="none" class="twtr-icon"> <path opacity="0" d="M0 0h24v24H0z" /> <path d="M22.06 19.94l-3.73-3.73C19.38 14.737 20 12.942 20 11c0-4.97-4.03-9-9-9s-9 4.03-9 9 4.03 9 9 9c1.943 0 3.738-.622 5.21-1.67l3.73 3.73c.292.294.676.44 1.06.44s.768-.146 1.06-.44c.586-.585.586-1.535 0-2.12zM11 17c-3.308 0-6-2.692-6-6s2.692-6 6-6 6 2.692 6 6-2.692 6-6 6z" /> </svg>" data-icon-search-submit="<svg width="21" height="21" viewbox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="none" class="twtr-icon"> <path fill-rule="evenodd" clip-rule="evenodd" d="M16.33 14.21L20.06 17.94C20.646 18.525 20.646 19.475 20.06 20.06C19.768 20.354 19.384 20.5 19 20.5C18.616 20.5 18.232 20.354 17.94 20.06L14.21 16.33C12.738 17.378 10.943 18 9 18C4.03 18 0 13.97 0 9C0 4.03 4.03 0 9 0C13.97 0 18 4.03 18 9C18 10.942 17.38 12.737 16.33 14.21ZM3 9C3 12.308 5.692 15 9 15C12.308 15 15 12.308 15 9C15 5.692 12.308 3 9 3C5.692 3 3 5.692 3 9Z" fill="white" /> </svg>" data-bg-color="white-neutral" data-root-page-title="Privacy" data-search-placeholder="Search" data-search-page="https://privacy.x.com/en/search" data-search-query-key="q" data-search-query-type="?" data-scribe-element="V6UV" data-scribe-section="u01b-navigation" data-cta-enabled="true" data-cta-link-new-tab="false"> Welcome to X’s CCPA Center The California Consumer Privacy Act of 2018 (CCPA) , which grants California residents new rights with respect to the collection and sale of their personal information, will go into effect on January 1, 2020.  To learn more about the CCPA and how it impacts people, you can visit California Attorney General CCPA homepage . X’s approach to CCPA X believes that everyone who uses our services, wherever they may reside, should understand and have meaningful controls over what data we collect about them, how it is used, and when it is shared.  X’s approach to the CCPA is no different. We have made some updates to our Privacy Policy which will go into effect on January 1, 2020. You can find out more detail about these updates in this blog post . These updates are designed to help people understand how we work to give them transparency and tools to ensure they have meaningful controls over what data we collect about them, how it is used, and when it is shared.  You can read our CCPA ready  Data Processing Addendum (DPA) . Read our FAQs below, which include more details on CCPA. CCPA Metrics Report X believes that everyone who uses our services, wherever they may reside, should understand and have meaningful controls over what data we collect about them, how it is used, and when it is shared.  As described in X’s Privacy Policy and our X Privacy Center , we provide our users with a variety of tools to exercise their privacy rights and change their privacy settings whenever they want.  Listed below are aggregate CCPA metrics for 2024.  CCPA 2024 Transparency Report Metrics Request Type Number of Requests Average Days to Respond Requests Completed Requests Denied Request Type Download an Archive of your X data via X Settings * Number of Requests 373,862 Average Days to Respond 1 Requests Completed 373,862 Requests Denied 0 Request Type Deactivation of Account via X Settings * Number of Requests 18,211 Average Days to Respond 1 Requests Completed 18,211 Requests Denied 0 Request Type Requests to Correct (via contacting X privacy team**) Number of Requests 0 Average Days to Respond 0 Requests Completed 0 Requests Denied 0 Request Type Requests to Delete (via contacting X privacy team**) Number of Requests 44 Average Days to Respond 27 Requests Completed 44 Requests Denied 0 Request Type Requests to Know (via contacting X privacy team**) Number of Requests 18 Average Days to Respond 12 Requests Completed 11 Requests Denied 1***   * Data for U.S.-based users ** Data for users identifying themselves as California residents *** The request was not verifiable based on the information provided General FAQ Visit page Advertiser FAQ Visit page Developers FAQ Visit page © 2026 X Corp. Cookies Privacy Terms and conditions English Privacy English Deutsch Español Français 日本語 Русский 한국어 Italiano Português Nederlands Did someone say … cookies? X and its partners use cookies to provide you with a better, safer and faster service and to support our business. Some cookies are necessary to use our services, improve our services, and make sure they work properly. Show more about your choices . Accept all cookies Refuse non-essential cookies
2026-01-13T08:47:43
https://dev.to/ngxp/s3e5-shai-rezniks-adventures-into-software-development-improv-testing-and-public-speaking-devlife
S3E5 | Shai Rezniks Adventures into Software Development - Improv, Testing, and Public Speaking | Dev.Life - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Angular Experience Follow S3E5 | Shai Rezniks Adventures into Software Development - Improv, Testing, and Public Speaking | Dev.Life Oct 10 '22 play How do you go from software development to becoming a sought after edutainer, speaker, and the “King of Testing”? Well, sit down, grab a drink, and get comfy as we go live from ng-conf 2022 for an exclusive behind-the-scenes look into how Shai Reznik from HiRez.io achieved all these accomplishments and more. Shai opens up with some intimate stories (and a bit of Israeli rap) about his developer journey and how, not unlike everyone else, he’s had to face barriers like imposter syndrome, perfectionism, panic attacks, and yes, even bugs! LINKS: https://www.hirez.io/ https://www.youtube.com/watch?v=ufHfs67xtXg https://www.youtube.com/watch?v=iCPa_Rws_iA https://www.youtube.com/watch?v=yp8OTXf4BAc CONNECT WITH US: Shai Reznik @hirez_io Brooke Avery @JediBravery Erik Slack @erik_slack Episode source Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Your browser does not support the audio element. 1x initializing... × 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://dev.to/adventures_in_ml/lyfts-ml-infrastructure-journey-ml-139
Lyft's ML Infrastructure Journey - ML 139 - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Adventures in Machine Learning Follow Lyft's ML Infrastructure Journey - ML 139 Jan 18 '24 play Konstantin Gizdarski and Jonas Timmermann are software engineers at Lyft. They dive deep into the world of machine learning and engineering at Lyft. Join them as they explore the challenges and successes of implementing reinforcement learning, contextual bandits, and advanced AI technologies in a real-world business environment. Learn about the collaborative engineering culture at Lyft, the development of new ML capabilities, and the unique approaches to infrastructure and model deployment. Listen in as industry experts share their insights on accelerating decision-making processes, simplifying tools for end users, and finding innovative solutions to common engineering challenges. Sponsors Chuck's Resume Template Developer Book Club starting Become a Top 1% Dev with a Top End Devs Membership Socials LinkedIn: Konstantin Gizdarski LinkedIn: Jonas Timmermann Advertising Inquiries: https://redcircle.com/brands Privacy & Opt-Out: https://redcircle.com/privacy Episode source Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Your browser does not support the audio element. 1x initializing... × 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://forem.com/datalaria
Datalaria - Forem Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Follow Organization actions Datalaria Digital Logbook: Data, AI, Tech, and the Industry. Joined Joined on  Dec 6, 2025 Twitter logo GitHub logo External link icon Meet the team Post 36 posts published Member 1 member Weather Service Project (Part 2): Building the Interactive Frontend with GitHub Pages or Netlify and JavaScript Daniel Daniel Daniel Follow Jan 13 Weather Service Project (Part 2): Building the Interactive Frontend with GitHub Pages or Netlify and JavaScript # frontend # javascript # tutorial # webdev Comments Add Comment 6 min read Proyecto Weather Service (Parte 2): Construyendo el Frontend Interactivo con GitHub Pages o Netlify y JavaScript Daniel Daniel Daniel Follow Jan 13 Proyecto Weather Service (Parte 2): Construyendo el Frontend Interactivo con GitHub Pages o Netlify y JavaScript # frontend # javascript # spanish # tutorial Comments Add Comment 7 min read Weather Service Project (Part 1): Building the Data Collector with Python and GitHub Actions or Netlify Daniel Daniel Daniel Follow Jan 12 Weather Service Project (Part 1): Building the Data Collector with Python and GitHub Actions or Netlify # api # automation # python # tutorial 3  reactions Comments Add Comment 9 min read Proyecto Weather Service (Parte 1): Construyendo el Recolector de Datos con Python y GitHub Actions o Netlify Daniel Daniel Daniel Follow Jan 12 Proyecto Weather Service (Parte 1): Construyendo el Recolector de Datos con Python y GitHub Actions o Netlify # dataengineering # python # spanish # tutorial 1  reaction Comments Add Comment 10 min read Carto: De una Factura a la ONU a Conquistar la Nube Geoespacial Daniel Daniel Daniel Follow Jan 11 Carto: De una Factura a la ONU a Conquistar la Nube Geoespacial # startup # cloud # datascience # spanish Comments 1  comment 5 min read Carto: From a UN Invoice to Conquering the Geospatial Cloud Daniel Daniel Daniel Follow Jan 11 Carto: From a UN Invoice to Conquering the Geospatial Cloud # cloud # datascience # startup Comments Add Comment 4 min read AI-Powered Programming: Creating My Own Magical Flashcards Study App Daniel Daniel Daniel Follow Jan 10 AI-Powered Programming: Creating My Own Magical Flashcards Study App # showdev # ai # programming 5  reactions Comments 2  comments 5 min read Programando con IA: Creando mi Propia App mágica de Flashcards para Estudiar Daniel Daniel Daniel Follow Jan 10 Programando con IA: Creando mi Propia App mágica de Flashcards para Estudiar # showdev # ai # programming # spanish Comments Add Comment 5 min read loading... 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — Your community HQ Home About Contact Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a blogging-forward open source social network where we learn from one another Log in Create account
2026-01-13T08:47:43
https://forem.com/t/react#main-content
React - Forem Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close React Follow Hide Official tag for Facebook's React JavaScript library for building user interfaces Create Post submission guidelines 1️⃣ Post Facebook's React ⚛ related posts/questions/discussion topics here~ 2️⃣ There are no silly posts or questions as we all learn from each other👩‍🎓👨‍🎓 3️⃣ Adhere to dev.to 👩‍💻👨‍💻 Code of Conduct about #react React is a declarative, component-based library, you can learn once, and write anywhere Editor Guide Check out this Editor Guide or this post to learn how to add code syntax highlights, embed CodeSandbox/Codepen, etc Official Documentations & Source Docs Tutorial Community Blog Source code on GitHub Improving Your Chances for a Reply by putting a minimal example to either JSFiddle , Code Sandbox , or StackBlitz . Describe what you want it to do, and things you've tried. Don't just post big blocks of code! Where else to ask questions StackOverflow tagged with [reactjs] Beginner's Thread / Easy Questions (Jan 2020) on r/reactjs subreddit. Note: a new "Beginner's Thread" created as sticky post on the first day of each month Learn in Public Don't afraid to post an article or being wrong. Learn in public . Older #react posts 1 2 3 4 5 6 7 8 9 … 75 … 1772 Posts Left menu 👋 Sign in for the ability to sort posts by relevant , latest , or top . Right menu How I built a "Magic Move" animation engine for Excalidraw from scratch published Behram Behram Behram Follow Jan 12 How I built a "Magic Move" animation engine for Excalidraw from scratch published # react # animation # webdev # opensource 9  reactions Comments 3  comments 3 min read SmoothUI: 40+ Animated React Components with Motion jQueryScript jQueryScript jQueryScript Follow Jan 13 SmoothUI: 40+ Animated React Components with Motion # webdev # tailwindcss # react Comments Add Comment 1 min read Advancing with React: Hooks Deep Dive! (React Day 5) Vasu Ghanta Vasu Ghanta Vasu Ghanta Follow Jan 13 Advancing with React: Hooks Deep Dive! (React Day 5) # react # webdev # programming # javascript 1  reaction Comments Add Comment 5 min read Building a Production-Ready Portfolio: Phase-2 — Frontend Bootstrapping & Architecture Setup Sushant Gaurav Sushant Gaurav Sushant Gaurav Follow Jan 13 Building a Production-Ready Portfolio: Phase-2 — Frontend Bootstrapping & Architecture Setup # programming # python # react # webdev Comments Add Comment 5 min read I built a Meme Creator to roast my own Spaghetti Code (No watermarks, no BS, free!) Brian Zavala Brian Zavala Brian Zavala Follow Jan 13 I built a Meme Creator to roast my own Spaghetti Code (No watermarks, no BS, free!) # showdev # webdev # watercooler # react Comments Add Comment 1 min read TWD Tip: Stub Auth0 Hooks and Mock React Modules Kevin Julián Martínez Escobar Kevin Julián Martínez Escobar Kevin Julián Martínez Escobar Follow Jan 12 TWD Tip: Stub Auth0 Hooks and Mock React Modules # webdev # testing # react # twd Comments Add Comment 3 min read Micro-Interactions Explained: How Tiny UI Details Create Massive UX Gains Parth G Parth G Parth G Follow Jan 13 Micro-Interactions Explained: How Tiny UI Details Create Massive UX Gains # react # ux # frontend # webdev 1  reaction Comments 1  comment 4 min read Modernizing my Portfolio: From Vanilla PHP to Next.js (and why my server thought I was DDOSing it) Hendrik Haustein Hendrik Haustein Hendrik Haustein Follow Jan 12 Modernizing my Portfolio: From Vanilla PHP to Next.js (and why my server thought I was DDOSing it) # webdev # nextjs # react # germandev Comments Add Comment 4 min read I made a Meme Creator because I hate watermarks Brian Zavala Brian Zavala Brian Zavala Follow Jan 13 I made a Meme Creator because I hate watermarks # opensource # react # webdev # javascript Comments Add Comment 3 min read I built a spatial 3D knowledge graph with React Three Fiber & Gemini AI 🌌 DewTM DewTM DewTM Follow Jan 12 I built a spatial 3D knowledge graph with React Three Fiber & Gemini AI 🌌 # showdev # react # threejs # javascript Comments Add Comment 1 min read Solana Passkeys on the Web (No Extension Required) Fred Fred Fred Follow Jan 12 Solana Passkeys on the Web (No Extension Required) # react # security # tutorial # web3 Comments Add Comment 2 min read I Built a Smarter SEO Layer for React — Here’s Why Sravesh Nandan Sravesh Nandan Sravesh Nandan Follow Jan 10 I Built a Smarter SEO Layer for React — Here’s Why # webdev # react # seo # javascript 1  reaction Comments Add Comment 4 min read No Kotlin? No Problem. How I shipped Android Apps using React & Capacitor Krystian Krystian Krystian Follow Jan 12 No Kotlin? No Problem. How I shipped Android Apps using React & Capacitor # webdev # android # mobile # react Comments Add Comment 2 min read Why Next.js Is Better Than Plain React for Modern Web Development Farhad Rahimi Klie Farhad Rahimi Klie Farhad Rahimi Klie Follow Jan 13 Why Next.js Is Better Than Plain React for Modern Web Development # nextjs # react # webdev # performance Comments Add Comment 3 min read Complete Guide: Deploying a Laravel + React Application on Kubernetes with Minikube Vishwa Pratap Singh Vishwa Pratap Singh Vishwa Pratap Singh Follow Jan 12 Complete Guide: Deploying a Laravel + React Application on Kubernetes with Minikube # kubernetes # docker # laravel # react 1  reaction Comments Add Comment 8 min read Week 14 – Custom Hooks, Finishing usePopcorn, and Learning How to Design Code Usama Usama Usama Follow Jan 12 Week 14 – Custom Hooks, Finishing usePopcorn, and Learning How to Design Code # react # frontend # javascript # webdev 3  reactions Comments Add Comment 2 min read State Management Simplified: Choosing Between Zustand and Redux for Health Apps wellallyTech wellallyTech wellallyTech Follow Jan 13 State Management Simplified: Choosing Between Zustand and Redux for Health Apps # javascript # architecture # reactnative # react Comments Add Comment 2 min read 🚀 AI Article Summarizer | Fast & Clean AI-Powered Summary Tool Built with Next.js Reactjs Guru Reactjs Guru Reactjs Guru Follow Jan 12 🚀 AI Article Summarizer | Fast & Clean AI-Powered Summary Tool Built with Next.js # nextjs # ai # react # opensource Comments Add Comment 1 min read Building Interactive Data Tables with React Data Grid Michael Turner Michael Turner Michael Turner Follow Jan 12 Building Interactive Data Tables with React Data Grid # react # webdev # beginners # tutorial Comments Add Comment 7 min read React + TypeScript: The Patterns That Actually Matter Tarun Moorjani Tarun Moorjani Tarun Moorjani Follow Jan 12 React + TypeScript: The Patterns That Actually Matter # typescript # react # programming # javascript 1  reaction Comments Add Comment 8 min read Mathematical Audit of Excalidraw: Finding "Logic Echoes" via Linear Algebra Petar Liovic Petar Liovic Petar Liovic Follow Jan 12 Mathematical Audit of Excalidraw: Finding "Logic Echoes" via Linear Algebra # architecture # computerscience # react # tooling 1  reaction Comments Add Comment 3 min read Getting Started with Mantine DataTable in React: Building Your First Data Table Michael Turner Michael Turner Michael Turner Follow Jan 12 Getting Started with Mantine DataTable in React: Building Your First Data Table # react # tutorial # programming Comments Add Comment 5 min read Advanced Spreadsheet Implementation with RevoGrid in React Michael Turner Michael Turner Michael Turner Follow Jan 12 Advanced Spreadsheet Implementation with RevoGrid in React # react # webdev # beginners # tutorial Comments Add Comment 6 min read Building Feature-Rich Data Tables with jQWidgets React Grid Michael Turner Michael Turner Michael Turner Follow Jan 12 Building Feature-Rich Data Tables with jQWidgets React Grid # react # webdev # javascript # beginners Comments Add Comment 6 min read Getting Started with ReactGrid in React: Building Your First Spreadsheet Michael Turner Michael Turner Michael Turner Follow Jan 12 Getting Started with ReactGrid in React: Building Your First Spreadsheet # react # webdev # javascript # tutorial Comments Add Comment 5 min read loading... trending guides/resources Composition in React: Building like a Senior React Dev 🎉 Black Friday & Cyber Monday 2025: The Best Deals for JavaScript Developers 🚀 How to Build a Full-Stack App With TanStack Start and MongoDB Turbopack: A Better Way to Inline SVG in Next.js 16 How to Build Multi-Language React Apps with Internationalization (i18n) When React Starts Acting Like jQuery (and You Can Totally Tell 😅) I Built a Curl Command Generator App with React Lessons from React2Shell React2Shell: The Critical RCE Vulnerability Every Next.js Developer Must Address Now Reatom: State Management That Grows With You The Worst Thing to Happen to React and Next.js: React2Shell !!!!!! Critical React2Shell Vulnerability Exposes Millions of Web Apps to Remote Takeover !!!!!! Next.js Server Actions vs API Routes: Don’t Build Your App Until You Read This Fix React Chunk Load Errors Fast (2025 Guide) Masonry Grid: A 1.4 kB Library That Actually Works Stop Struggling with Maps in React Native — Here’s the Complete Guide # I Built an Apple-Style Glassmorphism React Component Library 🚀 Build an award Winning 3D Website with scroll-based animations | Next.js, three.js & GSAP ⚠️ Critical RCE Vulnerability in React Server Components (CVSS 10.0) React 19.2: React in its sigma era 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — Your community HQ Home About Contact Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a blogging-forward open source social network where we learn from one another Log in Create account
2026-01-13T08:47:43
https://stackoverflow.com/questions/tagged/protocol-buffers
Newest 'protocol-buffers' Questions - Stack Overflow Skip to main content Stack Overflow About Products For Teams Stack Internal Implement a knowledge platform layer to power your enterprise and AI tools. Stack Data Licensing Get access to top-class technical expertise with trusted & attributed content. Stack Ads Connect your brand to the world’s most trusted technologist communities. Releases Keep up-to-date on features we add to Stack Overflow and Stack Internal. About the company Visit the blog s-popover#show" data-s-popover-placement="bottom-start" /> Loading… current community Stack Overflow help chat Meta Stack Overflow your communities Sign up or log in to customize your list. more stack exchange communities company blog Log in Sign up Home Questions AI Assist Tags Challenges Chat Articles Users Companies Collectives Communities for your favorite technologies. Explore all Collectives Stack Internal Stack Overflow for Teams is now called Stack Internal . Bring the best of human thought and AI automation together at your work. Try for free Learn more Stack Internal Bring the best of human thought and AI automation together at your work. Learn more Collectives™ on Stack Overflow Find centralized, trusted content and collaborate around the technologies you use most. Learn more about Collectives Stack Internal Knowledge at work Bring the best of human thought and AI automation together at your work. Explore Stack Internal 8,439 questions se-uql#toggleEditor"> Newest Active Bountied Unanswered More Bountied 0 Unanswered Frequent Score Trending Week Month Unanswered (my tags) Filter Filter by No answers No upvoted or accepted answers No Staging Ground Has bounty Days old Sorted by Newest Recent activity Highest score Most frequent Bounty ending soon Trending Most activity Tagged with My watched tags The following tags: Apply filter Cancel 0 votes 0 answers 4 views Proto encoding for message with packed repeated elements Quite new to protobuf so hope the question isn't too basic. Can someone please help explain the example that is used in https://protobuf.dev/programming-guides/encoding/ repeated elements which I can'... encoding protocol-buffers proto3 packed Atilla Mete Turedi 1 asked 2 mins ago Advice 1 vote 0 replies 89 views Google gnostic: protoc-gen-openapi I want to know if the protoc-gen-openapi plugin understands and processes annotations as in annotations.proto. I want to use the custom options defined in that annotations.proto file as annotations on ... protocol-buffers protoc protoc-gen-openapiv2 shrekish 39 asked Oct 31, 2025 at 17:54 1 vote 1 answer 112 views How to make google.protobuf.Timestamp required? I am using Typescript, Google Protobuf and library "ts-proto": "^2.7.7", to generate ts types and use their encode/decode methods. I have a message like message DummyDraft { ... typescript protocol-buffers ts-proto Kristi Jorgji 1,979 asked Oct 21, 2025 at 9:10 0 votes 0 answers 64 views Protobuf FieldMask doesn't accept * syntax for repeated field masking I have a protobuf message with a repeated field: message TestRepeatedMask { repeated Inner inner_message = 1; message Inner { optional string first = 1; optional string second = 2; } } ... java protocol-buffers Ran Lottem 1 asked Oct 15, 2025 at 6:23 2 votes 2 answers 140 views Unable to generate code for proto files that use import I have been using .proto files without any issue with C# and Java. I have more than hundred proto files spread across a folder hierarchy. I can compile in Visual Studio and in JetBrains IntelliJ Idea. ... python protocol-buffers grpc grpc-python saka 43 asked Sep 9, 2025 at 7:43 0 votes 0 answers 57 views supabase postgis tile server and javascript decoding base64 encoded data I was trying to serve vector tiles on the fly using an rpc function in superbase but somehow when the responce arrives in the front end using a custom protocol. the vector tiles are not displayed. ... protocol-buffers supabase supabase-database supabase-js Nuwe Ariho 1 asked Sep 6, 2025 at 8:43 4 votes 3 answers 503 views Backward and forward compatibility issues with protobufs in Google Pub/Sub We use protocol buffers both for gRPC server-to-server communication and for publishing messages to Pub/Sub. Pub/Sub is fairly sensitive to schema changes, not allowing any schema changes that would ... enums terraform protocol-buffers grpc google-cloud-pubsub Mike Williamson 3,598 asked Aug 25, 2025 at 10:21 0 votes 1 answer 45 views How to serialize protobuf message into a pre-allocated byte array with offset in c#? (Protobuf 3.32.0.0) The methods AI showed me are not working. However, one method mentioned by AI seems to be usable, but it is private: private CodedOutputStream(byte[] buffer, int offset, int length) So, how can I ... arrays protocol-buffers byte offset pre-allocation 21k 439 asked Aug 16, 2025 at 17:28 1 vote 0 answers 54 views A generated protobuf python file is unable to locate another protobuf module it generated I have a project set up like this with protos/ as a top level directory and the project that actually builds it under services/common-py. ├── protos │   ├── common.proto │   ├── doodad.proto └── ... python protocol-buffers protobuf-python Paul C 8,439 asked Aug 7, 2025 at 20:02 0 votes 0 answers 136 views Buf can't find google/api/annotations.proto in vendored directory for Cosmos SDK v0.53 module I'm developing a new module for a Cosmos SDK v0.53 application and I'm completely stuck on a persistent buf error. I have resorted to vendoring all my Protobuf dependencies into a third_party ... go protocol-buffers cosmos-sdk buf Blacki 9 asked Aug 6, 2025 at 7:26 2 votes 1 answer 186 views Intellij modules not finding generated protobuf classes in a multimodule maven project (but works fine via maven cli) I have a project set up like this: protos/ # protobuf files here pom.xml # parent pom services/common # this module generates the protobuf classes services/mod-1 # imports ... java maven intellij-idea protocol-buffers generated-code Paul C 8,439 asked Aug 4, 2025 at 0:22 1 vote 1 answer 89 views How do I set up automatic class generation from a contract using protobuf-net? I configured the .csproj file as follows: <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>... c# protocol-buffers grpc protobuf-net iluxa1810 310 asked Aug 1, 2025 at 10:55 0 votes 1 answer 121 views Is it possible that two protobuf messages with same content generate different serialized bytes? [duplicate] In C++ Protobuf, is it possible for two messages with the same contents to produce different serialized byte strings when using the SerializeToString method? If so, under what circumstances can the ... c++ protocol-buffers Anthony Lee 141 asked Jul 29, 2025 at 6:04 0 votes 1 answer 2k views Protobuf Compiler version does not match protobuf runtime version On my mac machine, I installed the protobuf compiler of the latest version (5.29.3) [1] and the python protobuf runtime library pip install protobuf (6.31.1) [2]. The problem is that I got the ... protocol-buffers Hugues Hou 103 asked Jul 20, 2025 at 3:00 0 votes 1 answer 167 views How to generate NPM package for protoc compiled Typescript I have a desire to create a reusable NPM package for consumption in Angular 18+ (using old build system) based upon a set of .proto files. The desired usage would be a simple installation of the npm ... angular typescript npm protocol-buffers npm-package James van Rossum 1 asked Jul 18, 2025 at 12:29 0 votes 1 answer 108 views gRPC serialized message size difference between Windows and POSIX gRPC: 1.59.1; Protocol Buffers: 3.21.12; I have a .proto file with proto2 syntax. One of the messages looks like this: message Log { repeated Info info = 1; // can be very heavy ... ... c++ protocol-buffers grpc posix Oleksii Hladyshko 21 asked Jul 10, 2025 at 11:43 0 votes 0 answers 188 views How to avoid "TypeError: Couldn't build proto file into descriptor pool: duplicate symbol 'core.grpc_interface.Explosion'" Language / runtime: Python 3.12.3 Operating system: Linux (Ubuntu 24.04) Protoc / protobuf versions: protoc (libprotoc) 31.0 protobuf 6.30.1 grpcio-tools 1.73.1 Description: My ... protocol-buffers grpc grpc-python David Manukyan 1 asked Jul 2, 2025 at 7:16 1 vote 1 answer 133 views How to generate protobufs for C# 9.0 that will not use the "global usings" feature I have a C# project that uses protobufs, but I need to backport it (under duress) to .NET 5.0. When I do so, the compiler says /myproj/path/Protos/obj/Debug/net5.0/Protos.GlobalUsings.g.cs(2,1): error ... c# protocol-buffers .net-5 c#-9.0 Grant Birchmeier 18.7k asked Jun 18, 2025 at 22:12 0 votes 1 answer 179 views build gRPC++ with only C++11 and no Absl I am trying to use protobufs and gRPC on a legacy system that runs Ubuntu 14.04 and C++11, and that can't be updated. I have tried building gRPC v1.46.7 (the newest version that does not require C++14 ... c++11 protocol-buffers grpc grpc-c++ abseil mdcraver 21 asked Jun 17, 2025 at 13:38 2 votes 1 answer 171 views std::string with custom allocator in protobuf message I need a string field in a Protobuf message to use a custom allocator for its internal char* buffer, instead of the default global allocator. I am aware that google::protobuf::Arena will allocate the ... c++ memory-management protocol-buffers Njrslv-yndx-cloud 125 asked Jun 9, 2025 at 8:20 0 votes 0 answers 138 views Google Cloud KSM Error: Exception in thread "main" java.lang.NoClassDefFoundError: com/google/protobuf/MapFieldReflectionAccessor 💻 Environment: Java Version: Corretto 17.0.8 Google Cloud KMS library: google-cloud-kms:2.38.0 Build Tool: Maven IDE: IntelliJ IDEA Community Edition 📦 Dependencies (pom.xml): <dependencies> &... java maven google-cloud-platform protocol-buffers hardware-security-module keemsisi 451 asked May 30, 2025 at 12:01 0 votes 1 answer 191 views What's the most efficient way to decode protobuf byte stream from a websocket in Python? I have a websocket to a site which returns a protobuf byte stream. Im trying to find the most efficient way to decode the protobuf bytes. If I have the .proto schema definitions, what's the most ... python protocol-buffers grpc protobuf.js Grace Harper 1 asked May 29, 2025 at 22:59 0 votes 0 answers 185 views Protobuf/Grpc generated code from maven with javax instead of jakarta package I am updating a spring boot project to version 3.4.5 with java 21. For this packages have changed from javax.* to jakarta.* I am generating Grpc endpoints with protofiles with this maven plugin: ... maven protocol-buffers maven-plugin grpc-java Andwari 181 asked May 8, 2025 at 9:40 0 votes 0 answers 33 views modify java protobuf and protobuf extensions in parallel, version > 3.17 I have generated java protobuf class. This class has protobuf extensions also. Is it safe to modify different unrelated fields and extensions of the same protobuf builder in parallel? message ... java protocol-buffers java.util.concurrent Capacytron 3,828 asked May 7, 2025 at 20:52 0 votes 0 answers 91 views How to convert from Python pandas Timestamp to repeated google.protobuf.Timestamp? (Python + Google Protocol Buffers) I am trying to write some code which converts the contents of a pandas.DataFrame to a protobuf object which can be serialized and written to a file. Here is my protobuf definition. syntax = "... python pandas protocol-buffers user2138149 18.8k asked Apr 29, 2025 at 15:32 1 vote 0 answers 53 views Java accessors generated by protoc for string fields For any field x of type string, protoc seems to generate two java accessors: getX() that returns a String getXBytes() that returns a ByteString While the getXBytes() method may be useful, I am ... java protocol-buffers protoc Remy 11 asked Apr 29, 2025 at 15:31 0 votes 1 answer 48 views There were problems loading project grpc-client.csproj. See log for details When I try to hit the save button for the file grpc-client.csproj on my Code Editor. It shows the error: There were problems loading project grpc-client.csproj.See log for details. The content of my ... c# asp.net build protocol-buffers grpc bibashmanjusubedi 1,355 asked Apr 25, 2025 at 19:03 0 votes 0 answers 58 views why in message fields in protobuf there is always a numeric tag even with strings and how does this affect serialization/serialization Why do we assign numeric tags to message fields in proto files even for string type? That is, here's an example from official documentation: // The greeting service definition. service Greeter { // ... protocol-buffers grpc Чебупеля 1 asked Apr 21, 2025 at 20:21 0 votes 1 answer 83 views Can I add extra build steps when deploy cloud functions on GCP? I am using terraform to deploy a python cloud function, similar to the official example, things are working as expected but now I want to use protobuf, which requires extra compile step, I know cloud ... google-cloud-platform google-cloud-functions protocol-buffers google-cloud-build watashiSHUN 10.7k asked Apr 20, 2025 at 3:59 0 votes 0 answers 56 views Android Proto not generating data classes The lore I have this data class UserSettingsModel, that I have moved to, because of a need to store some appSettings: Map<String, AppSettingsModel>. This is for an app that reads off user-... android protocol-buffers android-jetpack-datastore Mike Warren 3,926 asked Apr 18, 2025 at 17:50 0 votes 0 answers 41 views Tensorflow variables.index file structure, parsing, altering problems I am trying to understand how tensorflow stores variables.index files to parse it and manipulate. I see that pb file could be parsed with protobuf parser, .data file could be loaded as checkpoint and ... tensorflow protocol-buffers HackSaw 221 asked Apr 18, 2025 at 1:14 2 votes 0 answers 96 views Segmentation fault during Serialization: caused by message as a field in C++17 This post is related to this one: Segmentation fault during Serialization by using protobuf in C++17 But I have narrowed it down to the specific problem and decided to make separated post. My goal is ... c++ segmentation-fault protocol-buffers Daniil Yefimov 1,108 asked Apr 16, 2025 at 13:31 5 votes 1 answer 191 views Segmentation fault during Serialization by using protobuf in C++17 My goal is to serialize information by using protobuf in C++. proto file: syntax = "proto3"; package PhoneBookSerialize; message Date { int32 year = 1; int32 month = 2; int32 day = 3;... c++ protocol-buffers Daniil Yefimov 1,108 asked Apr 16, 2025 at 7:26 0 votes 1 answer 416 views Linking errors when building latest release of protocol buffers for Windows 10 I need to build protocol buffers (PB) as an external dependency for a project I plan on using it with. I've successfully built and used PB in the past for other projects, but those projects used an ... c++ windows cmake protocol-buffers tjd 53 asked Apr 15, 2025 at 20:02 1 vote 1 answer 178 views Converting time.Time to datetime.DateTime For some of our Protobuf DTOs, we use datetime.DateTime to represent the idea of a date and time with time zone. Internally, however, we work exclusively with time.Time objects because these have ... go time protocol-buffers Woody1193 8,212 asked Apr 14, 2025 at 3:20 0 votes 1 answer 339 views How to build an example C++ project which uses CMake, protobuf and vcpkg I'm trying to build a C++ project with a later version of the protobuf libraries than my OS package manager provides. To do this, I have chosen to use vcpkg to configure the project dependencies. (In ... c++ cmake protocol-buffers user2138149 18.8k asked Apr 13, 2025 at 8:46 0 votes 2 answers 2k views How to install the latest version of protoc on Ubuntu 24.10? The version of protoc available via apt with Ubuntu 24.10 appears to be somewhat outdated. $ protoc --version libprotoc 3.21.12 In particular, this does not appear to support the latest edition ... cmake protocol-buffers user2138149 18.8k asked Apr 10, 2025 at 20:17 -1 votes 1 answer 315 views Cannot compile protobuf definition with edition syntax I am trying to compile the following .proto file: edition = "2023"; package example_proto; import "google/protobuf/cpp_features.proto"; message BidAsk { required double bid =... c++ protocol-buffers protoc user2138149 18.8k asked Apr 10, 2025 at 18:34 0 votes 2 answers 345 views Crash in Protobuf lite on macOS after updating to Xcode 16.3 Since updating to Xcode latest (16.3) I get a crash in protobuf lite when trying to call the copy constructor of a message that has a repeated field. The crash occurs when the code is trying to call ... xcode macos protocol-buffers lordlefrog 41 asked Apr 9, 2025 at 22:31 1 vote 1 answer 677 views Configuring Protobuf support for NeoVim I am trying to configure Protobuf LSP support with nvim (I am using Lazyvim package manager). I've read here that bufls is deprecated and that we should be using buf_ls. Using this snippet, I've ... lua protocol-buffers neovim nvim-lspconfig buf vasigorc 1,002 asked Apr 7, 2025 at 21:03 0 votes 0 answers 33 views High export count from MSVC dll with protobuf We've discovered that a single proto message e.g: syntax = "proto3"; package foo.a; message ResultA { optional string name = 1; optional int32 value = 2; } Will translate to around ... protocol-buffers imrichardcole 4,715 asked Apr 6, 2025 at 10:26 1 vote 0 answers 109 views Unexpected behavior when using CMake and Visual Studio I have a simple project that is using protobuf to generate some bindings and then include them in a static library using Visual Studio/MSVC. The CMakeLists.txt section looks like this: ... visual-studio cmake protocol-buffers imrichardcole 4,715 asked Apr 5, 2025 at 8:22 0 votes 0 answers 34 views Err dlopen fail: dprint-node.win32-x64-msvc.node not found So I got this error when trying to run protoc with protoc-gen-ts_proto protoc --plugin=protoc-gen-ts_proto=.\node_modules\.bin\protoc-gen-ts_proto.cmd --proto_path=.\src\@core\prototypes --... node.js protocol-buffers protoc Valkyrine 41 asked Apr 4, 2025 at 8:00 2 votes 1 answer 371 views Why does protoc fail with enum name conflict in C++ for valid .proto definitions? I have a public proto files which cant be altered here is this for Refrence syntax = "proto2"; package openrtb; enum ContentCategory { IAB1 = 1; IAB1_1 = 2; IAB1_2 = 3; IAB11 = 191;... c++ protocol-buffers grpc protoc anish 7,500 asked Mar 30, 2025 at 11:51 0 votes 0 answers 131 views Deserialization Errors in Spring Kafka for byte Array Despite Proper Serializer Configuration I am new to Kafka & trying to make a decent project for my resume. So in a multi-service (microservices running on docker) model in which I'm developing multiple Spring Boot applications, two of ... spring-boot apache-kafka microservices protocol-buffers spring-kafka Aadarsh Pandey 71 asked Mar 30, 2025 at 3:08 1 vote 0 answers 69 views C++ multiple library dependencies causing protobuf conflicts I am currently using an C++ RPC framework (similar to gRPC) to implement the function, which itself depends on protobuf (v3.21.0) and is compiled using bazel(); at the same time, I need to use the ... protocol-buffers rpc Achan Zhong 13 asked Mar 18, 2025 at 13:28 2 votes 1 answer 111 views How to extract Parrot's Anafi AI drone protobuf metadata from RTP packet, using Golang? I really struggle extracting protobuf payload (Parrot TimedMetadata) from a recording of RTP packets. I'm using golang. I followed the parrot's dev guide without success. This is my main.go: package ... go protocol-buffers rtp parrot user29960667 31 asked Mar 11, 2025 at 14:41 1 vote 2 answers 170 views How can I convert go Struct to dynamic.Message or proto.Message in go grpc? func (w *Worker) makeUnaryRequest(ctx *context.Context, reqMD *metadata.MD, input *dynamic.Message) error { ... } I need to modify the contents of input. var data Response payload_dataByte, _ := json.... go protocol-buffers grpc LST 177 asked Mar 10, 2025 at 23:37 0 votes 0 answers 355 views Using Protobuf in my CMake project results in missing imported targets (absl, utf8_range) From an administrator CMD prompt, I installed Protobuf on my Windows machine the following way: git clone -b v28.3 --recurse-submodules https://github.com/protocolbuffers/protobuf.git cd protobuf ... windows cmake protocol-buffers andynewman 365 asked Mar 10, 2025 at 20:51 2 votes 0 answers 103 views Can prost crate convert protobuf's string to other Rust type (such as SmartString)? I use tonic to build a server. The grpc requests/replies have many short-string members. I find prost converts the protobuf's string into Rust's String. I want to use SmartString to replace String for ... string rust protocol-buffers wub 525 asked Mar 8, 2025 at 6:01 1 2 3 4 5 … 169 Next The Overflow Blog Now everyone can chat on Stack Overflow Vibe code anything in a Hanselminute Featured on Meta A proposal for bringing back Community Promotion & Open Source Ads Community Asks Sprint Announcement – January 2026: Custom site-specific badges! Policy: Generative AI (e.g., ChatGPT) is banned Modernizing curation: A proposal for The Workshop and The Archive All users on Stack Overflow can now participate in chat Hot Network Questions The rigor of the definition of higher derivative Eilenberg–Watts for module spectra Does this imputation with mice() make sense? Handling feature correlation in datasets Is "Iono tilting" legal? How to decide if I need a DPIA for a new project? Does this paramilitary group make sense in its organization? Representing a composition of variable sized structures DKIM key continuity log? Invalid directory left when CreateDirectory fails on bad path A reformulation of lower bounds for R(k,k) via additive constraints in circulant 2-colorings — is this known? Can transformers of sufficiently large size reach general intelligence? What is the purpose of proposing clearly unconstitutional laws? Implicit methods than can be invoked without mentioning the method name /k/ to /p/ in Romanian Western with a violent father and a conflict between two ranches Does the 22° angle in the right triangle seem to correspond to the maximum of this area ratio? How common was the belief in early British India that crossing the sea led to loss of caste? Regenerative currents and back-EMF Does the success of physics justify a belief in Physicalism? How to Create an Abstract Network Animation with Moving Light Pulses in Blender? How to perform an "on this date" check with a spreadsheet formula? (James 2:18b) Was James speaking facetiously to make a spiritual and practical pastoral point? Is the set of triangles formed by vertices of regular polygons dense in the set of all triangles? more hot questions Newest protocol-buffers questions feed Subscribe to RSS Newest protocol-buffers questions feed To subscribe to this RSS feed, copy and paste this URL into your RSS reader. Stack Overflow Questions Help Chat Business Stack Internal Stack Data Licensing Stack Ads Company About Press Work Here Legal Privacy Policy Terms of Service Contact Us cookie-settings#toggle" class="s-btn s-btn__link py4 js-gps-track -link" data-gps-track="footer.click({ location: 5, link: 38 })" data-consent-popup-loader="footer"> Cookie Settings Cookie Policy Stack Exchange Network Technology Culture & recreation Life & arts Science Professional Business API Data Blog Facebook Twitter LinkedIn Instagram Site design / logo © 2026 Stack Exchange Inc; user contributions licensed under CC BY-SA . rev 2026.1.12.38533
2026-01-13T08:47:43
https://www.git-tower.com/use-cases/designers
Git Made Easy for Designers | Tower Git Client Tower Navigation Features Undo Anything Just press Cmd+Z Drag and Drop Make the complex effortless Integrations Use your favorite tools Tower Workflows Branching Configurations Stacked Pull Requests Supercharged workflows All Features Release Notes Pricing Support Documentation Contact Us Account Login Learn Git Video Course 24 episodes Online Book From novice to master Cheat Sheets For quick lookup Webinar Learn from a Git professional First Aid Kit Recover from mistakes Advanced Git Kit Dive deeper Blog Download Download Git Made Easy Tower takes care of Git - so that you can focus on your design work. Get Started - It's Free Also available for Windows Also available for macOS Get Started - It's Free Also available for Windows Also available for macOS Hector Simpson UI/UX Designer at Heroku Tower is a vital tool in my workflow. It makes the more advanced things in Git intuitive and completely effortless. Koen Bok CEO at Framer Tower is a pleasure to use while it retains the full power of Git. I enjoy using it every day for both design and code work. Jesse Bilsten Principal Designer at GoDaddy I utilize Git in both design and development environments - and Tower is the only tool that empowers me in both. The Essential GUI Git is a very advanced and complex technical tool. Tower removes this complexity and finally makes Git accessible, even for non-technical users. One Design - One File No more “layout_v12_blue_final.psd”! With Tower, you don’t need to copy your design file for every variation. Keep a single “layout.psd” and use Tower to save and access versions of your designs. Only the Files You Need A dozen variations of a large design file quickly generate gigabytes of data on your local disk. By using Git’s “LFS” extension, Tower keeps only those versions of your files that you really need - and downloads older versions from the cloud on demand! Collaborate with Your Team No matter if you work with other designers or software developers: Tower provides the common platform for easy and efficient collaboration. Tower is the tool of choice for over 100,000 users worldwide Andreas Høyland Designer at Favo AS Tower has given me and my team git-super-powers that would not be accessible to us without it. Chris Coyier Co-Founder at CodePen Some things are meant to have a UI, and Git is one of them if you ask me. Tower is the perfect level of abstraction away from command-line Git usage. Download the Free Trial Also available for Windows Also available for macOS Download the Free Trial Also available for Windows Also available for macOS Explore the Features Tower Git Client Download for macOS Download for Windows Releases Pricing Beta Channel Use Cases Developers Designers Teams Enterprise Students Teachers & Universities Features Easy Powerful Productive   New Features All Features Integrations CLI vs GUI Tower Workflows Stacked Pull Requests Free Tools Code Diff Tool .gitignore Generator Support Help Center Documentation Learn Git Newsletter Contact Us Company About Blog Press Jobs Merch Affiliate Program Legal License Agreement Privacy Policy Privacy Settings Imprint © 2010-2026 Tower - Mentioned product names and logos are property of their respective owners. Your trial is downloading… Try Tower "Pro" for 30 days without limitations! Updates, Courses & Content via Email Updates about Tower, discounts, and giveaways as well as new content from the Tower blog. Free email course " Learn Git with Tower " (8 emails) Free email course " Tips & Tricks for Tower " (10 emails) I have read and accept the Privacy Policy . I understand that I can unsubscribe at any time by clicking on the unsubscribe link in any email. Updates about Tower, discounts, and giveaways as well as new content from the Tower blog. Free email course " Learn Git with Tower " (8 emails) Free email course " Tips & Tricks for Tower" (8 emails) I have read and accept the Privacy Policy . I understand that I can unsubscribe at any time by clicking on the unsubscribe link in any email. Thank you for subscribing. Please check your email to confirm. Want to win one of our awesome Tower shirts? Tell your friends about Tower! Share on Twitter We'll pick 4 winners every month who share this tweet! Follow @gittower to be notified if you win! Try Tower for Free Sign up below and use Tower "Pro" for 30 days without limitations! Yes, send me instructions on how to get started with Tower. Yes, I want to hear about new Tower updates, discounts and giveaways as well as new content from the Tower blog. I have read and accept the Privacy Policy . I understand that I can unsubscribe at any time. Your trial is downloading… Try Tower "Pro" for 30 days without limitations! Tower Close Updates, Courses & Content via Email Updates about Tower, discounts, and giveaways as well as new content from the Tower blog. Free email course " Learn Git with Tower " (8 emails) Free email course " Tips & Tricks for Tower " (10 emails) I have read and accept the Privacy Policy . I understand that I can unsubscribe at any time by clicking on the unsubscribe link in any email. Updates about Tower, discounts, and giveaways as well as new content from the Tower blog. Free email course " Learn Git with Tower " (8 emails) Free email course " Tips & Tricks for Tower" (10 emails) I have read and accept the Privacy Policy . I understand that I can unsubscribe at any time by clicking on the unsubscribe link in any email. Thank you for subscribing Please check your email to confirm Close Want to win one of our awesome Tower shirts? Tell your friends about Tower! Share on Twitter We'll pick 4 winners every month who share this tweet! Follow @gittower to be notified if you win! Try Tower for Free Sign up below and use Tower "Pro" for 30 days without limitations! Close Yes, send me instructions on how to get started with Tower. Yes, I want to hear about new Tower updates, discounts and giveaways as well as new content from the Tower blog. I have read and accept the Privacy Policy . I understand that I can unsubscribe at any time.
2026-01-13T08:47:43
https://legal.x.com/purchaser-terms
X Purchaser Terms of Service X Purchaser Terms of Service Download X Purchaser Terms of Service Terms for Paid Services X Premium Additional Terms Subscriptions Additional Terms Download X Purchaser Terms of Service X Purchaser Terms of Service goglobalwithtwitterbanner Terms for Paid Services X Premium Additional Terms Creator Subscriptions Additional Terms Premium Business and Premium Organizations Additional Terms   Terms for Paid Services X Premium Additional Terms Creator Subscriptions Additional Terms Premium Business and Premium Organizations Additional Terms   X Purchaser Terms of Service Effective: August 1, 2025 If you live outside the European Union, EFTA States, or the United Kingdom, including if you live in the United States, the following X Purchaser Terms of Service apply to you.  If you live in the European Union, EFTA States, or the United Kingdom, these X Purchaser Terms of Service  apply to you.   X Purchaser Terms of Service If you live outside the European Union, EFTA States, or the United Kingdom, including if you live in the United States X allows you to access certain features in exchange for payment of a one-time or recurring fee, as applicable to the relevant features (each a “ Paid Service ” and collectively the " Paid Services "). For example, X Premium (as defined below) and Subscriptions would each be considered a “Paid Service.”  To the extent that you sign up for and/or use a Paid Service, your use of the Paid Services and any corresponding transactions are subject to: (i) the terms and conditions set forth herein, including the applicable terms and conditions for each Paid Service you purchase, each as listed below (collectively, the “ X Purchaser Terms of Service ”), and (ii) the applicable X Terms of Service , X Privacy Policy , X Rules and Policies , and all policies incorporated therein (collectively, the “ X User Agreement ”). This X Purchaser Terms of Service and the aforementioned X User Agreement shall be collectively referred to in this document as the “ Terms ”. “ X ” refers to the X entity that provides the Paid Services to you. Please read these X Purchaser Terms of Service carefully to make sure you understand the applicable terms, conditions and exceptions. IF YOU LIVE IN THE UNITED STATES, THESE TERMS CONTAIN IMPORTANT INFORMATION THAT APPLY TO YOU ABOUT RESOLUTION OF DISPUTES, INCLUDING A WAIVER OF YOUR RIGHT TO BRING CLAIMS AS CLASS ACTIONS, AND A LIMITATION ON YOUR RIGHT TO BRING CLAIMS AGAINST X MORE THAN 2 YEARS AFTER THE RELEVANT EVENTS OCCURRED, WHICH IMPACT YOUR RIGHTS AND OBLIGATIONS IF ANY DISPUTE WITH X ARISES. SEE SECTION 6 UNDER GENERAL TERMS FOR DETAILS ON THESE PROVISIONS. Acceptance . By using or accessing a Paid Service(s) from X, submitting payment thereunder and/or clicking on a button to make a one-time purchase or recurring subscription payments for the Paid Service provided by X, you agree to be bound by the Terms. If you do not understand the Terms, or do not accept any part of them, then you may not use or access any Paid Services. To purchase and use a Paid Service you must: (i) be at least 18 years old or the age of majority as determined by the laws of the jurisdiction in which you live or (ii) have the express consent of your parent or guardian to purchase and use that Paid Service. If you are a parent or legal guardian and you allow your child (or a child that you are a guardian of) to purchase or use a Paid Service, you agree that the Terms apply to you, that you will abide by the Terms, and that you are responsible for the child’s activity on the Paid Services and for ensuring that the child also abides by the Terms. In any case, as stated in the Who May Use the Services section of the X Terms of Service, you must be at least 13 years old to use the X Service. If you are accepting these X Purchaser Terms of Service and using the Paid Services on behalf of a company, organization, government, or other legal entity, you represent and warrant that you are authorized to do so and have the authority to bind such entity to these X Purchaser Terms of Service, in which case the words “you” and “your” as used in these X Purchaser Terms of Service shall refer to such entity. X Contracting Entity . You enter into these X Purchaser Terms of Service with the entity that corresponds to where you live, as listed below. This entity will provide the Paid Services to you. No other entity is bound to any obligations to you under these Purchaser Terms of Service. Your Location The continents of North America (including Hawaii) or South America Contracting Entity X Corp., with an office located at 865 FM 1209, Building 2, Bastrop, TX 78602, USA Your Location Any country not covered by the above two locations, including the Asia-Pacific region, Middle East, Africa or Europe (excluding EU countries, EFTA States and the United Kingdom) Contracting Entity X Global LLC, with its registered office at 701 S. Carson St., Suite 200, Carson City, NV 89701, USA   Changes to Terms, Paid Services and Pricing 1. Changes to Terms. X may revise these X Purchaser Terms of Service from time to time, including for any business, financial, or legal reasons. The changes will not be retroactive, and the most current version of the X Purchaser Terms of Service, available at legal.x.com/purchaser-terms , will govern your use of Paid Services and any corresponding transactions. If we modify or revise these Terms after you have agreed to them (for example, if these terms are modified after you have purchased a subscription), we will notify you in advance of material revisions to these terms. Such notification may be provided electronically, including (and without limitation to) via a service notification or an email to the email address associated with your account. By continuing to access or use the Paid Services after those revisions become effective, you agree to be bound by the revised X Purchaser Terms of Service. If you do not agree to abide by these or any future X Purchaser Terms of Service, do not use or access (or continue to use or access) the Paid Services. The X Purchaser Terms of Service are written in English but are made available in multiple languages through translations. X strives to make the translations as accurate as possible to the original English version. However, in case of any discrepancies or inconsistencies, the English language version of the X Purchaser Terms of Service shall take precedence. You acknowledge that English shall be the language of reference for interpreting and constructing the terms of the X Purchaser Terms of Service. 2. Changes to Paid Services.  Our Paid Services evolve constantly. As such, the Paid Services may change from time to time, at our discretion, including for any business, financial, or legal reasons. We may stop (permanently or temporarily) providing the Paid Services or any features within the Paid Services to you or to users generally with or without notice. X is not liable to you or to any third party for any modification, suspension or discontinuance of the Paid Services. The specific terms and conditions (included below) for the specific Paid Service specify how you can cancel a subscription or, when applicable, seek a refund.  3. Changes to Pricing. Prices for Paid Services, including recurring subscription fees, are subject to change from time to time, including for any business, financial, or legal reasons. X will provide reasonable advance notice of any material change to the price of Paid Services. For subscription services, price changes will take effect at the start of the next subscription period following the date of the price change. If you do not agree with a price change, you have the right to reject the change by cancelling your subscription to the applicable Paid Service prior to the price change going into effect. Payment Terms .  X offers various payment options that may vary by Paid Service, your device and/or operating system, your geographic location, or other factors. To the extent available (as X may make various purchase methods available from time to time), these payment options may include the ability to use “In app payment” functionality offered by Google or Apple, or to make a web payment using X's third party payment processor, Stripe ( www.stripe.com - hereafter “ Stripe ”). When you make a payment, you explicitly agree: (i) to pay the price listed for the Paid Service, along with any additional amounts relating to applicable taxes, credit card fees, bank fees, foreign transaction fees, foreign exchange fees, and currency fluctuations; and (ii) to abide by any relevant terms of service, privacy policies, or other legal agreements or restrictions (including additional age restrictions) imposed by Google, Apple, or Stripe (as X's third party payment processor) in connection with your use of a given payment method (for example only, if you choose to make your payment via Apple’s in-app purchasing functionality, you agree to abide by any relevant terms, requirements, and/or restrictions imposed by Apple). Any private personal data that you provide in connection with your use of the Paid Services including, without limitation, any data provided in connection with payment, will be processed in accordance with the X Privacy Policy. X may share your payment information with payment services providers to process payments; prevent, detect, and investigate fraud or other prohibited activities; facilitate dispute resolution such as chargebacks or refunds; and for other purposes associated with the acceptance of credit cards, debit cards, or ACH. It is your responsibility to make sure your banking, credit card, debit card, and/or other payment information is up to date, complete and accurate at all times. If you make a payment for a Paid Service, we may receive information about your transaction such as when it was made, when a subscription is set to expire or auto- renew, what platform you made the purchase on, and other information. X will not be responsible or liable for any errors made or delays by a payment processor, Apple’s App Store or the Google Play Store, your bank, your credit card company, and/or any payment network. Please refer to each specific Paid Service Terms and Conditions below for payment terms applicable to that specific Paid Service, including how subscription renewals are handled and other important terms. Application of X User Agreement, Termination, No Refunds, Multiple X Accounts, and Restrictions 1. The X User Agreement Applies to You . YOU MUST ALWAYS FOLLOW AND COMPLY WITH THE X USER AGREEMENT. The X User Agreement always applies to your use of the X Service, including the Paid Services and features. Your failure to follow and comply with the X User Agreement, or X's belief that you have failed to follow and comply with the X User Agreement, may result in the cancellation of your Paid Services. Any such cancellation will be in addition to, and without limitation of, any enforcement action that X may take against you pursuant to the X User Agreement. In such instances you may lose the benefits of your Paid Services and you will not be eligible for a refund for any amounts you have paid (or pre-paid) for Paid Services. 2. Why X Might Terminate Your Access to Paid Services. X may suspend or terminate your access to Paid Service(s), cease providing you with all or part of the Paid Services, or take any other action it deems appropriate, including, for example, suspend your account, (without any liability) at any time for any or no reason, including, but not limited to any of the following reasons: a. X believes, in its sole discretion, that you have violated the Terms or your use of the Paid Service(s) would violate any applicable laws; b. X is requested or directed to do so by any competent court of law, regulatory authority, or law enforcement agency; c. X has unexpected technical or security issues; d. X believes, in its sole discretion, you have violated the X User Agreement; e. X believes, in its sole discretion, you are engaging in manipulation or other disruptive or prohibited conduct generally or in connection with the Paid Services; f.  You create risk or possible legal exposure for X; g. Your account should be removed due to unlawful conduct; h. Your account should be removed due to prolonged inactivity; or i. Our provision of the Paid Services (in whole or in part) to you is no longer commercially viable (in X's sole discretion). 3. All Transactions Are Final. All payments for Paid Services are final and not refundable or exchangeable, except as required by applicable law. We make no guarantee as to the nature, quality, or value of a Paid Service or the availability or supply thereof. Refunds or credits are not provided for any unused or partially used Paid Service (for example, a partially used subscription period).  4. Paid Services Are Non-Transferable between X Accounts. Each purchase of a Paid Service applies to a single X account, meaning that your purchase will apply solely to the account you were using when you purchased the Paid Service and will not apply to other accounts that you may have access to, or control over. If you have or control multiple accounts and you want access to Paid Services on each account, you must purchase the Paid Service on each account individually. 5. Restrictions and Obligations.  a. You may only purchase and use a Paid Service if you are legally allowed to use the Paid Service in your country and you live in a country supported by X for the applicable Paid Service. X may, in its discretion, restrict the ability to access or purchase a Paid Service in certain countries. X reserves the right to modify the list of supported countries from time to time. b. We reserve the right to refuse Paid Services transactions or to cancel or discontinue the sale or use of a Paid Service in our sole discretion.  c.  You may not allow others to use your X account to access any Paid Service that such person did not order. d. You may not purchase or use a Paid Service if you are a person with whom U.S. persons are not permitted to have dealings pursuant to economic sanctions, including, without limitation, sanctions administered by the United States Department of the Treasury's Office of Foreign Assets Control or any other applicable sanctions authority (" Prohibited Person "). This includes, without limitation, persons located in, or ordinarily resident in, the following countries and regions: Cuba, Iran, the Ukraine regions of Crimea, North Korea and Syria. You represent and warrant that you are not a Prohibited Person. e. YOU REPRESENT THAT YOU WILL USE THE PAID SERVICES ONLY FOR LAWFUL PURPOSES AND ONLY IN ACCORDANCE WITH THE TERMS. Taxes and fees . You are responsible for and agree to pay any applicable taxes, duties, tariffs, and fees related to the purchase of Paid Services, including those required to be paid to either X or a third-party payment processor. These taxes may include, but are not limited to, VAT, GST, sales tax, withholding tax, and any other applicable taxes. Depending on your location, X may be responsible for collecting and reporting information related to transaction taxes arising from your purchase of Paid Services. You grant X permission to provide your account and personal information to relevant tax authorities to fulfill our tax collection and reporting obligations.   General Terms 1. Contact Information. If you have any questions about the Paid Services or these Terms, you can check out the X Paid Services Help Center for more details. If you’ve already purchased a Paid Service, you can also contact us via the support link available in the navigation menu of your X account under the payment or subscription settings. If you have additional questions, then you can contact us here by using the “Help with paid features” form. 2. DISCLAIMERS. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, YOUR ACCESS TO AND USE OF THE PAID SERVICES IS AT YOUR OWN RISK. YOU UNDERSTAND AND AGREE THAT THE PAID SERVICES ARE PROVIDED TO YOU ON AN “AS IS” AND “AS AVAILABLE” BASIS. X DISCLAIMS ALL WARRANTIES AND CONDITIONS, WHETHER EXPRESS OR IMPLIED, OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. X MAKES NO WARRANTY OR REPRESENTATION AND DISCLAIMS ALL RESPONSIBILITY AND LIABILITY FOR: (I) THE COMPLETENESS, ACCURACY, AVAILABILITY, TIMELINESS, SECURITY OR RELIABILITY OF THE PAID SERVICES; AND (II) WHETHER THE PAID SERVICES WILL MEET YOUR REQUIREMENTS OR BE AVAILABLE ON AN UNINTERRUPTED, SECURE, OR ERROR-FREE BASIS. YOU ARE RESPONSIBLE FOR YOUR USE OF THE X SERVICE, INCLUDING THE PAID SERVICES, AND ANY CONTENT YOU PROVIDE. 3. LIMITATION OF LIABILITY. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE X ENTITIES SHALL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR PUNITIVE DAMAGES, OR ANY LOSS OF PROFITS OR REVENUES, WHETHER INCURRED DIRECTLY OR INDIRECTLY, OR ANY LOSS OF DATA, USE, GOODWILL, OR OTHER INTANGIBLE LOSSES, RESULTING FROM (i) YOUR ACCESS TO OR USE OF OR INABILITY TO ACCESS OR USE THE PAID SERVICES; (ii) ANY CONDUCT OR CONTENT OF ANY THIRD PARTY POSTED THROUGH THE PAID SERVICES, INCLUDING WITHOUT LIMITATION, ANY DEFAMATORY, OFFENSIVE OR ILLEGAL CONDUCT OF OTHER USERS OR THIRD PARTIES; (iii) ANY CONTENT OBTAINED FROM THE PAID SERVICES; OR (iv) UNAUTHORIZED ACCESS, USE OR ALTERATION OF YOUR TRANSMISSIONS OR CONTENT. FOR THE AVOIDANCE OF DOUBT, THE DEFINITION OF PAID SERVICES IS LIMITED TO THE FEATURES OFFERED BY X AND DOES NOT INCLUDE ANY CONTENT YOU ACCESS AND/OR INTERACT WITH IN USING THOSE FEATURES. IN NO EVENT SHALL THE AGGREGATE LIABILITY OF THE X ENTITIES EXCEED THE GREATER OF ONE HUNDRED U.S. DOLLARS (U.S. $100.00) OR THE AMOUNT YOU PAID X, IF ANY, IN THE PAST SIX MONTHS FOR THE PAID SERVICES GIVING RISE TO THE CLAIM. THE LIMITATIONS OF THIS SUBSECTION SHALL APPLY TO ANY THEORY OF LIABILITY, WHETHER BASED ON WARRANTY, CONTRACT, STATUTE, TORT (INCLUDING NEGLIGENCE) OR OTHERWISE, AND WHETHER OR NOT THE X ENTITIES HAVE BEEN INFORMED OF THE POSSIBILITY OF ANY SUCH DAMAGE, AND EVEN IF A REMEDY SET FORTH HEREIN IS FOUND TO HAVE FAILED OF ITS ESSENTIAL PURPOSE. THE “X ENTITIES” REFERS TO X, ITS PARENTS, AFFILIATES, RELATED COMPANIES, OFFICERS, DIRECTORS, EMPLOYEES, AGENTS, REPRESENTATIVES, PARTNERS, AND LICENSORS. APPLICABLE LAW IN YOUR JURISDICTION MAY NOT ALLOW FOR CERTAIN LIMITATIONS OF LIABILITY. TO THE EXTENT REQUIRED BY APPLICABLE LAW IN YOUR JURISDICTION, THE ABOVE DOES NOT LIMIT THE X ENTITIES’ LIABILITY FOR FRAUD, FRAUDULENT MISREPRESENTATION, DEATH OR PERSONAL INJURY CAUSED BY OUR NEGLIGENCE, GROSS NEGLIGENCE, AND/OR INTENTIONAL CONDUCT. TO THE FULLEST EXTENT ALLOWED UNDER APPLICABLE LAW, THE X ENTITIES’ MAXIMUM AGGREGATE LIABILITY FOR ANY NON-EXCLUDABLE WARRANTIES IS LIMITED TO ONE HUNDRED US DOLLARS (US$100.00). 4. Notice Regarding Apple. To the extent that you purchased the Paid Services or are using or accessing the Paid Services on an iOS device, you further acknowledge and agree to the terms of this Section. You acknowledge that the Terms are between you and us only, not with Apple, and Apple is not responsible for the Paid Services and the content thereof. Apple has no obligation whatsoever to furnish any maintenance and support service with respect to the Paid Services. In the event of any failure of the Paid Services to conform to any applicable warranty, then you may notify Apple and Apple will refund any applicable purchase price for the Paid Services to you; and, to the maximum extent permitted by applicable law, Apple has no other warranty obligation whatsoever with respect to the Paid Services. Apple is not responsible for addressing any claims by you or any third-party relating to the Paid Services or your possession and/or use of the Paid Services, including, but not limited to: (i) product liability claims; (ii) any claim that the Paid Services fail to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation. Apple is not responsible for the investigation, defense, settlement and discharge of any third-party claim that the Paid Services and/or your possession and use of the mobile application infringe that third-party’s intellectual property rights. You agree to comply with any applicable third-party terms when using the Paid Services. Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms, and upon your acceptance of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms against you as a third-party beneficiary of the Terms. You hereby represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a "terrorist supporting" country; and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. 5. Conflict. In the event of a conflict between the provisions of this X Purchaser Terms of Service and those of the X User Agreement, the provisions of this X Purchaser Terms of Service take precedence solely with respect to your use of a Paid Service.   6. DISPUTE RESOLUTION AND CLASS ACTION WAIVER a. Initial Dispute Resolution .  Most disputes between you and X can be resolved informally. You may contact us by writing to Paid Support here . When you contact us, please provide a brief description of the nature and bases for your concerns, your contact information, and the specific relief you seek. The parties shall use their best efforts through this support process to settle disputes, claims, or controversies arising out of or relating to these Terms and/or your participation in the Program (individually a “ Dispute ,” or more than one, “ Disputes ”). You and we agree that good faith participation in this informal process is required and must be completed as set forth above before either party can initiate litigation regarding any Dispute, except with respect to requests for emergency injunctive relief (“ Exempted Dispute ”). If we cannot reach an agreed upon resolution with you regarding a Dispute (other than an Exempted Dispute) within a period of thirty (30) days from the time informal dispute resolution commences under the Initial Dispute Resolution provision above, then either you or we may initiate litigation. b.   Choice of Law and Forum Selection . PLEASE READ THIS SECTION CAREFULLY – IT MAY SIGNIFICANTLY AFFECT YOUR LEGAL RIGHTS, INCLUDING YOUR RIGHT TO FILE A LAWSUIT IN COURT. The laws of the State of Texas, excluding its choice of law provisions, will govern these Terms and any dispute that arises between you and us, notwithstanding any other agreement between you and us to the contrary. All disputes related to these Terms, including any disputes, claims, or controversies arising out of or relating to these Terms, will be brought exclusively in the federal or state courts located in Tarrant County, Texas, United States, and you consent to personal jurisdiction in those forums and waive any objection as to inconvenient forum. Without prejudice to the foregoing, you agree that, in its sole discretion, X may bring any claim, cause of action, or dispute we have against you in any competent court in the country in which you reside that has jurisdiction and venue over the claim.  If you are a federal, state, or local government entity in the United States in your official capacity and legally unable to accept the controlling law, jurisdiction or venue clauses above, then those clauses do not apply to you. For such U.S. federal government entities, this Agreement and any action related thereto will be governed by the laws of the United States of America (without reference to conflict of laws) and, in the absence of federal law and to the extent permitted under federal law, the laws of the State of Texas (excluding choice of law). c. YOU HAVE TWO YEARS TO BRING A CLAIM AGAINST X . You must bring any claim against X arising out of or related to these Terms within two (2) years after the date of the occurrence of the event or facts giving rise to the dispute, unless applicable law provides that the normal statute of limitations for that claim may not be shortened by agreement. If you do not bring a claim within this period, you forever waive the right to pursue any claim or cause of action, of any kind or character, based on such events or facts, and such claims or causes of action are permanently banned, and X will have no liability with respect to such claim. d. Class Action Waiver . To the extent permitted by law, you also waive the right to participate as a plaintiff or class member in any purported class action, collective action or representative action proceeding.   X Purchaser Terms of Service If you live in the European Union, EFTA States, or the United Kingdom X allows you to access certain features in exchange for payment of a one-time or recurring fee, as applicable to the relevant features (each a “ Paid Service ” and collectively the " Paid Services "). For example, X Premium (as defined below) and Subscriptions would each be considered a “Paid Service.”  To the extent that you sign up for and/or use a Paid Service, your use of the Paid Services and any corresponding transactions are subject to: (i) the terms and conditions set forth herein, including the applicable terms and conditions for each Paid Service you purchase, each as listed below (collectively, the “ X Purchaser Terms of   Service ”), and (ii) the applicable  X Terms of Service ,  X Privacy Policy ,  X Rules and Policies , and all policies incorporated therein (collectively, the “ X User Agreement ”). This X Purchaser Terms of Service and the aforementioned X User Agreement shall be collectively referred to in this document as the “ Terms ”. “ X ” refers to the X entity that provides the Paid Services to you. Please read these X Purchaser Terms of Service carefully to make sure you understand the applicable terms, conditions and exceptions. IF YOU LIVE IN THE EUROPEAN UNION, EFTA STATES, OR THE UNITED KINGDOM, THESE TERMS CONTAIN IMPORTANT INFORMATION THAT APPLY TO YOU ABOUT RESOLUTION OF DISPUTES, INCLUDING A WAIVER OF YOUR RIGHT TO BRING CLAIMS AS CLASS ACTIONS, AND A LIMITATION ON YOUR RIGHT TO BRING CLAIMS AGAINST X MORE THAN 1 YEAR AFTER THE RELEVANT EVENTS OCCURRED, WHICH IMPACT YOUR RIGHTS AND OBLIGATIONS IF ANY DISPUTE WITH X ARISES. SEE SECTION 6 UNDER GENERAL TERMS FOR DETAILS ON THESE PROVISIONS. Acceptance .  By using or accessing a Paid Service(s) from X, submitting payment thereunder and/or clicking on a button to make a one-time purchase or recurring subscription payments for the Paid Service provided by X, you agree to be bound by the Terms. If you do not understand the Terms, or do not accept any part of them, then you may not use or access any Paid Services. To purchase and use a Paid Service you must: (i) be at least 18 years old or the age of majority as determined by the laws of the jurisdiction in which you live or (ii) have the express consent of your parent or guardian to purchase and use that Paid Service. If you are a parent or legal guardian and you allow your child (or a child that you are a guardian of) to purchase or use a Paid Service, you agree that the Terms apply to you, that you will abide by the Terms, and that you are responsible for the child’s activity on the Paid Services and for ensuring that the child also abides by the Terms. In any case, as stated in the Who May Use the Services section of the X Terms of Service, you must be at least 13 years old to use the X Service. If you are accepting these X Purchaser Terms of Service and using the Paid Services on behalf of a company, organization, government, or other legal entity, you represent and warrant that you are authorized to do so and have the authority to bind such entity to these X Purchaser Terms of Service, in which case the words “you” and “your” as used in these X Purchaser Terms of Service shall refer to such entity. X Contracting Entity .  You enter into these X Purchaser Terms of Service with the entity that corresponds to where you live, as listed below. This entity will provide the Paid Services to you. No other entity is bound to any obligations to you under these Purchaser Terms of Service. Your Location The European Union, EFTA States, or the United Kingdom Contracting Entity X Internet Unlimited Company, with its registered office at One Cumberland Place, Fenian Street, Dublin 2, D02 AX07 Ireland   Changes to Terms, Paid Services and Pricing 1. Changes to Terms.  X may revise these X Purchaser Terms of Service for a valid and reasonable basis from time to time. A valid and reasonable basis may include, (i) a change in our services, for example due to technical, security-related or operational developments, (ii) the elimination of technical errors, (iii) a change in our business, for example due to policy, financial or other directional changes, (iv) a change in the legal situation, for example due to a change in the law, a request from an official agency, or a decision by a court, and (v) the optimization of the user experience through the implementation of new features. The changes will not be retroactive, and the most current version of the X Purchaser Terms of Service, available at legal.x.com/purchaser-terms , will govern your use of Paid Services and any corresponding transactions. If we modify or revise these Terms after you have agreed to them (for example, if these terms are modified after you have purchased a subscription), we undertake to notify you up to 30 days (depending on the specific changes) in advance of the entry into force of material revisions to these terms while setting a reasonable deadline for the user with respect to the changes and notifying you of the consequences of continued use after the deadline has expired. Such notification may be provided electronically, including (and without limitation to) via a service notification or an email to the email address associated with your account. In case you continue to use the Paid Services after the aforementioned deadline expires, you agree to be bound by the revised X Purchaser Terms of Service. If you do not agree to the changes to the X Purchaser Terms of Service, you will have to stop using or accessing (or continue to use or access) the Paid Services. The X Purchaser Terms of Service are written in English but are made available in multiple languages through translations. X strives to make the translations as accurate as possible to the original English version. However, in case of any discrepancies or inconsistencies, the English language version of the X Purchaser Terms of Service shall take precedence. You acknowledge that English shall be the language of reference for interpreting and constructing the terms of the X Purchaser Terms of Service. 2. Changes to Paid Services.  Our Paid Services and our products and services evolve constantly. X may change the Paid Services for a reasonable and valid basis. Such a valid and reasonable basis may include (i) technical, security-related or operational developments, (ii) the elimination of technical errors, (iii) compliance with a changed legal situation, for example due to a change in the law, a request from an official agency, or a decision by a court, (iv) the optimization of the user experience through the implementation of new features, and (v) a change in our business, for example due to policy, financial circumstances or other directional changes. We will notify you of any changes to the Paid Services up to 30 days before they take effect, for example by means of a service notification or an email sent to the email address linked to your account, specifying the characteristics and effective date of the changes and informing you of your eventual right to terminate the subscription. The deadline may be shortened in the event of safety-related changes. The following shall not be considered as changes to the Paid Services within the meaning of this provision: (i) changes that affect the fundamental nature of the Paid Services and the essential characteristics of the service to be provided by X, and (ii) the permanent discontinuation of services. X is not liable to you for any modification, suspension or discontinuance of the Paid Services. Where legally required, the aforementioned limitation of liability does not apply (i) to the compensation for foreseeable damage in cases of slightly negligent breach of duties, insofar as their fulfillment is essential for the proper execution of the contract and users can rely on their fulfillment (essential contractual obligations), by X or its legal representatives or vicarious agents, and (ii) the liability of X for (a) a damage resulting from harm to life, body or health as well as for damages caused by intent or gross negligence on the part of X, its legal representatives, or vicarious agents, and (b) a damage due to non-compliance with a guarantee or warranted characteristic or as a result of a fraudulently concealed defect. The specific terms and conditions (included below) for the specific Paid Service specify how you can cancel a subscription or, when applicable, seek a refund.  3. Changes to Pricing. Prices for Paid Services, including recurring subscription fees, are subject to change from time to time due to change in the costs relating to operation, maintenance, technical provision, business considerations, and fees charged by third parties or statutory fees, at our reasonable discretion. In the event of an increase in costs, X reserves the right to adjust the prices for chargeable services. X will notify you of any price changes in writing up to 30 days before they take effect, for example by means of a service notification or an email to the email address linked to your account, stating your rights and the consequences of not exercising them. In the event of a price change, you may terminate the subscription to the applicable Paid Service or the user agreement up to 24 hours before the start of your next billing cycle, provided the cancellation is made within 30 days of receiving the notification. Otherwise, the price change will take effect at the time specified in the notification. For subscription services, price changes will take effect at the start of the next subscription period following the date of the effectiveness of the price change.  Payment Terms .  X offers various payment options that may vary by Paid Service, your device and/or operating system, your geographic location, or other factors. To the extent available (as X may make various purchase methods available from time to time), these payment options may include the ability to use “In app payment” functionality offered by Google or Apple, or to make a web payment using X's third party payment processor, Stripe ( www.stripe.com - hereafter “ Stripe ”). When you make a payment, you explicitly agree: (i) to pay the price listed for the Paid Service, along with any additional amounts relating to applicable taxes, credit card fees, bank fees, foreign transaction fees, foreign exchange fees, and currency fluctuations; and (ii) to abide by any relevant terms of service, privacy policies, or other legal agreements or restrictions (including additional age restrictions) imposed by Google, Apple, or Stripe (as X's third party payment processor) in connection with your use of a given payment method (for example only, if you choose to make your payment via Apple’s in-app purchasing functionality, you agree to abide by any relevant terms, requirements, and/or restrictions imposed by Apple). Any private personal data that you provide in connection with your use of the Paid Services including, without limitation, any data provided in connection with payment, will be processed in accordance with the X Privacy Policy. X may share your payment information with payment services providers to process payments; prevent, detect, and investigate fraud or other prohibited activities; facilitate dispute resolution such as chargebacks or refunds; and for other purposes associated with the acceptance of credit cards, debit cards, or ACH. It is your responsibility to make sure your banking, credit card, debit card, and/or other payment information is up to date, complete and accurate at all times. If you make a payment for a Paid Service, we may receive information about your transaction such as when it was made, when a subscription is set to expire or auto- renew, what platform you made the purchase on, and other information. X will not be responsible or liable for any errors made or delays by a payment processor, Apple’s App Store or the Google Play Store, your bank, your credit card company, and/or any payment network. Please refer to each specific Paid Service Terms and Conditions below for payment terms applicable to that specific Paid Service, including how subscription renewals are handled and other important terms. Application of X User Agreement, Termination, No Refunds, Multiple X Accounts, and Restrictions 1. The X User Agreement Applies to You . YOU MUST ALWAYS FOLLOW AND COMPLY WITH THE X USER AGREEMENT. The X User Agreement always applies to your use of the X Service, including the Paid Services and features. Your failure to follow and comply with the X User Agreement, or X's belief that you have failed to follow and comply with the X User Agreement, may result in the cancellation of your Paid Services. Any such cancellation will be in addition to, and without limitation of, any enforcement action that X may take against you pursuant to the X User Agreement. In such instances you may lose the benefits of your Paid Services and you will not be eligible for a refund for any amounts you have paid (or pre-paid) for Paid Services. 2. Why X Might Terminate Your Access to Paid Services. X may suspend or terminate your access to Paid Service(s), cease providing you with all or part of the Paid Services, or take any other action it deems appropriate, including, for example, suspend your account, (without any liability) at any time for any or no reason, including, but not limited to any of the following reasonable grounds: a. X believes, in its sole discretion, that you have violated the Terms or your use of the Paid Service(s) would violate any applicable laws; b. X is requested or directed to do so by any competent court of law, regulatory authority, or law enforcement agency; c. X has unexpected technical or security issues; d. X believes, in its sole reasonable discretion, you have violated the X User Agreement; e. X believes for valid reasons such as if you are engaging in manipulation, gaming, or other disruptive or prohibited conduct in connection with the Paid Services; f.  You create risk or possible legal exposure for X; g. Your account should be removed due to unlawful conduct; h. Your account should be removed due to prolonged inactivity; or i. Our provision of the Paid Services (in whole or in part) to you is no longer commercially viable (in X's sole discretion). 3. All Transactions Are Final. All payments for Paid Services are final and not refundable or exchangeable, except as required by applicable law. We make no guarantee as to the nature, quality, or value of a Paid Service or the availability or supply thereof. Refunds or credits are not provided for any unused or partially used Paid Service (for example, a partially used subscription period).  4. Paid Services Are Non-Transferable between X Accounts. Each purchase of a Paid Service applies to a single X account, meaning that your purchase will apply solely to the account you were using when you purchased the Paid Service and will not apply to other accounts that you may have access to, or control over. If you have or control multiple accounts and you want access to Paid Services on each account, you must purchase the Paid Service on each account individually. 5. Restrictions and Obligations.  a. You may only purchase and use a Paid Service if you are legally allowed to use the Paid Service in your country and you live in a country supported by X for the applicable Paid Service. X may, in its discretion, restrict the ability to access or purchase a Paid Service in certain countries. X reserves the right to modify the list of supported countries from time to time. b. We reserve the right to refuse Paid Services transactions or to cancel or discontinue the sale or use of a Paid Service in our sole discretion.  c.  You may not allow others to use your X account to access any Paid Service that such person did not order. d. You may not purchase or use a Paid Service if you are a person with whom U.S. persons are not permitted to have dealings pursuant to economic sanctions, including, without limitation, sanctions administered by the United States Department of the Treasury's Office of Foreign Assets Control or any other applicable sanctions authority (" Prohibited Person "). This includes, without limitation, persons located in, or ordinarily resident in, the following countries and regions: Cuba, Iran, the Ukraine regions of Crimea, North Korea and Syria. You represent and warrant that you are not a Prohibited Person. e. YOU REPRESENT THAT YOU WILL USE THE PAID SERVICES ONLY FOR LAWFUL PURPOSES AND ONLY IN ACCORDANCE WITH THE TERMS. Taxes and fees . You are responsible for and agree to pay any applicable taxes, duties, tariffs, and fees related to the purchase of Paid Services, including those required to be paid to either X or a third-party payment processor. These taxes may include, but are not limited to, VAT, GST, sales tax, withholding tax, and any other applicable taxes. Depending on your location, X may be responsible for collecting and reporting information related to transaction taxes arising from your purchase of Paid Services. You grant X permission to provide your account and personal information to relevant tax authorities to fulfill our tax collection and reporting obligations. General Terms 1. Contact Information. If you have any questions about the Paid Services or these Terms, you can check out the X Paid Services Help Center for more details. If you’ve already purchased a Paid Service, you can also contact us via the support link available in the navigation menu of your X account under the payment or subscription settings. If you have additional questions, then you can contact us here by using the “Help with paid features” form. 2. DISCLAIMERS. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, YOUR ACCESS TO AND USE OF THE PAID SERVICES IS AT YOUR OWN RISK. YOU UNDERSTAND AND AGREE THAT THE PAID SERVICES ARE PROVIDED TO YOU ON AN “AS IS” AND “AS AVAILABLE” BASIS. X DISCLAIMS ALL WARRANTIES AND CONDITIONS, WHETHER EXPRESS OR IMPLIED, OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. X MAKES NO WARRANTY OR REPRESENTATION AND DISCLAIMS ALL RESPONSIBILITY AND LIABILITY FOR: (I) THE COMPLETENESS, ACCURACY, AVAILABILITY, TIMELINESS, SECURITY OR RELIABILITY OF THE PAID SERVICES; AND (II) WHETHER THE PAID SERVICES WILL MEET YOUR REQUIREMENTS OR BE AVAILABLE ON AN UNINTERRUPTED, SECURE, OR ERROR-FREE BASIS. YOU ARE RESPONSIBLE FOR YOUR USE OF THE X SERVICE, INCLUDING THE PAID SERVICES, AND ANY CONTENT YOU PROVIDE. 3. LIMITATION OF LIABILITY. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE X ENTITIES SHALL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR PUNITIVE DAMAGES, OR ANY LOSS OF PROFITS OR REVENUES, WHETHER INCURRED DIRECTLY OR INDIRECTLY, OR ANY LOSS OF DATA, USE, GOODWILL, OR OTHER INTANGIBLE LOSSES, RESULTING FROM (i) YOUR ACCESS TO OR USE OF OR INABILITY TO ACCESS OR USE THE PAID SERVICES; (ii) ANY CONDUCT OR CONTENT OF ANY THIRD PARTY POSTED THROUGH THE PAID SERVICES, INCLUDING WITHOUT LIMITATION, ANY DEFAMATORY, OFFENSIVE OR ILLEGAL CONDUCT OF OTHER USERS OR THIRD PARTIES; (iii) ANY CONTENT OBTAINED FROM THE PAID SERVICES; OR (iv) UNAUTHORIZED ACCESS, USE OR ALTERATION OF YOUR TRANSMISSIONS OR CONTENT. FOR THE AVOIDANCE OF DOUBT, THE DEFINITION OF PAID SERVICES IS LIMITED TO THE FEATURES OFFERED BY X AND DOES NOT INCLUDE ANY CONTENT YOU ACCESS AND/OR INTERACT WITH IN USING THOSE FEATURES. IN NO EVENT SHALL THE AGGREGATE LIABILITY OF THE X ENTITIES EXCEED THE GREATER OF ONE HUNDRED EUROS (€100.00) OR THE AMOUNT YOU PAID X, IF ANY, IN THE PAST SIX MONTHS FOR THE PAID SERVICES GIVING RISE TO THE CLAIM. THE LIMITATIONS OF THIS SUBSECTION SHALL APPLY TO ANY THEORY OF LIABILITY, WHETHER BASED ON WARRANTY, CONTRACT, STATUTE, TORT (INCLUDING NEGLIGENCE) OR OTHERWISE, AND WHETHER OR NOT THE X ENTITIES HAVE BEEN INFORMED OF THE POSSIBILITY OF ANY SUCH DAMAGE, AND EVEN IF A REMEDY SET FORTH HEREIN IS FOUND TO HAVE FAILED OF ITS ESSENTIAL PURPOSE. THE “X ENTITIES” REFERS TO X, ITS PARENTS, AFFILIATES, RELATED COMPANIES, OFFICERS, DIRECTORS, EMPLOYEES, AGENTS, REPRESENTATIVES, PARTNERS, AND LICENSORS. APPLICABLE LAW IN YOUR JURISDICTION MAY NOT ALLOW FOR CERTAIN LIMITATIONS OF LIABILITY. TO THE EXTENT REQUIRED BY APPLICABLE LAW IN YOUR JURISDICTION, THE ABOVE DOES NOT LIMIT THE X ENTITIES’ LIABILITY FOR FRAUD, FRAUDULENT MISREPRESENTATION, DEATH OR PERSONAL INJURY CAUSED BY OUR NEGLIGENCE, GROSS NEGLIGENCE, AND/OR INTENTIONAL CONDUCT. TO THE FULLEST EXTENT ALLOWED UNDER APPLICABLE LAW, THE X ENTITIES’ MAXIMUM AGGREGATE LIABILITY FOR ANY NON-EXCLUDABLE WARRANTIES IS LIMITED TO ONE HUNDRED EUROS (€100.00). 4. Notice Regarding Apple. To the extent that you purchased the Paid Services or are using or accessing the Paid Services on an iOS device, you further acknowledge and agree to the terms of this Section. You acknowledge that the Terms are between you and us only, not with Apple, and Apple is not responsible for the Paid Services and the content thereof. Apple has no obligation whatsoever to furnish any maintenance and support service with respect to the Paid Services. In the event of any failure of the Paid Services to conform to any applicable warranty, then you may notify Apple and Apple will refund any applicable purchase price for the Paid Services to you; and, to the maximum extent permitted by applicable law, Apple has no other warranty obligation whatsoever with respect to the Paid Services. Apple is not responsible for addressing any claims by you or any third-party relating to the Paid Services or your possession and/or use of the Paid Services, including, but not limited to: (i) product liability claims; (ii) any claim that the Paid Services fail to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation. Apple is not responsible for the investigation, defense, settlement and discharge of any third-party claim that the Paid Services and/or your possession and use of the mobile application infringe that third-party’s intellectual property rights. You agree to comply with any applicable third-party terms when using the Paid Services. Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms, and upon your acceptance of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms against you as a third-party beneficiary of the Terms. You hereby represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a "terrorist supporting" country; and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. 5. Conflict. In the event of a conflict between the provisions of this X Purchaser Terms of Service and those of the X User Agreement, the provisions of this X Purchaser Terms of Service take precedence solely with respect to your use of a Paid Service.   6. DISPUTE RESOLUTION AND CLASS ACTION WAIVER a. Initial Dispute Resolution .  Most disputes between you and X can be resolved informally. You may contact us by writing to Paid Support here . When you contact us, please provide a brief description of the nature and bases for your concerns, your contact information, and the specific relief you seek. The parties shall use their best efforts through this support process to settle disputes, claims, or controversies arising out of or relating to these Terms and/or your participation in the Program (individually a “ Dispute ,” or more than one, “ Disputes ”). You and we agree that good faith participation in this informal process is required and must be completed as set forth above before either party can initiate litigation regarding any Dispute, except with respect to requests for emergency injunctive relief (“ Exempted Dispute ”). If we cannot reach an agreed upon resolution with you regarding a Dispute (other than an Exempted Dispute) within a period of thirty (30) days from the time informal dispute resolution commences under the Initial Dispute Resolution provision above, then either you or we may initiate litigation. b.   Choice of Law and Forum Selection . PLEASE READ THIS SECTION CAREFULLY – IT MAY SIGNIFICANTLY AFFECT YOUR LEGAL RIGHTS, INCLUDING YOUR RIGHT TO FILE A LAWSUIT IN COURT. To the extent permitted by law, all disputes related to these Terms, including any disputes, claims, or controversies arising out of or relating to these Terms will be brought exclusively before a competent court in Ireland without regard to conflict of law provisions a
2026-01-13T08:47:43
https://docs.sui.io/guides/developer/getting-started/sui-install
Install Sui | Sui Documentation Skip to main content Sui Documentation Guides Concepts Standards References Search Overview Getting Started Install Sui Install from Source Install from Binaries Configure a Sui Client Create a Sui Address Get SUI from Faucet Hello, World! Connect a Frontend Next Steps Sui Essentials Objects Packages Currencies and Tokens NFTs Cryptography Nautilus Advanced App Examples Dev Cheat Sheet Operator Guides SuiPlay0X1 🗳️ Book Office Hours → 💬 Join Discord → Getting Started Install Sui On this page Install Sui Sui is a scalable and performant layer-1 blockchain that is home to a complete stack of native primitives ideal for building decentralized applications. Such primitives, such as those for encryption , data storage , verification, and access control, provide developers with every piece of the application stack without needing to use layer-2 chains or off-chain solutions. In contrast to other chains, Sui uses an object-centric model , where every item on the network is an object. Transactions use objects as input, which mutate an existing object or create new objects. Each object has a unique on-chain ID. To create objects, submit transactions, and start building an application on Sui, first you must install Sui. This installation includes the Sui CLI , a tool that creates and manages address balances, builds and publishes smart contracts, and queries information from the network. Prerequisites Have a machine with one of the following supported operating systems: Linux: Ubuntu version 22.04 (Jammy Jellyfish) or newer macOS: macOS Monterey or newer Microsoft Windows: Windows 10 or 11 Quick install ​ The Sui CLI is used to interact with the Sui network, deploy packages, and manage assets. To install the Sui CLI, you can use suiup . suiup is the most effective installation method, as it allows you to easily install and switch between different versions of not only the Sui CLI but also other Sui stack components like walrus and mvr . Alternative quick install instructions for Homebrew or Chocolately do not support installing other Sui stack components. Other components will need to be installed through their individual binaries if you'd like to use them in the future. caution Installations using Homebrew or Chocolatey might take several minutes if you do not have any of the Sui prerequisites installed. Using suiup is often much faster and highly recommended. suiup Homebrew Chocolatey First, install suiup : $ curl -sSfL \ https://raw.githubusercontent.com/Mystenlabs/suiup/main/install.sh \ | sh Then, install Sui: $ suiup install sui@testnet For alternative installation methods, refer to the suiup repository . danger Installing Sui with suiup does not configure the client. To use sui commands, you must configure the Sui client . To confirm that Sui installed correctly: Open a terminal or console Type sui --version and press Enter If you receive a "command not found" error, verify the Sui binaries directory is in your PATH environment variable. You must have Homebrew installed before running the following command: $ brew install sui To confirm that Sui installed correctly: Open a terminal or console Type sui --version and press Enter If you receive a "command not found" error, verify the Sui binaries directory is in your PATH environment variable. You must have Chocolately installed before running the following command: $ choco install sui Find more versions of Sui for Windows on the Chocolatey community website. To confirm that Sui installed correctly: Open a terminal or console Type sui --version and press Enter If you receive a "command not found" error, verify the Sui binaries directory is in your PATH environment variable. The quick install is suitable for most use cases. For those wanting more control over the installation process, you can install from source or install binaries . If Sui is already installed from a previous development environment, be sure to upgrade to the latest version . Looking for a project to clone? Before you can create and publish a smart contract, you must configure a Sui client and obtain SUI tokens . Then, you can create a "Hello, World!" example or clone another example to start building. Installation details ​ suiup installation details ​ Refer to the suiup repository's README for information regarding installation files and their locations. Default configuration file ​ Regardless of whether you used suiup , Homebrew, or Chocolately, Sui will store a primary configuration in the ~/.sui/sui_config/client.yaml file. This file defines settings and preferences for your environment, such as: Network environment details for Mainnet, Testnet, Devnet, and Localnet networks. Active environment, which specifies the network the CLI commands will target. Active address, which specifies the Sui address the CLI will use for transactions and queries. Keystore location, which specifies where Sui stores your address' private keys. Next steps Configure a Sui Client Configure a Sui client to get a Sui address and connect to Testnet. Get SUI from Faucet Obtain SUI from a faucet to deploy packages on Testnet. Hello, World! Clone the "Hello, World!" project. Edit this page Quick install Installation details suiup installation details Default configuration file © 2026 Sui Foundation | Documentation distributed under CC BY 4.0
2026-01-13T08:47:43
https://docs.suprsend.com/docs/management-api-overview
Overview - SuprSend, Notification infrastructure for Product teams Skip to main content SuprSend, Notification infrastructure for Product teams home page Search... ⌘ K Community Trust Center Platform Status Postman Collection API Reference Overview Authentication Errors WORKFLOWS POST Create/Update Workflow PATCH Commit Workflow GET Get Workflow GET List Workflows PATCH Enable/Disable Workflow DEL Delete Workflow SCHEMAS POST Create/Update Schema PATCH Commit Schema GET List Schemas GET Get Schema EVENTS POST Create Event PATCH Update Event GET List Events GET Get Event Details GET Get Linked Workflows PATCH Delink Schema from Event CATEGORIES GET Get Category POST Create/Update Category PATCH Commit Category GET List Translation GET Get Translation POST Add Translation DEL Delete Translation TRANSLATIONS POST Add Translation PATCH Commit Translation GET Get Translation GET List Translations GET Get Translation History POST Rollback Translation DEL Delete Translation Contact Us Get Started SuprSend, Notification infrastructure for Product teams home page Search... ⌘ K Ask AI Contact Us Get Started Get Started Search... Navigation API Reference Overview Documentation API Reference Management API CLI Reference Developer Resources Changelog Documentation API Reference Management API CLI Reference Developer Resources Changelog API Reference Overview OpenAI Open in ChatGPT Quick overview of SuprSend Management API. OpenAI Open in ChatGPT Note: The SuprSend management API only provides access to the resources managed in the SuprSend dashboard , such as workflows, templates, schemas, translations. APIs to manage all other data such as users, trigger workflows, manage tenants, preferences, etc. are available in the API Reference . Management APIs can be used to manage and push, pull SuprSend assets across workspaces. ​ Authentication The management API authenticates with a ServiceToken authentication. You can get service token by going to your account settings -> Service Tokens tab. Copy Ask AI Authorization: ServiceToken YOUR_SERVICE_TOKEN Was this page helpful? Yes No Suggest edits Raise issue Authentication Learn how to authenticate management API requests using service tokens. Next ⌘ I x github linkedin youtube Powered by On this page Authentication
2026-01-13T08:47:43
https://zenodo.org/records/18209805
LOBT EXCHANGE Blockchain-Based Stock Exchange for Real-Time Transparent Capital Markets A Research Framework Skip to main You are using an outdated browser. Please upgrade your browser to improve your experience. Communities My dashboard Log in Sign up Published January 10, 2026 | Version v1 Publication Open LOBT EXCHANGE Blockchain-Based Stock Exchange for Real-Time Transparent Capital Markets A Research Framework Creators Sharma, Priyanshu Description Version 1.0 January 2026 DISCLAIMER AND REQUEST FOR COMMENTS This paper presents a conceptual framework for tokenized equity markets. It is not a product announcement, securities offering, investment advice, or guarantee of future implementation. Key technical and regulatory challenges remain to be solved. This document is published to: - Solicit technical feedback from the blockchain community - Engage regulatory and legal experts - Identify potential collaborators and pilot partners - Contribute to the discourse on tokenized securities I acknowledges significant unsolved problems, particularly in oracle architecture for real-world verification, regulatory compliance across jurisdictions, and market adoption incentives. Feedback welcome: iam.pri.s@icloud.com Discussion: twitter.com/iam_pri_s Files LOBT Exchange_ Blockchain-Based Stock Exchange for Real-Time Transparent Capital Markets.pdf Files (366.0 kB) Name Size Download all LOBT Exchange_ Blockchain-Based Stock Exchange for Real-Time Transparent Capital Markets.pdf md5:34e89840520ca2cb7b0d6a8f4b4405d6 366.0 kB Preview Download 494 Views 104 Downloads Show more details All versions This version Views Total views 494 494 Downloads Total downloads 104 104 Data volume Total data volume 52.0 MB 52.0 MB More info on how stats are collected.... Versions External resources Indexed in OpenAIRE Communities Details DOI DOI Badge DOI 10.5281/zenodo.18209805 Markdown [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.18209805.svg)](https://doi.org/10.5281/zenodo.18209805) reStructuredText .. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.18209805.svg :target: https://doi.org/10.5281/zenodo.18209805 HTML <a href="https://doi.org/10.5281/zenodo.18209805"><img src="https://zenodo.org/badge/DOI/10.5281/zenodo.18209805.svg" alt="DOI"></a> Image URL https://zenodo.org/badge/DOI/10.5281/zenodo.18209805.svg Target URL https://doi.org/10.5281/zenodo.18209805 Resource type Publication Publisher Zenodo Rights License Creative Commons Attribution 4.0 International The Creative Commons Attribution license allows re-distribution and re-use of a licensed work on the condition that the creator is appropriately credited. Read more Citation Export Technical metadata Created January 10, 2026 Modified January 10, 2026 Jump up About About Policies Infrastructure Principles Projects Roadmap Contact Blog Blog Help FAQ Docs Guides Support Developers REST API OAI-PMH Contribute GitHub Donate Funded by Powered by CERN Data Centre & InvenioRDM Status Privacy policy Cookie policy Terms of Use Support This site uses cookies. Find out more on how we use cookies Accept all cookies Accept only essential cookies
2026-01-13T08:47:43
https://github.com/sarusso/bedtime
GitHub - sarusso/bedtime: Fall asleep by watching JavaScript load Skip to content Navigation Menu Toggle navigation Sign in Appearance settings Platform AI CODE CREATION GitHub Copilot Write better code with AI GitHub Spark Build and deploy intelligent apps GitHub Models Manage and compare prompts MCP Registry New Integrate external tools DEVELOPER WORKFLOWS Actions Automate any workflow Codespaces Instant dev environments Issues Plan and track work Code Review Manage code changes APPLICATION SECURITY GitHub Advanced Security Find and fix vulnerabilities Code security Secure your code as you build Secret protection Stop leaks before they start EXPLORE Why GitHub Documentation Blog Changelog Marketplace View all features Solutions BY COMPANY SIZE Enterprises Small and medium teams Startups Nonprofits BY USE CASE App Modernization DevSecOps DevOps CI/CD View all use cases BY INDUSTRY Healthcare Financial services Manufacturing Government View all industries View all solutions Resources EXPLORE BY TOPIC AI Software Development DevOps Security View all topics EXPLORE BY TYPE Customer stories Events & webinars Ebooks & reports Business insights GitHub Skills SUPPORT & SERVICES Documentation Customer support Community forum Trust center Partners Open Source COMMUNITY GitHub Sponsors Fund open source developers PROGRAMS Security Lab Maintainer Community Accelerator Archive Program REPOSITORIES Topics Trending Collections Enterprise ENTERPRISE SOLUTIONS Enterprise platform AI-powered developer platform AVAILABLE ADD-ONS GitHub Advanced Security Enterprise-grade security features Copilot for Business Enterprise-grade AI features Premium Support Enterprise-grade 24/7 support Pricing Search or jump to... Search code, repositories, users, issues, pull requests... --> Search Clear Search syntax tips Provide feedback --> We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Cancel Submit feedback Saved searches Use saved searches to filter your results more quickly --> Name Query To see all available qualifiers, see our documentation . Cancel Create saved search Sign in Sign up Appearance settings Resetting focus You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert {{ message }} sarusso / bedtime Public Notifications You must be signed in to change notification settings Fork 1 Star 29 Fall asleep by watching JavaScript load License Apache-2.0 license 29 stars 1 fork Branches Tags Activity Star Notifications You must be signed in to change notification settings Code Issues 0 Pull requests 0 Actions Projects 0 Security Uh oh! There was an error while loading. Please reload this page . Insights Additional navigation options Code Issues Pull requests Actions Projects Security Insights sarusso/bedtime   main Branches Tags Go to file Code Open more actions menu Folders and files Name Name Last commit message Last commit date Latest commit   History 4 Commits LICENSE LICENSE     README.md README.md     demo-1.jpg demo-1.jpg     demo-2.jpg demo-2.jpg     demo-3.jpg demo-3.jpg     index.html index.html     manifest.json manifest.json     sw.js sw.js     View all files Repository files navigation README Apache-2.0 license Bedtime Fall asleep by watching JavaScript load This little toy project progressively tells a bedtime story about Liora and its little companion, while intentionally making a JavaScript loader spin for no reason other than to help you get to sleep. As you go through the story, the time the loader spins increases while the speed at which the text appears decreases, so that you ideally never reach the end (unless you really, really want to). I came up with this one night when I couldn’t fall asleep and was looking for some data analysis results on a web platform, noticing that the spinner was actually making me sleepy. I am using it from time to time, and it helps a bit. So I decided to make it public. Here it is! You can try it directly at http://bedtime.my . If you add it to your phone’s home screen, it should display fullscreen. About Fall asleep by watching JavaScript load Resources Readme License Apache-2.0 license Uh oh! There was an error while loading. Please reload this page . Activity Stars 29 stars Watchers 0 watching Forks 1 fork Report repository Releases No releases published Packages 0 No packages published Languages HTML 99.0% JavaScript 1.0% Footer © 2026 GitHub, Inc. Footer navigation Terms Privacy Security Status Community Docs Contact Manage cookies Do not share my personal information You can’t perform that action at this time.
2026-01-13T08:47:43
https://dev.to/privacy#8-supplemental-disclosures-for-california-residents
Privacy Policy - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Privacy Policy Last Updated: September 01, 2023 This Privacy Policy is designed to help you understand how DEV Community Inc. (" DEV ," " we ," or " us ") collects, use, and discloses your personal information. What's With the Defined Terms? You'll notice that some words appear in quotes in this Privacy Policy.  They're called "defined terms," and we use them so that we don't have to repeat the same language again and again.  They mean the same thing in every instance, to help us make sure that this Privacy Policy is consistent. We've included the defined terms throughout because we want it to be easy for you to read them in context. 1. WHAT DOES THIS PRIVACY POLICY APPLY TO? 2. PERSONAL INFORMATION WE COLLECT 3. HOW WE USE YOUR INFORMATION 4. HOW WE DISCLOSE YOUR INFORMATION 5. YOUR PRIVACY CHOICES AND RIGHTS 6. INTERNATIONAL DATA TRANSFERS 7. RETENTION OF PERSONAL INFORMATION 8. SUPPLEMENTAL DISCLOSURES FOR CALIFORNIA RESIDENTS 9. SUPPLEMENTAL NOTICE FOR NEVADA RESIDENTS 10. CHILDREN'S INFORMATION 11. OTHER PROVISIONS 12. CONTACT US 1. WHAT DOES THIS PRIVACY POLICY APPLY TO? This Privacy Policy applies to personal information processed by us, including on our websites, mobile applications, and other online or offline offerings — basically anything we do. To make this Privacy Policy easier to read, our websites, mobile applications, and other offerings are all collectively called the " Services. " Beyond this Privacy Policy, your use of the Services is subject to our DEV Community Terms and our Forem Terms. The Services include both our own community forum at https://www.dev.to (the " DEV Community ") and the open source tool we provide called " Forem ," available at https://www.forem.com which allows our customers to create and operate their own online forums. We collect personal information from two categories of people: (1) our customers, who use Forem and our hosting services to run and host their own forums (we'll call them " Forem Operators "), and (2) the people who interact with DEV-hosted forums, including forums provided by Forem Operators utilizing Forem and separately our own DEV Community (we'll call them " Users "). An Important Note for Users Since we provide hosting services for Forem Operators, technically we also process your information on their behalf. That processing is governed by the contracts that we have in place with each Forem Operator, not this Privacy Policy. In other words, when you share your data on a DEV-hosted forum operated by a Forem Operator, we at DEV are basically just the "pipes" — we process the data on behalf of the Forem Operator, but don't do anything with it ourselves beyond what we're required to do under our contract (and by law). So, if you post your information on a DEV-powered forum provided by a Forem Operator, that Forem Operator's privacy policy applies, and any questions or requests relating to your data on that service should be directed to that Forem Operator, not us. Likewise, if you use our mobile application, you may also interact with forums that use DEV's open-source tools but do all their hosting and data collection themselves. For those forums, we at DEV have no access to your data, so be sure to read the privacy policy of any third-party hosted forum before posting. 2. PERSONAL INFORMATION WE COLLECT The categories of personal information we collect depend on whether you're a User or Forem Operator, how you interact with us, our Services, and the requirements of applicable law. Breaking it down, we collect three types of information: (1) information that you provide to us directly, (2) information we obtain automatically when you use our Services, and (3) information we get about you from other sources (such as third-party services and organizations). More details are below. A. Information You Provide to Us Directly We may collect the following personal information that you provide to us. Account Creation (for Forem Operators): We'll require your name and email address to get started, as well as some details about the Forem you want to run, such as: whether you're running the Forem on your own behalf or as part of an organization, and details about the community you want to support (how big is it, what topics does it cover, where do members currently communicate, how/if the community earns money, whether the community is open, invite-only or paid, any existing social media accounts, etc.) You'll need to tell us a bit about your personal coding background, and you'll have the option to provide your DEV username as well, if you are a member of the DEV.to community. Account Creation (for Users) : We collect name and email address from users that create an account on DEV Community. For other forums created by Forem Operators using Forem, the Forem Operator determines what information is required for User account creation for their respective forums. Interactive Features (for Users) . Like any other social network, both we and other Users of our Services may collect personal information that you submit or make available through our interactive features (e.g., messaging and chat features, commenting functionalities, forums, blogs, posts, and other social media pages). While we do have private messages that are only between you and the person you're messaging (as well as us and the Forem Operator, as applicable), any information you provide using the public sharing features of the Services, such as the information you post to your public profile or the topics you follow is public, including to recruiters and prospective employers, and is not subject to any of the privacy protections we mention in this Privacy Policy except where legally required. Please exercise caution before revealing any information that may identify you in the real world to others. Purchases . If you buy stuff on our shop site https://shop.dev.to/ (as either a User or Forem Operator), or otherwise if you pay us in connection with your use of the Forem service, we may collect personal information and details associated with your purchases, including payment information. Any payments made via our Services are processed by third-party payment processors, such as Stripe, Shopify, and PayPal. We do not directly collect or store any payment card information entered through our Services, but may receive information associated with your payment card information (e.g., your billing details). Your Communications with Us (Users and Forem Operators) . We may collect personal information, such as email address, phone number, or mailing address when you request information about our Services, register for our newsletter or loyalty program, request customer or technical support, apply for a job, or otherwise communicate with us. Surveys . We may contact you to participate in surveys. If you decide to participate, you may be asked to provide certain information, which may include personal information (for example, your home address). Sweepstakes or Contests . We may collect personal information you provide for any sweepstakes or contests that we offer. In some jurisdictions, we are required to publicly share information of sweepstakes and contest winners. Conferences, Trade Shows, and Other Events . We may collect personal information from individuals when we attend conferences, trade shows, and other events. Business Development and Strategic Partnerships . We may collect personal information from individuals and third parties to assess and pursue potential business opportunities. Job Applications . We may post job openings and opportunities on our Services. If you reply to one of these postings by submitting your application, CV and/or cover letter to us, we will collect and use your information to assess your qualifications. B. Information Collected Automatically We may collect personal information automatically when you use our Services: Automatic Data Collection . We may collect certain information automatically when you use our Services, such as your Internet protocol (IP) address, user settings, MAC address, cookie identifiers, mobile carrier, mobile advertising and other unique identifiers, browser or device information, location information (including approximate location derived from IP address), and Internet service provider. We may also automatically collect information regarding your use of our Services, such as pages that you visit before, during and after using our Services, information about the links you click, the types of content you interact with, the frequency and duration of your activities, and other information about how you use our Services. In addition, we may collect information that other people provide about you when they use our Services, including information about you when they tag you in their posts. Cookies, Pixel Tags/Web Beacons, and Other Technologies . We, as well as third parties that provide content, advertising, or other functionality on our Services, may use cookies, pixel tags, local storage, and other technologies (" Technologies ") to automatically collect information through your use of our Services. Cookies . Cookies are small text files placed in device browsers that store preferences and facilitate and enhance your experience. Pixel Tags/Web Beacons . A pixel tag (also known as a web beacon) is a piece of code embedded in our Services that collects information about engagement on our Services. The use of a pixel tag allows us to record, for example, that a user has visited a particular web page or clicked on a particular advertisement. We may also include web beacons in e-mails to understand whether messages have been opened, acted on, or forwarded. Our uses of these Technologies fall into the following general categories: Operationally Necessary . This includes Technologies that allow you access to our Services, applications, and tools that are required to identify irregular website behavior, prevent fraudulent activity and improve security or that allow you to make use of our functionality. Performance-Related . We may use Technologies to assess the performance of our Services, including as part of our analytic practices to help us understand how individuals use our Services ( see Analytics below ). Functionality-Related . We may use Technologies that allow us to offer you enhanced functionality when accessing or using our Services. This may include identifying you when you sign into our Services or keeping track of your specified preferences, interests, or past items viewed. Analytics . We may use Technologies and other third-party tools to process analytics information on our Services. Some of our analytics partners include Google Analytics. For more information,please visit Google Analytics' Privacy Policy . To learn more about how to opt-out of Google Analytics' use of your information, please click here . Social Media Platforms . Our Services may contain social media buttons such as Twitter, Facebook, GitHub, Instagram, and Twitch (that might include widgets such as the "share this" button or other interactive mini programs). These features may collect your IP address, which page you are visiting on our Services, and may set a cookie to enable the feature to function properly. Your interactions with these platforms are governed by the privacy policy of the company providing it. See the "Your Privacy Choices and Rights" section below to understand your choices regarding these Technologies. C. Information Collected from Other Sources We may obtain information about you from other sources, including through third-party services and organizations. For example, if you access our Services through a third-party application, such as an app store, a third-party login service (e.g., through Twitter, Apple, or GitHub), or a social networking site, we may collect whatever information about you from that third-party application that you have made available via your privacy settings. 3. HOW WE USE YOUR INFORMATION We use your information for a variety of business purposes, including to provide our Services, for administrative purposes, and to market our products and Services, as described below. A. Provide Our Services We use your information to fulfill our contract with you and provide you with our Services, such as: Managing your information and accounts; Providing access to certain areas, functionalities, and features of our Services; Answering requests for customer or technical support; Communicating with you about your account, activities on our Services, and policy changes; Processing your financial information and other payment methods for products or Services purchased; Processing applications if you apply for a job we post on our Services; and Allowing you to register for events. B. Administrative Purposes We use your information for various administrative purposes, such as: Pursuing our legitimate interests such as direct marketing, research and development (including marketing research), network and information security, and fraud prevention; Detecting security incidents, protecting against malicious, deceptive, fraudulent or illegal activity, and prosecuting those responsible for that activity; Measuring interest and engagement in our Services, including for usage-based billing purposes; Short-term, transient use, such as contextual customization of ads; Improving, optimizing, upgrading, or enhancing our Services; Developing new products and Services; Ensuring internal quality control and safety; Authenticating and verifying individual identities, including requests to exercise your rights under this policy; Debugging to identify and repair errors with our Services; Auditing relating to interactions, transactions and other compliance activities; Enforcing our agreements and policies; and Complying with our legal obligations. C. Marketing and Advertising our Products and Services We may use your personal information to tailor and provide you with content and advertisements for our Services, such as via email. If you have any questions about our marketing practices, you may contact us at any time as set forth in the "Contact Us" section below. D. Other Purposes We also use your information for other purposes as requested by you or as permitted by applicable law. Consent . We may use personal information for other purposes that are clearly disclosed to you at the time you provide personal information or with your consent. Automated Decision Making. We may engage in automated decision making, including profiling, such as to suggest topics or other Users for you to follow. DEV's processing of your personal information will not result in a decision based solely on automated processing that significantly affects you unless such a decision is necessary as part of a contract we have with you, we have your consent, or we are permitted by law to engage in such automated decision making. If you have questions about our automated decision making, you may contact us as set forth in the "Contact Us" section below. De-identified and Aggregated Information . We may use personal information and other information about you to create de-identified and/or aggregated information, such as de-identified demographic information, information about the device from which you access our Services, or other analyses we create. For example, we may collect system-wide information to ensure availability of the platform, or measure aggregate data trends to analyze and optimize our Services. Share Content with Friends or Colleagues. Our Services may offer various tools and functionalities. For example, we may allow you to provide information about your friends through our referral services. Our referral services may allow you to forward or share certain content with a friend or colleague, such as an email inviting your friend to use our Services. Please only share with us contact information of people with whom you have a relationship (e.g., relative, friend neighbor, or co-worker). 4. HOW WE DISCLOSE YOUR INFORMATION We disclose your information to third parties for a variety of business purposes, including to provide our Services, to protect us or others, or in the event of a major business transaction such as a merger, sale, or asset transfer, as described below. A. Disclosures to Provide our Services The categories of third parties with whom we may share your information are described below. Service Providers . We may share your personal information with our third-party service providers who use that information to help us provide our Services. This includes service providers that provide us with IT support, hosting, payment processing, customer service, and related services. For example, our Shop site is run by Shopify, who handle your shipping details on our behalf. Business Partners . We may share your personal information with business partners to provide you with a product or service you have requested. We may also share your personal information to business partners with whom we jointly offer products or services. Other Users . As described above in the "Personal Information We Collect" section of this Privacy Policy, our Service allows Users to share their profiles, and any posts, chats, etc. with other Users and with the general public, including to those who do not use our Services. APIs/SDKs . We may use third-party Application Program Interfaces ("APIs") and Software Development Kits ("SDKs") as part of the functionality of our Services. For more information about our use of APIs and SDKs, please contact us as set forth in the "Contact Us" section below. B . Disclosures to Protect Us or Others We may access, preserve, and disclose any information we store associated with you to external parties if we, in good faith, believe doing so is required or appropriate to: comply with law enforcement or national security requests and legal process, such as a court order or subpoena; protect your, our, or others' rights, property, or safety; enforce our policies or contracts; collect amounts owed to us; or assist with an investigation or prosecution of suspected or actual illegal activity. C. Disclosure in the Event of Merger, Sale, or Other Asset Transfers If we are involved in a merger, acquisition, financing due diligence, reorganization, bankruptcy, receivership, purchase or sale of assets, or transition of service to another provider, your information may be sold or transferred as part of such a transaction, as permitted by law and/or contract. 5. YOUR PRIVACY CHOICES AND RIGHTS Your Privacy Choices . The privacy choices you may have about your personal information are determined by applicable law and are described below. Email Communications . If you receive an unwanted email from us, you can use the unsubscribe link found at the bottom of the email to opt out of receiving future emails. Note that you will continue to receive transaction-related emails regarding products or Services you have requested. We may also send you certain non-promotional communications regarding us and our Services, and you will not be able to opt out of those communications (e.g., communications regarding our Services or updates to our Terms or this Privacy Policy). Mobile Devices . We may send you push notifications through our mobile application. You may opt out from receiving these push notifications by changing the settings on your mobile device. "Do Not Track." Do Not Track (" DNT ") is a privacy preference that users can set in certain web browsers. Please note that we do not respond to or honor DNT signals or similar mechanisms transmitted by web browsers. Cookies and Interest-Based Advertising . You may stop or restrict the placement of Technologies on your device or remove them by adjusting your preferences as your browser or device permits. However, if you adjust your preferences, our Services may not work properly. Please note that cookie-based opt-outs are not effective on mobile applications. Please note you must separately opt out in each browser and on each device. Your Privacy Rights . In accordance with applicable law, you may have the right to: Access Personal Information about you, including: (i) confirming whether we are processing your personal information; (ii) obtaining access to or a copy of your personal information; Request Correction of your personal information where it is inaccurate, incomplete or outdated. In some cases, we may provide self-service tools that enable you to update your personal information; Request Deletion, Anonymization or Blocking of your personal information when processing is based on your consent or when processing is unnecessary, excessive or noncompliant; Request Restriction of or Object to our processing of your personal information when processing is noncompliant; Withdraw Your Consent to our processing of your personal information. If you refrain from providing personal information or withdraw your consent to processing, some features of our Service may not be available; Request Data Portability and Receive an Electronic Copy of Personal Information that You Have Provided to Us; Be Informed about third parties with which your personal information has been shared; and Request the Review of Decisions Taken Exclusively Based on Automated Processing if such decisions could affect your data subject rights. If you would like to exercise any of these rights, please contact us as set forth in "Contact Us" below. We will process such requests in accordance with applicable laws. 6. INTERNATIONAL DATA TRANSFERS All information processed by us may be transferred, processed, and stored anywhere in the world, including, but not limited to, the United States or other countries, which may have data protection laws that are different from the laws where you live. We always strive to safeguard your information consistent with the requirements of applicable laws. 7. RETENTION OF PERSONAL INFORMATION We store the personal information we collect as described in this Privacy Policy for as long as you use our Services or as necessary: to fulfill the purpose or purposes for which it was collected, to provide our Services, to resolve disputes, to establish legal defenses, to conduct audits, to pursue legitimate business purposes, to enforce our agreements, and to comply with applicable laws.  8. SUPPLEMENTAL DISCLOSURES FOR CALIFORNIA RESIDENTS Refer-a-Friend and Similar Incentive Programs . As described above in the How We Use Your Personal Information section ("Share Content with Friends or Colleagues" subsection), we may offer referral programs or other incentivized data collection programs. For example, we may offer incentives to you such as discounts or promotional items or credit in connection with these programs, wherein you provide your personal information in exchange for a reward, or provide personal information regarding your friends or colleagues (such as their email address) and receive rewards when they sign up to use our Services. (The referred party may also receive rewards for signing up via your referral.) These programs are entirely voluntary and allow us to grow our business and provide additional benefits to you. The value of your data to us depends on how you ultimately use our Services, whereas the value of the referred party's data to us depends on whether the referred party ultimately becomes a User or Forem Operator and uses our Services. Said value will be reflected in the incentive offered in connection with each program. Accessibility . This Privacy Policy uses industry-standard technologies and was developed in line with the World Wide Web Consortium's Web Content Accessibility Guidelines, version 2.1* . * If you wish to print this policy, please do so from your web browser or by saving the page as a PDF. California Shine the Light . The California "Shine the Light" law permits users who are California residents to request and obtain from us once a year, free of charge, a list of the third parties to whom we have disclosed their personal information (if any) for their direct marketing purposes in the prior calendar year, as well as the type of personal information disclosed to those parties. Right for Minors to Remove Posted Content . Where required by law, California residents under the age of 18 may request to have their posted content or information removed from the publicly-viewable portions of the Services by contacting us directly as set forth in the "Contact Us" section below or by logging into their account and removing the content or information using our self-service tools. 9. SUPPLEMENTAL NOTICE FOR NEVADA RESIDENTS If you are a resident of Nevada, you have the right to opt-out of the sale of certain Personal Information to third parties who intend to license or sell that Personal Information. You can exercise this right by contacting us as set forth in the "Contact Us\" section below with the subject line "Nevada Do Not Sell Request" and providing us with your name and the email address associated with your account. Please note that we do not currently sell your Personal Information as sales are defined in Nevada Revised Statutes Chapter 603A. If you have any questions, please contact us as set forth below. 10. CHILDREN'S INFORMATION The Services are not directed to children under 13 (or other age as required by local law), and we do not knowingly collect personal information from children. If you are a parent or guardian and believe your child has uploaded personal information to our site without your consent, you may contact us as described in the "Contact Us" section below. If we become aware that a child has provided us with personal information in violation of applicable law, we will delete any personal information we have collected, unless we have a legal obligation to keep it, and terminate the child's account if applicable. 11. OTHER PROVISIONS Third-Party Websites or Applications . The Services may contain links to other websites or applications, and other websites or applications may reference or link to our Services. These third-party services are not controlled by us. We encourage our users to read the privacy policies of each website and application with which they interact. We do not endorse, screen or approve, and are not responsible for, the privacy practices or content of such other websites or applications. Providing personal information to third-party websites or applications is at your own risk. Changes to Our Privacy Policy . We may revise this Privacy Policy from time to time in our sole discretion. If there are any material changes to this Privacy Policy, we will notify you as required by applicable law. You understand and agree that you will be deemed to have accepted the updated Privacy Policy if you continue to use our Services after the new Privacy Policy takes effect. 12. CONTACT US If you have any questions about our privacy practices or this Privacy Policy, or to exercise your rights as detailed in this Privacy Policy, please contact us at: support@dev.to . 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://ads.x.com/terms
X Master Services Agreement X logo icon X Master Services Agreement Americas United States of America and Canada Brazil Rest of Americas Europe, Middle East, Africa United Kingdom Rest of Europe, Middle East, Africa Asia Pacific Indonesia Japan Korea Philippines Rest of Asia Pacific © 2026 X Corp. Cookies Privacy Terms and conditions Language English Italiano Deutsch Español Français 日本語 한국어 ‎Português Русский العربية Bahasa Indonesia Türkçe 简体中文 Čeština Ελληνικά Norsk Polski Română Nederlands Български Dansk Eesti Suomi Gaeilge Hrvatski Magyar Lietuvių Latviešu Malti Slovenčina Slovenščina Svenska Did someone say … cookies? X and its partners use cookies to provide you with a better, safer and faster service and to support our business. Some cookies are necessary to use our services, improve our services, and make sure they work properly. Show more about your choices . Accept all cookies Refuse non-essential cookies
2026-01-13T08:47:43
https://github.com/finbarr/yolobox
GitHub - finbarr/yolobox: Let your AI go full send. Your home directory stays home. Skip to content Navigation Menu Toggle navigation Sign in Appearance settings Platform AI CODE CREATION GitHub Copilot Write better code with AI GitHub Spark Build and deploy intelligent apps GitHub Models Manage and compare prompts MCP Registry New Integrate external tools DEVELOPER WORKFLOWS Actions Automate any workflow Codespaces Instant dev environments Issues Plan and track work Code Review Manage code changes APPLICATION SECURITY GitHub Advanced Security Find and fix vulnerabilities Code security Secure your code as you build Secret protection Stop leaks before they start EXPLORE Why GitHub Documentation Blog Changelog Marketplace View all features Solutions BY COMPANY SIZE Enterprises Small and medium teams Startups Nonprofits BY USE CASE App Modernization DevSecOps DevOps CI/CD View all use cases BY INDUSTRY Healthcare Financial services Manufacturing Government View all industries View all solutions Resources EXPLORE BY TOPIC AI Software Development DevOps Security View all topics EXPLORE BY TYPE Customer stories Events & webinars Ebooks & reports Business insights GitHub Skills SUPPORT & SERVICES Documentation Customer support Community forum Trust center Partners Open Source COMMUNITY GitHub Sponsors Fund open source developers PROGRAMS Security Lab Maintainer Community Accelerator Archive Program REPOSITORIES Topics Trending Collections Enterprise ENTERPRISE SOLUTIONS Enterprise platform AI-powered developer platform AVAILABLE ADD-ONS GitHub Advanced Security Enterprise-grade security features Copilot for Business Enterprise-grade AI features Premium Support Enterprise-grade 24/7 support Pricing Search or jump to... Search code, repositories, users, issues, pull requests... --> Search Clear Search syntax tips Provide feedback --> We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Cancel Submit feedback Saved searches Use saved searches to filter your results more quickly --> Name Query To see all available qualifiers, see our documentation . Cancel Create saved search Sign in Sign up Appearance settings Resetting focus You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert {{ message }} finbarr / yolobox Public Notifications You must be signed in to change notification settings Fork 6 Star 151 Let your AI go full send. Your home directory stays home. License MIT license 151 stars 6 forks Branches Tags Activity Star Notifications You must be signed in to change notification settings Code Issues 0 Pull requests 0 Actions Projects 0 Security Uh oh! There was an error while loading. Please reload this page . Insights Additional navigation options Code Issues Pull requests Actions Projects Security Insights finbarr/yolobox   master Branches Tags Go to file Code Open more actions menu Folders and files Name Name Last commit message Last commit date Latest commit   History 49 Commits .github/ workflows .github/ workflows     cmd/ yolobox cmd/ yolobox     .gitignore .gitignore     CLAUDE.md CLAUDE.md     CONTRIBUTING.md CONTRIBUTING.md     Dockerfile Dockerfile     LICENSE LICENSE     Makefile Makefile     README.md README.md     go.mod go.mod     go.sum go.sum     install.sh install.sh     View all files Repository files navigation README Contributing MIT license ██╗ ██╗ ██████╗ ██╗ ██████╗ ██████╗ ██████╗ ██╗ ██╗ ╚██╗ ██╔╝██╔═══██╗██║ ██╔═══██╗██╔══██╗██╔═══██╗╚██╗██╔╝ ╚████╔╝ ██║ ██║██║ ██║ ██║██████╔╝██║ ██║ ╚███╔╝ ╚██╔╝ ██║ ██║██║ ██║ ██║██╔══██╗██║ ██║ ██╔██╗ ██║ ╚██████╔╝███████╗╚██████╔╝██████╔╝╚██████╔╝██╔╝ ██╗ ╚═╝ ╚═════╝ ╚══════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝ Let your AI go full send. Your home directory stays home. Run Claude Code , Codex , or any AI coding agent in "yolo mode" without nuking your home directory. The Problem AI coding agents are incredibly powerful when you let them run commands without asking permission. But one misinterpreted prompt and rm -rf ~ later, you're restoring from backup (yea right, as if you have backups lol). The Solution yolobox runs your AI agent inside a container where: ✅ Your project directory is mounted at /workspace ✅ The agent has full permissions and sudo inside the container ✅ Your home directory is NOT mounted (unless you explicitly opt in) ✅ Persistent volumes keep tools and configs across sessions The AI can go absolutely wild inside the sandbox. Your actual home directory? Untouchable. Quick Start # Install (requires Go) curl -fsSL https://raw.githubusercontent.com/finbarr/yolobox/master/install.sh | bash # Or clone and build git clone https://github.com/finbarr/yolobox.git cd yolobox make install Then from any project: cd /path/to/your/project yolobox You're now in a sandboxed shell. Run claude and let it rip. What's in the Box? The base image comes batteries-included: AI CLIs : Claude Code, Gemini CLI, OpenAI Codex, OpenCode (all pre-configured for full-auto mode!) Node.js 22 + npm/yarn/pnpm Python 3 + pip + venv Build tools : make, cmake, gcc Git + GitHub CLI Common utilities : ripgrep, fd, fzf, jq, vim Need something else? You have sudo. AI CLIs Run in YOLO Mode Inside yolobox, the AI CLIs are aliased to skip all permission prompts: Command Expands to claude claude --dangerously-skip-permissions codex codex --dangerously-bypass-approvals-and-sandbox gemini gemini --yolo opencode opencode (no yolo flag available yet) No confirmations, no guardrails—just pure unfiltered AI, the way nature intended. Commands yolobox # Drop into interactive shell yolobox run < cmd... > # Run a single command yolobox run claude # Run Claude Code in sandbox yolobox upgrade # Update binary and pull latest image yolobox config # Show resolved configuration yolobox reset --force # Delete volumes (fresh start) yolobox version # Show version yolobox help # Show help Flags Flag Description --runtime <name> Use docker or podman --image <name> Custom base image --mount <src:dst> Extra mount (repeatable) --env <KEY=val> Set environment variable (repeatable) --ssh-agent Forward SSH agent socket --no-network Disable network access --readonly-project Mount project read-only (outputs go to /output ) --claude-config Copy host ~/.claude config into container Auto-Forwarded Environment Variables These are automatically passed into the container if set: ANTHROPIC_API_KEY OPENAI_API_KEY GITHUB_TOKEN / GH_TOKEN OPENROUTER_API_KEY GEMINI_API_KEY Configuration Create ~/.config/yolobox/config.toml for global defaults: runtime = " docker " image = " ghcr.io/finbarr/yolobox:latest " ssh_agent = true Or .yolobox.toml in your project for project-specific settings: mounts = [ " ../shared-libs:/libs:ro " ] env = [ " DEBUG=1 " ] no_network = true Priority: CLI flags > project config > global config > defaults. Note: Setting claude_config = true in your config will copy your host's Claude config on every container start, overwriting any changes made inside the container. Use the CLI flag --claude-config for one-time syncs. Runtime Support macOS : Docker Desktop, OrbStack, or Colima Linux : Docker or Podman Memory: Claude Code needs 4GB+ RAM allocated to Docker. Colima defaults to 2GB which will cause OOM kills. Increase with: colima stop && colima start --memory 8 Security Model How It Works yolobox uses container isolation (Docker or Podman) as its security boundary. When you run yolobox , it: Starts a container with your project mounted at /workspace Runs as user yolo with sudo access inside the container Does NOT mount your home directory (unless explicitly requested) Uses Linux namespaces to isolate the container's filesystem, process tree, and network The AI agent has full root access inside the container , but the container's view of the filesystem is restricted to what yolobox explicitly mounts. Trust Boundary The trust boundary is the container runtime (Docker/Podman). This means: ✅ Protection against accidental rm -rf ~ or credential theft ✅ Protection against most filesystem-based attacks ⚠️ NOT protection against container escapes — a sufficiently advanced exploit targeting kernel vulnerabilities could break out ⚠️ NOT protection against a malicious AI deliberately trying to escape — this is defense against accidents, not adversarial attacks If you're worried about an AI actively trying to escape containment, you need VM-level isolation (see "Hardening Options" below). Threat Model What yolobox protects: Your home directory from accidental deletion Your SSH keys, credentials, and dotfiles Other projects on your machine Host system files and configurations What yolobox does NOT protect: Your project directory (it's mounted read-write by default) Network access (use --no-network to disable) The container itself (the AI has root via sudo) Against kernel exploits or container escape vulnerabilities Hardening Options Level 1: Basic (default) yolobox # Standard container isolation Level 2: Reduced attack surface yolobox run --no-network --readonly-project claude Level 3: Rootless Podman (recommended for security-conscious users) # Install podman and run rootless yolobox --runtime podman Rootless Podman runs the container without root privileges on the host, using user namespaces. This significantly reduces the impact of container escapes since the container's "root" maps to your unprivileged user on the host. Level 4: VM isolation (maximum security) For true isolation with no shared kernel, consider running yolobox inside a VM: macOS : Use a Linux VM via UTM, Parallels, or Lima Linux : Use a Podman machine or dedicated VM This adds significant overhead but eliminates kernel-level attack surface. Network Isolation with Podman For users who want to prevent container access to the local network while preserving internet access: # Rootless podman uses slirp4netns by default, which provides # network isolation from the host network podman run --network=slirp4netns:allow_host_loopback=false ... yolobox doesn't currently expose this as a flag, but you can achieve it by running rootless Podman (the default network mode for rootless is slirp4netns). Building the Base Image make image This builds yolobox/base:latest locally. Why "yolobox"? Because you want to tell your AI agent "just do it" without consequences. YOLO, but in a box. Development Building make build # Build binary make test # Run tests make lint # Run linters make image # Build Docker image make install # Install to ~/.local/bin Versioning Version is derived automatically from git tags via git describe : Tagged commit: v0.1.1 After tag: v0.1.1-3-gead833b (3 commits after tag) Uncommitted changes: adds -dirty No files to edit for releases. The Makefile handles it. Releasing To release a new version: git tag v0.1.2 git push origin master --tags That's it. GitHub Actions will automatically: Build binaries for linux/darwin × amd64/arm64 Create a GitHub release with binaries and checksums Build and push Docker image to ghcr.io/finbarr/yolobox Version policy: Patch bump ( 0.1.x ): Bug fixes, security fixes Minor bump ( 0.x.0 ): New features Major bump ( x.0.0 ): Breaking changes License MIT About Let your AI go full send. Your home directory stays home. Resources Readme License MIT license Contributing Contributing Uh oh! There was an error while loading. Please reload this page . Activity Stars 151 stars Watchers 1 watching Forks 6 forks Report repository Releases 5 v0.1.4 Latest Jan 13, 2026 + 4 releases Packages 0       Uh oh! There was an error while loading. Please reload this page . Contributors 2 finbarr Finbarr Taylor claude Claude Languages Go 75.3% Dockerfile 13.9% Shell 8.9% Makefile 1.9% Footer © 2026 GitHub, Inc. Footer navigation Terms Privacy Security Status Community Docs Contact Manage cookies Do not share my personal information You can’t perform that action at this time.
2026-01-13T08:47:43
https://dev.to/adventuresinangular/state-management-with-rxjs-aia-363
State Management with RxJS - AiA 363 - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Adventures in Angular Follow State Management with RxJS - AiA 363 Dec 29 '22 play Amal Ayyash is a UX Designer and Front-end Developer. and her current main focus is Angular. She joins Chuck and Lucas to discuss her article, “RxJS-based state management in Angular”. She starts the show off by explaining the reason why she chose to use RxJS to create state management instead of using NgRX. She also gives advice to other developers, encouraging them to use their own frameworks or codes rather than third-party solutions. About this Episode Methods of handling the Angular State Management Advantages of using RxJS in creating an Angular State Management Comparison between using RxJS and NgRX-based solution   On YouTube State Management with RxJS - AiA 363 Sponsors Chuck's Resume Template Developer Book Club starting with Clean Architecture by Robert C. Martin Become a Top 1% Dev with a Top End Devs Membership Links RxJS based state management in Angular Sekab Garage AMAL AYYASH LinkedIn: Amal Ayyash Twitter: @SekrabBin Picks Ayyash -  The peter principle Ayyash -  Secondhand Time: The Last of the Soviets Chuck -  Camel Up | Board Game - BoardGameGeek Chuck -  Black Panther: Wakanda Forever (Movie, 2022) - Marvel Lucas -   Logitech BRIO Webcam with 4K Ultra HD Video & HDR Advertising Inquiries: https://redcircle.com/brands Privacy & Opt-Out: https://redcircle.com/privacy Episode source Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Your browser does not support the audio element. 1x initializing... × 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://privacy.x.com/for-our-users/x-consumer-health-data-policy
X Consumer Health Data Policy Skip to main content Privacy <path opacity="0" d="M0 0h24v24H0z" /> <path d="M17.207 11.293l-7.5-7.5c-.39-.39-1.023-.39-1.414 0s-.39 1.023 0 1.414L15.086 12l-6.793 6.793c-.39.39-.39 1.023 0 1.414.195.195.45.293.707.293s.512-.098.707-.293l7.5-7.5c.39-.39.39-1.023 0-1.414z" /> </svg>" data-icon-arrow-left="<svg width="28px" height="28px" viewbox="0 0 28 28" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="none" class="twtr-icon u01b__icon-arrow-left"> <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round"> <g transform="translate(-1216.000000, -298.000000)" stroke-width="2.25"> <g transform="translate(1200.000000, 282.000000)"> <g transform="translate(17.000000, 17.000000)"> <path d="M0.756410256,12.8589744 L25.7179487,12.8589744"></path> <path d="M13.2371795,25.3397436 L25.7179487,12.8589744"></path> <path d="M13.2371795,12.4807692 L25.3397436,0.378205128" transform="translate(19.288462, 6.429487) rotate(-90.000000) translate(-19.288462, -6.429487) "></path> </g> </g> </g> </g> </svg>" data-icon-chevron-down="<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" aria-hidden="true" focusable="false" role="none" class="twtr-icon"> <path opacity="0" d="M0 0h24v24H0z" /> <path d="M20.207 7.043c-.39-.39-1.023-.39-1.414 0L12 13.836 5.207 7.043c-.39-.39-1.023-.39-1.414 0s-.39 1.023 0 1.414l7.5 7.5c.195.195.45.293.707.293s.512-.098.707-.293l7.5-7.5c.39-.39.39-1.023 0-1.414z" /> </svg>" data-icon-close="<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewbox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve" aria-hidden="true" focusable="false" role="none" class="twtr-icon--md"> <g> <g> <defs> <rect id="SVGID_1_" x="-468" y="-1360" width="1440" height="3027" /> </defs> <clippath id="SVGID_2_"> <use xlink:href="#SVGID_1_" style="overflow:visible;" /> </clippath> </g> </g> <rect x="-468" y="-1360" class="st0" width="1440" height="3027" style="fill:rgb(0,0,0,0);stroke-width:3;stroke:rgb(0,0,0)" /> <path d="M13.4,12l5.8-5.8c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0L12,10.6L6.2,4.8c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4 l5.8,5.8l-5.8,5.8c-0.4,0.4-0.4,1,0,1.4c0.2,0.2,0.4,0.3,0.7,0.3s0.5-0.1,0.7-0.3l5.8-5.8l5.8,5.8c0.2,0.2,0.5,0.3,0.7,0.3 s0.5-0.1,0.7-0.3c0.4-0.4,0.4-1,0-1.4L13.4,12z" /> </svg>" data-icon-search="<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" aria-hidden="true" focusable="false" role="none" class="twtr-icon"> <path opacity="0" d="M0 0h24v24H0z" /> <path d="M22.06 19.94l-3.73-3.73C19.38 14.737 20 12.942 20 11c0-4.97-4.03-9-9-9s-9 4.03-9 9 4.03 9 9 9c1.943 0 3.738-.622 5.21-1.67l3.73 3.73c.292.294.676.44 1.06.44s.768-.146 1.06-.44c.586-.585.586-1.535 0-2.12zM11 17c-3.308 0-6-2.692-6-6s2.692-6 6-6 6 2.692 6 6-2.692 6-6 6z" /> </svg>" data-icon-search-submit="<svg width="21" height="21" viewbox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="none" class="twtr-icon"> <path fill-rule="evenodd" clip-rule="evenodd" d="M16.33 14.21L20.06 17.94C20.646 18.525 20.646 19.475 20.06 20.06C19.768 20.354 19.384 20.5 19 20.5C18.616 20.5 18.232 20.354 17.94 20.06L14.21 16.33C12.738 17.378 10.943 18 9 18C4.03 18 0 13.97 0 9C0 4.03 4.03 0 9 0C13.97 0 18 4.03 18 9C18 10.942 17.38 12.737 16.33 14.21ZM3 9C3 12.308 5.692 15 9 15C12.308 15 15 12.308 15 9C15 5.692 12.308 3 9 3C5.692 3 3 5.692 3 9Z" fill="white" /> </svg>" data-bg-color="white-neutral" data-root-page-title="Privacy" data-search-placeholder="Search" data-search-page="https://privacy.x.com/en/search" data-search-query-key="q" data-search-query-type="?" data-scribe-element="VMZ2" data-scribe-section="u01b-navigation" data-cta-enabled="true" data-cta-link-new-tab="false"> X Consumer Health Data Privacy Policy Published: May 14, 2024 This notice describes how X’s Privacy Policy applies to personal data defined as “consumer health data” subject to the Washington State My Health My Data Act (MHMDA) which went into effect as of March 31, 2024 and other similar U.S. State laws. 1. Consumer Health Information We Collect The scope of consumer health data may be defined more broadly in some jurisdictions than others. As described in the  Information We Collect  section of our Privacy Policy, some of these categories may be considered consumer health data under the MHMDA and other similar U.S. State laws. Depending on your privacy settings examples may include: Content that includes information about your past, present, or future physical or mental health status that you send to specific X users, such as through  Direct Messages  or  protected posts . Based on your consent, biometric information for safety, security, and identification purposes. If you have enabled  precise location  on the X mobile app or if you choose to  share your location  in your profile and posts that could potentially indicate your attempt to seek health-related services.   Other information that may be used to infer or derive consumer health data as defined under the MHMDA. 2. How We Use Consumer Health Information We may use consumer health data as described in the  How We Use Information  section of our Privacy Policy. For additional details about how to exercise your rights under the MHMDA, please see the  Take Control  section of our Privacy Policy and the Exercising Your Rights section below. 3. Sharing Consumer Health Information We may share each of the categories of consumer health data described above for the purposes described in the  Sharing Information  section of our Privacy Policy, including: When you post and share;  With third parties & with third-party integrations;  When required by law, to prevent harm, or in the public interest; With our  Affiliates ; or As a result of a change in ownership. 4. Exercising Your Rights You may submit a request to access, correct, or delete the information described above using the mechanisms outlined in the  Take Control  section of our Privacy Policy. For further questions you can contact us via our  Privacy Policy Inquiries  page or by writing to us at the address below.  X Corp. Attn: Privacy Policy Inquiry 865 FM 1209, Building 2  Bastrop, TX 78602 © 2026 X Corp. Cookies Privacy Terms and conditions English Privacy English Deutsch Español Français 日本語 Русский 한국어 Italiano Português Nederlands Did someone say … cookies? X and its partners use cookies to provide you with a better, safer and faster service and to support our business. Some cookies are necessary to use our services, improve our services, and make sure they work properly. Show more about your choices . Accept all cookies Refuse non-essential cookies
2026-01-13T08:47:43
https://privacy.x.com/for-our-users/ocpa
OCPA Skip to main content Privacy <path opacity="0" d="M0 0h24v24H0z" /> <path d="M17.207 11.293l-7.5-7.5c-.39-.39-1.023-.39-1.414 0s-.39 1.023 0 1.414L15.086 12l-6.793 6.793c-.39.39-.39 1.023 0 1.414.195.195.45.293.707.293s.512-.098.707-.293l7.5-7.5c.39-.39.39-1.023 0-1.414z" /> </svg>" data-icon-arrow-left="<svg width="28px" height="28px" viewbox="0 0 28 28" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="none" class="twtr-icon u01b__icon-arrow-left"> <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round"> <g transform="translate(-1216.000000, -298.000000)" stroke-width="2.25"> <g transform="translate(1200.000000, 282.000000)"> <g transform="translate(17.000000, 17.000000)"> <path d="M0.756410256,12.8589744 L25.7179487,12.8589744"></path> <path d="M13.2371795,25.3397436 L25.7179487,12.8589744"></path> <path d="M13.2371795,12.4807692 L25.3397436,0.378205128" transform="translate(19.288462, 6.429487) rotate(-90.000000) translate(-19.288462, -6.429487) "></path> </g> </g> </g> </g> </svg>" data-icon-chevron-down="<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" aria-hidden="true" focusable="false" role="none" class="twtr-icon"> <path opacity="0" d="M0 0h24v24H0z" /> <path d="M20.207 7.043c-.39-.39-1.023-.39-1.414 0L12 13.836 5.207 7.043c-.39-.39-1.023-.39-1.414 0s-.39 1.023 0 1.414l7.5 7.5c.195.195.45.293.707.293s.512-.098.707-.293l7.5-7.5c.39-.39.39-1.023 0-1.414z" /> </svg>" data-icon-close="<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewbox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve" aria-hidden="true" focusable="false" role="none" class="twtr-icon--md"> <g> <g> <defs> <rect id="SVGID_1_" x="-468" y="-1360" width="1440" height="3027" /> </defs> <clippath id="SVGID_2_"> <use xlink:href="#SVGID_1_" style="overflow:visible;" /> </clippath> </g> </g> <rect x="-468" y="-1360" class="st0" width="1440" height="3027" style="fill:rgb(0,0,0,0);stroke-width:3;stroke:rgb(0,0,0)" /> <path d="M13.4,12l5.8-5.8c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0L12,10.6L6.2,4.8c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4 l5.8,5.8l-5.8,5.8c-0.4,0.4-0.4,1,0,1.4c0.2,0.2,0.4,0.3,0.7,0.3s0.5-0.1,0.7-0.3l5.8-5.8l5.8,5.8c0.2,0.2,0.5,0.3,0.7,0.3 s0.5-0.1,0.7-0.3c0.4-0.4,0.4-1,0-1.4L13.4,12z" /> </svg>" data-icon-search="<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" aria-hidden="true" focusable="false" role="none" class="twtr-icon"> <path opacity="0" d="M0 0h24v24H0z" /> <path d="M22.06 19.94l-3.73-3.73C19.38 14.737 20 12.942 20 11c0-4.97-4.03-9-9-9s-9 4.03-9 9 4.03 9 9 9c1.943 0 3.738-.622 5.21-1.67l3.73 3.73c.292.294.676.44 1.06.44s.768-.146 1.06-.44c.586-.585.586-1.535 0-2.12zM11 17c-3.308 0-6-2.692-6-6s2.692-6 6-6 6 2.692 6 6-2.692 6-6 6z" /> </svg>" data-icon-search-submit="<svg width="21" height="21" viewbox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="none" class="twtr-icon"> <path fill-rule="evenodd" clip-rule="evenodd" d="M16.33 14.21L20.06 17.94C20.646 18.525 20.646 19.475 20.06 20.06C19.768 20.354 19.384 20.5 19 20.5C18.616 20.5 18.232 20.354 17.94 20.06L14.21 16.33C12.738 17.378 10.943 18 9 18C4.03 18 0 13.97 0 9C0 4.03 4.03 0 9 0C13.97 0 18 4.03 18 9C18 10.942 17.38 12.737 16.33 14.21ZM3 9C3 12.308 5.692 15 9 15C12.308 15 15 12.308 15 9C15 5.692 12.308 3 9 3C5.692 3 3 5.692 3 9Z" fill="white" /> </svg>" data-bg-color="white-neutral" data-root-page-title="Privacy" data-search-placeholder="Search" data-search-page="https://privacy.x.com/en/search" data-search-query-key="q" data-search-query-type="?" data-scribe-element="2QX5" data-scribe-section="u01b-navigation" data-cta-enabled="true" data-cta-link-new-tab="false"> Oregon Consumer Privacy Act Last updated: May 19, 2025 This notice describes how X’s Privacy Policy applies to personal data collected by X under the Oregon Consumer Privacy Act (OCPA).   1. Access, Correction, and Portability As described in our Privacy Policy , you can access, correct, or modify the information you provided to us by editing your profile and adjusting your account settings . You can learn more about the information we have collected or inferred about you in Your X Data and request access to additional information here , including to request a list of specific third parties (other than natural persons) to which your personal data has been disclosed. You can download a copy of your information, such as your posts, by following the instructions here . Users (including suspended users without access to the account settings options described above) can also submit a request to access or correct the information described above via our Privacy Policy Inquiries webform. More information on suspended accounts and the suspended-account appeals process can be found here .  2. Deleting Your Information If you follow the instructions here as described in our Privacy Policy , your account will be deactivated and your data will be queued for deletion. When deactivated, your X account, including your display name, username, and public profile, will no longer be viewable on X.com, X for iOS, and X for Android. For up to 30 days after deactivation it is still possible to restore your X account if it was accidentally or wrongfully deactivated. Users (including suspended users without access to the account settings options described above) can also submit a request to delete the information described above via our Privacy Policy Inquiries webform.  3. Appeals To protect your privacy and maintain security, we take steps to verify your identity before granting you access to your personal information or complying with a deletion, portability, or other related request. We may, in certain situations, reject your request for access, correction, or portability, for example, we may reject access where you are unable to verify your identity. If so, this will be communicated to you by email using the email address you provided. You may appeal this denial by replying to this email or by submitting an appeal through the Privacy Policy Inquiries webform.   4. Right to Opt Out As described in our Privacy Policy, we use your information to provide our advertising and sponsored content services subject to your settings , which helps make ads on X more relevant to you. More information about personalized ads, including how to disable this feature is available here . X does not process user data for the purpose of sale or profiling in furtherance of decisions that produce legal effects or effects of similar significance as defined under OCPA.   © 2026 X Corp. Cookies Privacy Terms and conditions English Privacy English Deutsch Español Français 日本語 Русский 한국어 Italiano Português Nederlands Did someone say … cookies? X and its partners use cookies to provide you with a better, safer and faster service and to support our business. Some cookies are necessary to use our services, improve our services, and make sure they work properly. Show more about your choices . Accept all cookies Refuse non-essential cookies
2026-01-13T08:47:43
https://devblogs.microsoft.com/xamarin/androidx-nuget-packages-are-stable/
AndroidX NuGet Packages are Stable! - Xamarin Blog Skip to main content Microsoft Dev Blogs Dev Blogs Dev Blogs Home Developer Microsoft for Developers Visual Studio Visual Studio Code Develop from the cloud All things Azure Xcode DevOps Windows Developer ISE Developer Azure SDK Command Line Aspire Technology DirectX Semantic Kernel Languages C++ C# F# TypeScript PowerShell Team Python Java Java Blog in Chinese Go .NET All .NET posts .NET Aspire .NET MAUI AI ASP.NET Core Blazor Entity Framework NuGet Servicing .NET Blog in Chinese Platform Development #ifdef Windows Microsoft Foundry Azure Government Azure VM Runtime Team Bing Dev Center Microsoft Edge Dev Microsoft Azure Microsoft 365 Developer Microsoft Entra Identity Developer Old New Thing Power Platform Data Development Azure Cosmos DB Azure Data Studio Azure SQL OData Revolutions R Unified Data Model (IDEAs) Microsoft Entra PowerShell More Search Search No results Cancel Dev Blogs Xamarin Blog AndroidX NuGet Packages are Stable! Upgrade to .NET MAUI Today Microsoft support for Xamarin ended on May 1, 2024 for all Xamarin SDKs including Xamarin.Forms. Upgrade your Xamarin & Xamarin.Forms projects to .NET 8 and .NET MAUI with our migration guides. Learn more February 14th, 2020 0 reactions AndroidX NuGet Packages are Stable! Jon Douglas Principal Program Manager Show more Last year, we introduced AndroidX for Xamarin. In addition to that, today we are happy to bring you stable AndroidX NuGet packages! Furthermore, since AndroidX is a big transition for your Android projects, we have also introduced a number of ways to migrate your Xamarin Android projects. AndroidX NuGet Migration Tooling There are three migration steps to be aware of regarding your application. Your application includes Android Support Library namespaces in need of migration to AndroidX namespaces . Use the Migrate to AndroidX IDE tooling to handle most namespace scenarios. First, enable the AndroidX Migrator inside Visual Studio 2019 Preview 16.5+ via: Tools > Options > Xamarin > Android Settings . (You can skip this step on Visual Studio for Mac 8.5+) Next, right-click your project and Migrate to AndroidX . Note: You will need to make some manual namespace changes for a few scenarios our tool doesn’t cover. While we will map the correct package for you, we encourage you to review the official artifact mappings . As well as the class mappings to help with your project migration. Your application includes any dependencies that have not been migrated to the AndroidX namespace . Use the Android Support Library to AndroidX Migration package . Your application does not include any dependencies that require AndroidX namespace migration . Use the AndroidX libraries available on NuGet today . How This May Affect You The majority of packages you know and love have already migrated to AndroidX on Android 10 and above. Starting with Xamarin.Forms 4.5, AndroidX will replace the Android Support Libraries. Additionally, once this is supported in Xamarin.Forms, we will migrate Xamarin.Essentials to AndroidX . As everything slowly migrates to AndroidX in favor of the Support Libraries, we will make our “out-of-box” IDE experience the default to using AndroidX and Android 10. Try the AndroidX NuGet Packages Today We are continuously improving this experience and want to know your thoughts! For any issues with AndroidX or Xamarin, please  file an issue on Developer Community . You may also file an issue within the Xamarin AndroidX GitHub repository . Additionally, share any suggestions for how we can improve the AndroidX experience by filing a suggestion on Developer Community. Lastly, check out our Xamarin AndroidX Migration GitHub repository for some tips and tricks in using the package, known issues, and limitations! 0 3 0 Share on Facebook Share on X Share on Linkedin Copy Link --> Category Android Xamarin Xamarin Platform Topics AndroidX NuGet Xamarin.Android Share Author Jon Douglas Principal Program Manager Jon Douglas is a Principal Program Manager for NuGet at Microsoft. In his spare time he is most likely spending time with his family, performing comedy improv, or playing video games. 3 comments Discussion is closed. Login to edit/delete existing comments. Code of Conduct Sort by : Newest Newest Popular Oldest Dávid Almási --> Dávid Almási --> May 13, 2020 0 --> Collapse this comment --> Copy link --> --> --> --> Hi, I guess it does not make too much sense to try, but still: When can we expect a production-grade release? By starting a new Xamarin Android project, it still comes with the old android support library dependencies. When will be AndroidX integrated into Visual Studio? HUNG HO HOANG --> HUNG HO HOANG --> March 22, 2020 0 --> Collapse this comment --> Copy link --> --> --> --> I don’t think it is as easy as it sounds. The moment direct references to AndroidX pkgs in Android csproj is required, compiling goes sideway: https://github.com/xamarin/AndroidX/issues/79 Charles Roddie --> Charles Roddie --> February 28, 2020 0 --> Collapse this comment --> Copy link --> --> --> --> This may be a necessary update, but the problem for users seems to remain. So many packages in Xamarin projects with no guidance about which packages should be installed. https://www.nuget.org/packages?q=androidx gives 122 packages. Should all of these be installed? None of them? A subset? What should happen: if Xamarin.Forms depends on packages it should get those automatically as transitive dependencies. Xamarin users shouldn’t need to install any of these for a default experience and they shouldn’t appear in Nuget Package Manager. Read next February 21, 2020 Xamarin.Forms & Xamarin.Essentials Go AndroidX James Montemagno February 24, 2020 Xamarin Podcast: Xamarin.Forms Trigger Mania! Matt Soucoup Stay informed Get notified when new posts are published. Email * Country/Region * Select... United States Afghanistan Åland Islands Albania Algeria American Samoa Andorra Angola Anguilla Antarctica Antigua and Barbuda Argentina Armenia Aruba Australia Austria Azerbaijan Bahamas Bahrain Bangladesh Barbados Belarus Belgium Belize Benin Bermuda Bhutan Bolivia Bonaire Bosnia and Herzegovina Botswana Bouvet Island Brazil British Indian Ocean Territory British Virgin Islands Brunei Bulgaria Burkina Faso Burundi Cabo Verde Cambodia Cameroon Canada Cayman Islands Central African Republic Chad Chile China Christmas Island Cocos (Keeling) Islands Colombia Comoros Congo Congo (DRC) Cook Islands Costa Rica Côte dIvoire Croatia Curaçao Cyprus Czechia Denmark Djibouti Dominica Dominican Republic Ecuador Egypt El Salvador Equatorial Guinea Eritrea Estonia Eswatini Ethiopia Falkland Islands Faroe Islands Fiji Finland France French Guiana French Polynesia French Southern Territories Gabon Gambia Georgia Germany Ghana Gibraltar Greece Greenland Grenada Guadeloupe Guam Guatemala Guernsey Guinea Guinea-Bissau Guyana Haiti Heard Island and McDonald Islands Honduras Hong Kong SAR Hungary Iceland India Indonesia Iraq Ireland Isle of Man Israel Italy Jamaica Jan Mayen Japan Jersey Jordan Kazakhstan Kenya Kiribati Korea Kosovo Kuwait Kyrgyzstan Laos Latvia Lebanon Lesotho Liberia Libya Liechtenstein Lithuania Luxembourg Macau SAR Madagascar Malawi Malaysia Maldives Mali Malta Marshall Islands Martinique Mauritania Mauritius Mayotte Mexico Micronesia Moldova Monaco Mongolia Montenegro Montserrat Morocco Mozambique Myanmar Namibia Nauru Nepal Netherlands New Caledonia New Zealand Nicaragua Niger Nigeria Niue Norfolk Island North Macedonia Northern Mariana Islands Norway Oman Pakistan Palau Palestinian Authority Panama Papua New Guinea Paraguay Peru Philippines Pitcairn Islands Poland Portugal Puerto Rico Qatar Réunion Romania Rwanda Saba Saint Barthélemy Saint Kitts and Nevis Saint Lucia Saint Martin Saint Pierre and Miquelon Saint Vincent and the Grenadines Samoa San Marino São Tomé and Príncipe Saudi Arabia Senegal Serbia Seychelles Sierra Leone Singapore Sint Eustatius Sint Maarten Slovakia Slovenia Solomon Islands Somalia South Africa South Georgia and South Sandwich Islands South Sudan Spain Sri Lanka St Helena Ascension Tristan da Cunha Suriname Svalbard Sweden Switzerland Taiwan Tajikistan Tanzania Thailand Timor-Leste Togo Tokelau Tonga Trinidad and Tobago Tunisia Turkey Turkmenistan Turks and Caicos Islands Tuvalu U.S. Outlying Islands U.S. Virgin Islands Uganda Ukraine United Arab Emirates United Kingdom Uruguay Uzbekistan Vanuatu Vatican City Venezuela Vietnam Wallis and Futuna Yemen Zambia Zimbabwe I would like to receive the Xamarin Blog Newsletter. Privacy Statement. Subscribe Follow this blog Are you sure you wish to delete this comment? × --> OK Cancel Sign in Theme Insert/edit link Close Enter the destination URL URL Link Text Open link in a new tab Or link to existing content Search No search term specified. Showing recent items. Search or use up and down arrow keys to select an item. Cancel Code Block × Paste your code snippet Ok Cancel What's new Surface Pro Surface Laptop Surface Laptop Studio 2 Copilot for organizations Copilot for personal use AI in Windows Explore Microsoft products Windows 11 apps Microsoft Store Account profile Download Center Microsoft Store support Returns Order tracking Certified Refurbished Microsoft Store Promise Flexible Payments Education Microsoft in education Devices for education Microsoft Teams for Education Microsoft 365 Education How to buy for your school Educator training and development Deals for students and parents AI for education Business Microsoft Cloud Microsoft Security Dynamics 365 Microsoft 365 Microsoft Power Platform Microsoft Teams Microsoft 365 Copilot Small Business Developer & IT Azure Microsoft Developer Microsoft Learn Support for AI marketplace apps Microsoft Tech Community Microsoft Marketplace Marketplace Rewards Visual Studio Company Careers About Microsoft Company news Privacy at Microsoft Investors Diversity and inclusion Accessibility Sustainability Your Privacy Choices Opt-Out Icon Your Privacy Choices Your Privacy Choices Opt-Out Icon Your Privacy Choices Consumer Health Privacy Sitemap Contact Microsoft Privacy Manage cookies Terms of use Trademarks Safety & eco Recycling About our ads © Microsoft 2025
2026-01-13T08:47:43
https://dev.to/adventures_in_ml/delivering-scoped-solutions-lessons-in-fixing-production-system-issues-ml-144
Delivering Scoped Solutions: Lessons in Fixing Production System Issues - ML 144 - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Adventures in Machine Learning Follow Delivering Scoped Solutions: Lessons in Fixing Production System Issues - ML 144 Mar 21 '24 play Michael and Ben share their insights on being called in to fix issues in production systems at the last minute. They stress the importance of asking questions to understand the context and navigate the political landscape, and caution against providing half-baked solutions. They also discuss the significance of understanding project goals, documenting decision-making processes, and providing guidance to the team to avoid building unnecessary and difficult-to-maintain systems. Stay tuned as they share their experiences and valuable advice for navigating complex projects and delivering meaningful solutions. Sponsors Chuck's Resume Template Developer Book Club Become a Top 1% Dev with a Top End Devs Membership Become a supporter of this podcast: https://www.spreaker.com/podcast/adventures-in-machine-learning--6102041/support . Episode source Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Your browser does not support the audio element. 1x initializing... × 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://www.linkedin.com/help/linkedin/answer/34593?lang=en&trk=d_checkpoint_lg_consumer_login_ft_community_guidelines
Learn more about the LinkedIn Professional Community Policies | LinkedIn Help Attention screen reader users, you are in a mobile optimized view and content may not appear where you expect it to be. To return the screen to its desktop view, please maximize your browser. Skip to content Skip to search Close jump menu Help LinkedIn Help Dropdown menu, expand to explore help for other LinkedIn products Close menu Get help with: LinkedIn Corporate Billing Learning Marketing Solutions Recruiter Sales Navigator Talent Insights Go to LinkedIn Sign in Sign in Learn more about the LinkedIn Professional Community Policies Last updated: 11 months ago We periodically update our Professional Community Policies to ensure that the millions of conversations taking place each day on our services help our members be more productive, successful, and free of inappropriate and unwanted content or behavior.  We encourage you to take a look and familiarize yourself with our Professional Community Policies , which we continue to develop and provide guidance for the use of our services. Tagged in Data and Privacy LinkedIn Contact us Select a language. The page will automatically refresh after a language has been selected. العربية (Arabic) বাংলা (Bangla) Čeština (Czech) Dansk (Danish) Deutsch (German) Ελληνικά (Greek) English (English) Español (Spanish) فارسی (Persian) Suomi (Finnish) Français (French) हिंदी (Hindi) Magyar (Hungarian) Bahasa Indonesia (Indonesian) Italiano (Italian) עברית (Hebrew) 日本語 (Japanese) 한국어 (Korean) मराठी (Marathi) Bahasa Malaysia (Malay) Nederlands (Dutch) Norsk (Norwegian) ਪੰਜਾਬੀ (Punjabi) Polski (Polish) Português (Portuguese) Română (Romanian) Русский (Russian) Svenska (Swedish) తెలుగు (Telugu) ภาษาไทย (Thai) Türkçe (Turkish) Українська (Ukrainian) Tiếng Việt (Vietnamese) 简体中文 (Chinese (Simplified)) 正體中文 (Chinese (Traditional)) LinkedIn Corporation © 2026 About Transparency Center Privacy and Terms Cookies Copyright Terms Privacy Guest controls Dismiss Privacy and Terms menu LinkedIn Corporation © 2026
2026-01-13T08:47:43
https://forem.com/t/frontend
Front-end - Forem Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Front-end Follow Hide "If you're already a front-end developer, well, pretend you're also wearing a pirate hat." - Ethan Marcotte Create Post Posts Left menu 👋 Sign in for the ability to sort posts by relevant , latest , or top . Right menu Mouse Events in JavaScript: Why Your UI Flickers (and How to Fix It Properly) Farhad Hossain Farhad Hossain Farhad Hossain Follow Jan 13 Mouse Events in JavaScript: Why Your UI Flickers (and How to Fix It Properly) # frontend # javascript # ui 2  reactions Comments Add Comment 3 min read Weather Service Project (Part 2): Building the Interactive Frontend with GitHub Pages or Netlify and JavaScript Daniel Daniel Daniel Follow for Datalaria Jan 13 Weather Service Project (Part 2): Building the Interactive Frontend with GitHub Pages or Netlify and JavaScript # frontend # javascript # tutorial # webdev Comments Add Comment 6 min read Why Your E Commerce Filters Feel Slow Even When Your Site Is Fast ar abid ar abid ar abid Follow Jan 13 Why Your E Commerce Filters Feel Slow Even When Your Site Is Fast # webdev # frontend # ecommerce # ux 1  reaction Comments Add Comment 3 min read Dependency Tracking Fundamentals (II) Luciano0322 Luciano0322 Luciano0322 Follow Jan 13 Dependency Tracking Fundamentals (II) # javascript # webdev # frontend # reactivity Comments Add Comment 3 min read The Buy Button Is the Slowest Part of Most E Commerce Sites ar abid ar abid ar abid Follow Jan 13 The Buy Button Is the Slowest Part of Most E Commerce Sites # webdev # performance # frontend # ecommerce Comments Add Comment 3 min read Building a 49-Country Exchange Calculator with a Single Static Page 임세환 임세환 임세환 Follow Jan 13 Building a 49-Country Exchange Calculator with a Single Static Page # architecture # frontend # javascript Comments Add Comment 2 min read The Buy Button Is the Slowest Part of Most E Commerce Sites ar abid ar abid ar abid Follow Jan 13 The Buy Button Is the Slowest Part of Most E Commerce Sites # webdev # performance # frontend # ecommerce 1  reaction Comments Add Comment 3 min read Micro-Interactions Explained: How Tiny UI Details Create Massive UX Gains Parth G Parth G Parth G Follow Jan 13 Micro-Interactions Explained: How Tiny UI Details Create Massive UX Gains # react # ux # frontend # webdev 1  reaction Comments 1  comment 4 min read Proyecto Weather Service (Parte 2): Construyendo el Frontend Interactivo con GitHub Pages o Netlify y JavaScript Daniel Daniel Daniel Follow for Datalaria Jan 13 Proyecto Weather Service (Parte 2): Construyendo el Frontend Interactivo con GitHub Pages o Netlify y JavaScript # frontend # javascript # spanish # tutorial Comments Add Comment 7 min read Performance First UI Taught Me More Than Any Framework Ever Did Shubhra Pokhariya Shubhra Pokhariya Shubhra Pokhariya Follow Jan 12 Performance First UI Taught Me More Than Any Framework Ever Did # frontend # webperf # ux # inp 1  reaction Comments 1  comment 3 min read Why I Built a High-Performance Wallpaper Gallery with Vanilla JS (No React) Aksh Thakkar Aksh Thakkar Aksh Thakkar Follow Jan 12 Why I Built a High-Performance Wallpaper Gallery with Vanilla JS (No React) # javascript # webdev # frontend # buildinpublic Comments Add Comment 2 min read Week 14 – Custom Hooks, Finishing usePopcorn, and Learning How to Design Code Usama Usama Usama Follow Jan 12 Week 14 – Custom Hooks, Finishing usePopcorn, and Learning How to Design Code # react # frontend # javascript # webdev 3  reactions Comments Add Comment 2 min read Debugging 5 Real-World Bugs: A Practical Walkthrough That Doesn't Include Console.log! Eleftheria Batsou Eleftheria Batsou Eleftheria Batsou Follow Jan 12 Debugging 5 Real-World Bugs: A Practical Walkthrough That Doesn't Include Console.log! # ai # debug # debugging # frontend 6  reactions Comments 1  comment 5 min read Ng-News 26/01: Ng-Poland Outtakes - Keynote and Q&A ng-news ng-news ng-news Follow for This is Angular Jan 12 Ng-News 26/01: Ng-Poland Outtakes - Keynote and Q&A # webdev # programming # angular # frontend Comments Add Comment 4 min read How to Build SEO-Friendly Ecommerce Product Pages ar abid ar abid ar abid Follow Jan 12 How to Build SEO-Friendly Ecommerce Product Pages # frontend # performance # tutorial # webdev Comments Add Comment 3 min read Building a Casio‑Style Scientific Calculator with Vue 3 + TypeScript A0mineTV A0mineTV A0mineTV Follow Jan 12 Building a Casio‑Style Scientific Calculator with Vue 3 + TypeScript # vue # typescript # frontend # javascript Comments Add Comment 3 min read How I Get Better UI from Claude: Research First, Build Second hassantayyab hassantayyab hassantayyab Follow Jan 12 How I Get Better UI from Claude: Research First, Build Second # webdev # ai # productivity # frontend 1  reaction Comments 1  comment 3 min read New Free Tool: Favicon Generator & ICO Creator (All Sizes, SVG Support, 100% Browser-Based) Frontend tools Frontend tools Frontend tools Follow Jan 12 New Free Tool: Favicon Generator & ICO Creator (All Sizes, SVG Support, 100% Browser-Based) # webdev # frontend # css # productivity Comments Add Comment 3 min read 🚀 WebAR Development Frameworks: How to Build Immersive AR Experiences with A-Frame & AR.js Okoye Ndidiamaka Okoye Ndidiamaka Okoye Ndidiamaka Follow Jan 12 🚀 WebAR Development Frameworks: How to Build Immersive AR Experiences with A-Frame & AR.js # augmentedreality # webdev # frontend # uxdesign Comments Add Comment 3 min read A Five-Minute UI Feature That Became an XSS Time Bomb Parth G Parth G Parth G Follow Jan 12 A Five-Minute UI Feature That Became an XSS Time Bomb # frontend # javascript # security # webdev 3  reactions Comments 1  comment 5 min read Building a React Dashboard in 2026: What Actually Matters (From a Dev Perspective) Vaibhav Gupta Vaibhav Gupta Vaibhav Gupta Follow Jan 12 Building a React Dashboard in 2026: What Actually Matters (From a Dev Perspective) # webdev # react # opensource # frontend Comments Add Comment 2 min read A Simple and Reliable Way to Convert Millimeters to Centimeters in Web Apps Olivia Olivia Olivia Follow Jan 12 A Simple and Reliable Way to Convert Millimeters to Centimeters in Web Apps # webdev # javascript # frontend # utilities Comments Add Comment 1 min read 3D Anatomy Modeling: Build Interactive Features to Visualize Muscle Engagement wellallyTech wellallyTech wellallyTech Follow Jan 12 3D Anatomy Modeling: Build Interactive Features to Visualize Muscle Engagement # frontend # react # threejs # datavisualization Comments Add Comment 2 min read 5 Common Angular Pitfalls and How to Avoid Them David Brooks David Brooks David Brooks Follow Jan 11 5 Common Angular Pitfalls and How to Avoid Them # angular # frontend # webdev # javascript Comments Add Comment 3 min read Building Developer SSS – An Open-Source Learning Platform for Developers Tunar Jamalov Tunar Jamalov Tunar Jamalov Follow Jan 11 Building Developer SSS – An Open-Source Learning Platform for Developers # programming # frontend # opensource # deved Comments Add Comment 1 min read loading... trending guides/resources I built an app in every frontend framework Testing Angular 21 Components with Vitest: A Complete Guide Angular 20 to 21 Upgrade: The Practical Survival Guide How I Actually Use AI Agents As A Senior Frontend Dev (Without Breaking Prod) Modern Web Design Styles Every Frontend Developer Must Know (2025 Guide) Part 2 Modern Web Design Styles Every Frontend Developer Must Know (2025 Guide) Angular Aria in Angular 21: The Future of Accessible, Headless UI Components Event-Driven State Management with NgRx Signal Store Google Sign-In in React Native (Expo): A Practical, Production-Ready Guide Smooth Page Transitions with Zero Libraries: The View Transitions API How I Built a Tiny Tool That Makes Responsive Design Feel Effortless React 19.2: React in its sigma era ❄️A Five-Minute UI Feature That Became an XSS Time Bomb Redux Toolkit vs React Query: Do You Really Need Both? 🤔 Is Tailwind actually slow? Replacing Toasts with Accessible User Feedback Patterns How to make Angular Material inputs look like simple fields Creative Web Developer: Updating my Profile/Portfolio as a Senior Web Developer You Are Using TailwindCSS Wrong ⚛️ From React 19.0 to 19.2: What’s New, What Improved, and Why It Matters ⁉️ 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — Your community HQ Home About Contact Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a blogging-forward open source social network where we learn from one another Log in Create account
2026-01-13T08:47:43
https://book.productionreadygraphql.com
Production Ready GraphQL | The Book Available Now Build GraphQL APIs you can trust Learn how to design and build predictable, performant, and secure GraphQL APIs at scale. buy now if you're ready! Production Ready GraphQL Hey 👋 I'm Marc-Andre Giroux ! I've always found there was a lack of resources on how to build reliable GraphQL servers . Over the last few years, I helped build and maintain some of the biggest GraphQL APIs out there at both Shopify and GitHub. During those years, I also worked with various companies with their adoption of GraphQL. From my experiences with GraphQL, I’ve observed the good, the bad, and the ugly. This led to many talks and blog posts on the subject, but still found that teams and individuals willing to use GraphQL in a pragmatic way lacked the resources to do so. This is what lead me to write this book: A collection of learnings and good practices when building GraphQL schemas at scale. “Over the last few years, there’s no one who has better captured and spread the nuances of good GraphQL API design than Marc-André. I’ve loved seeing him advance thoughtful design concepts and best practices throughout the GraphQL community, and I’m excited that his wisdom is being collected in book form.” Dan Schafer co-creator of GraphQL GraphQL Beyond the Hype With Great Power Comes Great Responsibility There is a lot of content out there on building client side applications using GraphQL. GraphQL can offer an amazing client side experience, but for that to be true, we must be able to build high quality GraphQL platforms that will support these clients. The simplicity with which clients can consume use cases using GraphQL is often balanced by additional complexity on the server. Learn how to manage this complexity and make sure you keep providing a quality GraphQL API as your team or organization scales. Language Agnostic Every language and every GraphQL implementation does things slightly differently. This book is completely language agnostic and instead focuses on concepts and patterns that are achievable no matter how you're building a GraphQL server. Think of it as a complete journey of what goes into building a GraphQL API, from design, to architectures, to implementation, and even documentation. Is it for me? I decided to write this book after seeing how much interest there was in pushing GraphQL implementations to the next level. The book starts with an introduction to GraphQL, its history, and basic concepts. It then quickly ramps up to more intermediate and advanced concepts that will allow you to deeply understand the tradeoffs involved in building GraphQL APIs. You'll get the most out of the book if you've dabbled with GraphQL already and are ready to learn to take it to the next level and learn about what is coming as you implement it in your organizations. “Marc-Andre is the rare triple threat: he deeply understands GraphQL and API design, he’s productionized its usage on large scale including public GraphQL APIs, and he’s able to deftly explain difficult concepts with ease. There is likely no better resource for understanding and harnessing the power of GraphQL than this book.” Kyle Daigle Director of Engineering, GitHub What's in The Book Or view the full table of contents GraphQL Schema Design GraphQL's type system is amazing and we all love it. That doesn't mean it's any easier to design an API which clients will love to use and that will stand the test of time. Learn hard-earned practices around structuring a schema to answer client use cases. Performance and Security Performance is often highlighted as a benefit of GraphQL APIs, but we have to know how to monitor them and how to handle the dynamic nature of GraphQL before we can see these benefits. The book dives deep into monitoring GraphQL execution, techniques to improve performance, and best practices for securing APIs against bad actors. Tooling & Workflows GraphQL can offer an absolutely amazing developer experience when done right. Learn about API workflows that work well with GraphQL and must-have tools that will allow you to evolve your API without pain. Architecture Discover common GraphQL design patterns and when they can be useful. Learn GraphQL as an API Gateway, "schema stitching", distributed GraphQL and a lot more. A Lot More 💫 Learn tried and true patterns for designing a GraphQL API, and all the principles and techniques I've acquired over the past several years. Not Just a Book Get access to extra benefits to double down on your GraphQL learnings Interviews Text-based interviews with some of the most accomplished GraphQL community members. Extra Content Three extra guides to go in depth on subjects covered in the book. - The Production Ready GraphQL Schema Design Checklist - Schema Design Reviews - Schema Evolution Cheat Sheet: Approaching all different changes on a GraphQL API Get Production Ready GraphQL Pick the package that works best for you. The Complete Package $49 USD The 180-page book in PDF, MOBI and EPUB formats All three extra guides 4 text-based interviews with engineers working with GraphQL at Shopify, GitHub and more! Buy Now Just the Book $29 USD The 180-page book in PDF, MOBI and EPUB formats Buy Now The Team Package Get the complete package and share with any number of team members! Buy Team Package Anyone involved with a GraphQL implementation, whether to-be or existing, should have a copy of this book. Amaury Crickx I wish this book was around my company started moving to GraphQL. It would have been the perfect shortcut for the near year of trying to soak up industry best practices in a rapidly developing field. This book will serve as the "GraphQL Bible" for me for years to come. Bob Elwell I went for the full package of the book with the cheat sheets. The cheat sheets are giving you a very compressed guide of good practices. Can only recommend this to devs that want to build a larger project with #GraphQL. Micheal Staib Books real dope - half way through so far, but the Schema Design section alone puts it in the pantheon of my most beloved code books. Greg Frequently asked questions Do I need to be an expert at GraphQL to read the book? Not at all. However you'll gain most from this book if you have dabbled with building GraphQL APIs but are ready to take it to the next level! Can I see the table of contents? Absolutely, here it is! Can I get a physical copy of the book? At the moment, we only offer the digital version, but this may change if there is demand for a physical version as well. Can I get a refund? No worries at all. Message us at [email protected] within 2 weeks of the purchase and we'll refund you, no questions asked. Can I upgrade to the complete package later? Absolutely, message us at [email protected] What format are the files? The book is available in PDF, EPUB and MOBI formats. The extra guides and the interviews are in PDF format. Everything is DRM-Free. Can I get Production Ready GraphQL for my entire team? Yes! You can buy the team package and share the complete package with all your teammates. Blog Contact Twitter © 2020 MYUL Digital, Inc. All rights reserved.
2026-01-13T08:47:43
https://neal.fun/
Neal.fun Get new posts Watered 0 times today games and stuff by Neal Hi! I'm Neal. This is where I make stuff on the web. Obligatory links: Newsletter Twitter Buy me a coffee Contact - [email protected] Privacy policy
2026-01-13T08:47:43
https://dev.to/action-in-action/coping-with-digital-transformation-and-human-change#main-content
Coping with digital transformation and human change - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Agile in Action with Bill Raymond Follow Coping with digital transformation and human change Oct 3 '23 play 🎥 This podcast is available in 4K video on YouTube: https://youtu.be/yVetSg_l-QI 🎙️ Indispensable guidance for leaders in the throws of digital transformation Pia Wendelbo, CEO of Scandinavian Change Agents, provides insights to help you successfully navigate digital transformation in your organization. Pia will explain how you must take a holistic view beyond implementing new technology. You will learn critical leadership traits like getting the big picture view, anticipating failure points, and understanding the neuroscience and habits required to change behaviors. Pia and I share stories and practical guidance to help you effectively deliver change. Here is what you will learn: ✅ The importance of taking a holistic view of digital transformation ✅ The positive team impacts when you create a safe space for learning and growth ✅ The role of neuroscience and behavioral design thinking in understanding how people thrive in change 🎉 Critical leadership traits and strategies needed for a successful digital transformation effort   Included in this video: 00:00 Pia Wendelbo 00:00 Introduction 00:13 Introducing Pia Wendelbo 02:41 What is digital transformation 05:26 Focus on the slack 10:11 Do not ignore potential failure 12:44 Leadership traits in digital transformation efforts 15:49 The importance of training 19:02 The neuroscience of digital transformation 25:08 Takeaways 29:08 Wrap up and how to contact Pia Wendelbo Episode source Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Your browser does not support the audio element. 1x initializing... × 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://dev.to/anand12/open-source-best-practices
Open Source Best Practices - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close #WithAnand Follow Open Source Best Practices Nov 20 '21 play The open-source software industry is booming. Software developed by large corporations is built on open collaboration, thus enjoying the benefits of widespread adoption. In addition to bringing together many people from all over the world, free and open-source software brings people together by bringing their individual interests together. Read Blog📖 Twitter💌 Voice Message🎙️ Buy Me a Coffee❤️ Episode source Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Your browser does not support the audio element. 1x initializing... × 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://agileinaction.com/agile-in-action-podcast/2023/11/14/charting-a-new-course-transitioning-to-agile.html
The Agile in Action with Bill Raymond Podcast Home Learn More Sponsors Watch now (here is a direct link ) Listen now Charting a New Course: Transitioning to Agile Nov 14, 2023 • Bill Raymond David Abodunrin, Agile Coach and SCRUM Master 🌎 David on LinkedIn About this podcast episode 🤿 Dive into the waterfall, return to shore with 💨 agility We are thrilled to have David Abodunrin, Agile Coach and Scrum Master, discuss his transition from waterfall to agility on today’s podcast. David and Bill share stories based on their experience to explore the inherent challenges and rewards in shifting from predictive, waterfall project management to adaptive agile approaches. This podcast is an important listen if you embark on a similar journey. Here’s what you will learn: ✅ The challenges one faces while transitioning from Waterfall to Agile ✅ The factors that distinguish a scrum master from a project manager ✅ Understand the concept of “team wisdom” and its significance in Agile 🎉 Learn how effective agility can lead to better outcomes, faster delivery, and improved team dynamics Transcript (transcripts are auto-generated, so please excuse the brevity) [00:00:00] Introduction and Guest Presentation [00:00:00] Bill Raymond: Hi and welcome to the Agile in Action podcast with Bill Raymond. Today, I’m excited to introduce David Abodunrin, Agile Coach and Scrum Master. We’re going to be talking about charting a new course, and that’s the transition from Waterfall to Agile. If you don’t know what any of that means. Hang on tight. We’re going to be talking about it. Hi, David. How are you today? [00:00:22] David Abodunrin: I’m good, Bill. I’m fine. Awesome to be here. Thank you so much for having me. Really appreciate what you’re doing and thank you. I’m excited to be here today. [00:00:31] Bill Raymond: Yeah, I am too. I’m really excited about the conversation. Before we get into it, can you introduce yourself? [00:00:38] David Abodunrin: Yeah. [00:00:38] David Abodunrin’s Career Journey [00:00:38] David Abodunrin: My name is David being in project management and program management for about two decades maybe a little more started my career in the earlier days in technology in electronics, computer engineering, after my first degree at the Lagos City University. And then I moved into, after a few years of working as a telecoms networking transmission engineer, I moved into core project management. Been there, done a lot. Aside from project coordinator role, they’re moving to project manager role. Works with the biggest telcos in West Africa. Two of the very biggest ones Vmobile and later on now Airtel and later on MTN that’s most, that’s the biggest namein the continent of Africa. But in Nigeria I was National Project Planning and Monitoring Manager, where I did extensive work in Waterfall. And after a while, I had the real blessing of getting opportunities to practice within the creative industry, where I was Project Management Director for the largest marketing communications group in West Africa. At that point, just before I pivoted from MTN, my love and interest and passion in agile had started because I had some experiences on some projects that I handled for a certain small start up at that time. Around 2012 was a very eye opening moment for me. And precipitated my movement from waterfall, my belief system in waterfall and moved me into the direction of agility and deeper business solutions that I’ve been doing since then got experience as a Scrum Master, a product owner, and now very senior Scrum Master and also agile coaching which are some of the things that I do now. Now I live in the UK where in 2020, I did my master’s, my MBA, and I hold international business school. And again, I did a second master’s in cyber security, trade intelligence, and cyber forensics, leaning on my experiences in technology over the years. So here I am managing cyber security projects the agile way. So that’s my story in in, in a brief nutshell. [00:02:51] Bill Raymond: You and I have gone through some fairly similar paths there, so I’m sure we can share some stories along the way, but I think it would be really useful for listeners, if you can describe what project management and waterfall mean to you, so we could start with that basic definition from your perspective. [00:03:10] Understanding Waterfall and Agile Methodologies [00:03:10] David Abodunrin: Okay. Waterfall is the simple concept of managing a project from start to finish, meaning there’s a finite life cycle or lifespan with a beginning and ending and it follows a linear thinking sequential delivery pattern. So you’ve got things like initiation, planning, execution, monitoring and controlling and closing. The waterfall also has the implication of whatever comes from the top, just speculates down through the entire project, both in structure and in the logic and execution of the project. This is the thinking in waterfall, but in agile thinking or agility as a field, customer satisfaction, working software rather than documentation features that meet customer specification at a certain level what you call minimum viable product can be deployed in a way that we are able to get value quicker and faster rather than wait eight to nine to ten months as in waterfall, when we’ve got to go through initiation, planning, execution, monitoring and controlling with agile, we work in an iterative, intuitive way until we get to a feature or set of features. I’ve seen projects that started with very powerful planning exercises. Excellent planning strategies. By the time they got to 80%, just a few weeks ready to launch, the market dynamics had changed. The consumer, or the person that the product was being created for, suddenly moved on in some cases. Now that is one of the weaknesses of waterfall methodology. It relies too much on sequence and approvals. Why agility or being agile works to deliver. Within the sprint and within one iteration Minimum viable product a product that we cannot that we can improve on or a feature that can be added That is the that’s a very major shift in between the two from a value positioning perspective if you were to start a project in waterfall when you do the project for 12 years Or 10 years using waterfall you understand immediately that benefit realization cannot be done in full until the end But with Agile, we can begin to think of a benefit realization far earlier, and quicker, and neater, and more affordable, with more transparency and buy in, where everybody must come together to drive these results. Those are good definitions. I appreciate that. [00:05:53] The Transition from Project Management to Agile [00:05:53] Bill Raymond: One of the things that I’m thinking about my experience because just like you, I still do have a balance of work that I do in the project management space. And I have a balance of work that I do in the agile space. One of the things that really stood out for me when I was making the shift was, I’m used to doing something like spending a few months creating a scope statement that it described what we will do before we even build the plan. And I remembered my very first project where we said we’re going to do agile here. There’s some things that are going to be different. And it was described to me. And I was a little bit confused because, you know, I’m thinking, oh well, agile just seems to say take any process and throw it out the window. It’s not really doing that, but that’s what it felt like. And I remembered I had our very first meeting with the client, with my developers that worked for me at the time and what happened was we finished our first meeting where they discussed what it was that they needed. And then we’re going to come back at the end of the week to kind of summarize that and think about what we wanted to do next. Three days later. The developers came back and said we created a littleof what they asked for and then we want to show it to the client. And I said, wait a minute, we haven’t even finished the scope. And I realized that was one of the big first aha moments. Oh, we’re not doing it the way we used to do it. [00:07:18] David Abodunrin: what are some of the things that you learned along the way? As a traditional waterfall project manager transitioning into the Agile space, I noticed I had mental resistances and mental blocks coming from my biases. For example, I didn’t know I had a bias like People don’t, if you don’t mandate people hard, they will not do what they’re supposed to do, but that’s not true. People, nobody left home to be a failure to come to work. Why would they be committing those number of hours? They don’t genuinely know something. There’s something that they can learn or they can know that can make their lives better and hence led me to think deeper about agile. The other thing about from internal control is the ability to trust the team. Project managers in waterfall are trained to be so hyper. You are on schedule. There’s a CPI cost performance indicator index, shared performance indicator index. You are a bunker and repository of the capital. to make decisions in the agile realm team. Wisdom is key is not only key. Whatever the team sees carries more weight because you are just an individual on the team. As a Scrum Master you are you’re a servant master. That’s the phrase I was looking for. You’re not a boss You’re a servant master. You’re part of the team to facilitate knowledge and help drive productive resolutions and answers provide clarity. Your job will now be to let them go, to let them go and take their decisions in their own minds. That would be the job of the agile coach or the Scrum Master as the case might be. [00:08:56] Bill Raymond: Yeah, that’s an interesting one. As the term project manager implies almost is that you are there to apply pressure and to get people to deliver on this list of things that you’ve prebuilt that, that need to get done. Whereas in Agile, what you’re saying is no, we’re all working collaboratively to do that. And I would say this, I would say that I don’t know any project managers to say we don’t work collaboratively as a team that’s, I don’t think we’re trying to say that. [00:09:28] David Abodunrin: Not at all. The bigger part of the conversation is that Agile helps you to create results faster. Helps you to demonstrate proof of concepts or proof of value much more faster. Gives you the opportunity for a look ahead story. I know what’s gonna happen next, how we’re going to execute it, I don’t know, but at least there is a sequence to the madness. What we’re doing is being careful to organize well. So Agile is the project organizing arm of project management that I will continue to recommend for a very long time. [00:10:10] Bill Raymond: I think this is interesting. If I put up a list of all the things that need to be done for some project, everyone kind of feels like they’ve signed up for that list of things. But with agile, you’re saying here are a few objectives that we have. Here are the outcomes that we want. And you might have a list of things, but that list can be thrown out the window if it has to, and we can create a new list. [00:10:35] David Abodunrin: Absolutely. Which is now part of the teams and the team leaders. And that’s, and that way of working is not easy for a project manager to to sit down and swallow it easily. As a project manager, you are always at the forefront. of change in a meaningful way that the organization has no choice than to have your expertise Because you deliver value faster cheaper quicker. There are places on occasion where you should stay waterfall’ish. And there are some cases where you should go or where it’s better to go hybrid. And for sure, there are environments where agility will be the way. So that such that we are beginning to have Agile HR, we’re beginning to have a process improvement kind of things that are agile was the bigger point I’m making, whatever solution you’re trying to work on, there’s a context and a culture and the dynamics of the markets in which you’re operating that should move your hand anyway. In the direction of which of this you want to use or how you want to combine but effectively Agile helps you and that’s that was the point that I did the I took the slide detour from Agile helps you to get your results faster quicker and cheaper any day. [00:11:56] Bill Raymond: You just mentioned that there are times when project management is perfectly valid and agile is perfectly valid. You’ve been doing this for a long time now. What are some like solid examples of good use of project management? [00:12:11] David Abodunrin: To the degree to which your project is predictable in delivery, in performance, in scheduling, then think waterfall. Whenever there’s a lot of uncertainty, think Agile. Whenever the customer or consumer doesn’t know what they want, or things are very blurry around objectives and key indicators anywhere, talk to Agile. Sometimes we see the role of a project manager transition to that of a Scrum Master. Can you quickly give a broad overview as to what a Scrum Master is and are they comparable roles or are they completely different? [00:12:46] The Role of a Scrum Master [00:12:46] David Abodunrin: A Scrum Master is different from a project manager. Although many organizations make the mistakes at times. I’ve seen an organization that says, for a job rule, Scrum Master slash project manager. It’s a strange combination and they are not equal. The project manager takes care of scheduling, cost, quality, risk management issues management when they arise. There’s something called management of resources. There is all of that going on. The project manager manages all of those things for delivery. The Scrum Master is a person who does the capability building of the team in scrum and the ceremonies of scrum. Scrum Master coaches, teaches, mentors, and facilitates. The Scrum Master Is a subject matter expert in the scrum artifacts way of life culture way of working and the Scrum Master has a unique productivity capability the ability to look at value streams in the team and optimize it and make it better, cut waste and all of those. That is the core role of Scrum Master. If your project is really big, you will certainly need a project manager at some place and a Scrum Master. Depending on how complex your organization is or how deep you’re thinking or what are the factors that you’re playing around with. At the end of the day, the Scrum Master owns the leadership of the scrum team for excellence while project manager bothers with scheduling, dates resourcing and all sorts of issues. That’s a subtle difference. In practical terms, some people who are scrum masters double as project manager, I dare say it will not happen on the same project. You will lose one and gain one. You will mess one up, you will gain the other one. It doesn’t happen in my experience very well at one project. No, you have to separate the roles. [00:14:59] Bill Raymond: That makes sense. And I guess that actually leads into, I think, one of the big questions that our audience has had is if you will, going from that formal project management role to the way we typically describe agile teams, I’m curious, what is some advice that you would give to them? [00:15:19] Advice for Transitioning from Project Management to Agile [00:15:19] David Abodunrin: To any young Scrum Master, number one, don’t get frustrated. There’ll be moments of frustration on the way. You’re going to meet difficult team members. You’re going to meet developers who want you to look stupid. You’re going to meet people who think they are more brilliant than you. Remember you’re a servant leader and nobody gravitates away from help. Number two, as soon as possible, get your hands on the tools and learn by doing not by lecturing or by being told. Find heavy opportunity to learn many people start the journey for Scrum on the knowledge lane. The problem is assimilation is complex, but you seldom forget what you experienced yourself. The map is not the territory because you read a lot of textbooks about being a Scrum Master. It doesn’t mean you’re a Scrum Master yet. It means you understand the theory, but there’s still a whole lot that can be learned by, I don’t want to use African colloquial, as long as in Africa, say calm down. Calm down and assimilate. For example, the word facilitation or a Scrum Master as a facilitator. It looks simple on paper until you practice facilitation until you try to facilitate a team and reduce wastes. What did Japanese call Muda. If you want to reduce wastes or you want to increase the throughput that is coming through their pipe. If you use traditional project management understanding, you will enter into bumps. As a project manager, you’re allowed to be the leader. You must have all the answers, you must know what costs is saying, those are good, but there are newer ways of working on newer technologies to do facilitation that you can facilitate to create value. Provide clarity, improve productivity by understanding how the value chain works, know what are the moments of wastes and isolate them non valuable items of the release train can be harvested out by strong facilitation skills. Do you have a story you can share of when you were starting in this journey where there was this sort of aha moment where you realized I’m doing things maybe not the Agile way? [00:17:40] Personal Experiences and Lessons Learned [00:17:40] David Abodunrin: Yep. Yep. For example, scheduling in traditional project management is a project manager’s full responsibility. In the case of this particular project, we kept on battling schedules.It kept changing. It kept changing until we got someone who called let us see new ways. It was a consultant and the guy was just sharing. Okay so, listen gentleman. If you want to do this kind of code software uh, I want to do it in two weeks. What numbers do we need? And it was a room full of people in about, I was shocked I got it all together in three hours.Now flash, flash news. I had been struggling with that schedule. For almost a week and a half different things seem out of place somebody will come and say no this outcome is like this You can’t have this like that. You can’t do this. You can’t do that. You can’t do that You can’t do this, but when you go to a certain level that person helped me in three and a half hours. Backlog was arranged. How long did it take? Who is going to do? It was like I was watching a movie, but here was I on the Gantt chart for many weeks. Okay. Doing this, call that person, get that person. So the hammer was team wisdom is superior to individual wisdom. We are not, we are stronger. We are all wiser with each other. We are stronger with each other. Everyone has value to contribute to a schedule conversation or a backlog arrangement, or a sprint retrospective if you have the group. So the golden rule: trust the team, empower them to deliver, give them the numbers, whatever you have and back off. Backing off is not easy. So that’s it. I can’t forget how, how, how in three hours the dates were already, how the team will work, what they’ll be doing.So this guy has very strong facilitation skills. [00:19:36] Closing Remarks and Contact Information [00:19:36] David Abodunrin: David Abodunrin how can people reach you? Yes. You can reach me via LinkedIn. [00:19:41] Bill Raymond: We will make sure that your LinkedIn profile is provided in the https://agileinaction.com website. If you’re watching this on YouTube, it’ll be there in the description. And of course, if you’re in a podcast app right now, it’ll be in the notes. This was such a great conversation, David. Thank you so much for your time today. [00:19:59] David Abodunrin: Thank you for having me, Bill. Awesome. I’ve enjoyed myself so much. Thank you so much. [00:20:04] Bill Raymond: Thank you for listening to the Agile in Action Podcast with Bill Raymond. Subscribe now to stay current on the latest trends in team, organization, and agile techniques. Please take a moment to rate and comment to help us grow our community. This podcast is produced in affiliation with Cambermast LLC, and our executive producer is Reama Dagasan. [00:20:25] Speaker: If there is a topic you would like Bill to cover, contact him directly at Bill.Raymond@agileinaction.com. The Agile in Action with Bill Raymond Podcast The Agile in Action with Bill Raymond Podcast bill.raymond@agileinaction.com williamraymond BillRaymond The Agile in Action Podcast with Bill Raymond serves listeners with unique perspectives of the people working tirelessly to modernize how teams work.
2026-01-13T08:47:43
https://blog.devcycle.com
DevCycle Blog | OpenFeature Content and Tutorials from the First Native Provider Blog Home OpenFeature Guides and Tutorials Product Updates Case Studies DevCycle Home Why a Homegrown Feature Flag System is a Trap Feature flags empower teams to ship code safely, experiment quickly, and decouple deploys from releases. At first glance, building your own feature flag system seems like a quick win: a few conditionals in your code, a simple database table, and you’re off to the races. But reality sets in Dec 10, 2025 4 min read Who Knew Feature Flags Would Save AI Coding From "good enough" to production‑ready, fast When a new component glows in your IDE, and your AI assistant says, "Ready for deployment." What do you do? You could launch it wide, hit the big green button, and pray for no fires. But you don' Dec 10, 2025 3 min read Why Feature Flags Are a Must in Every Engineering Manager’s Toolkit When I first stepped into an engineering manager role, I quickly learned that moving fast without losing control is one of the hardest balances to strike. Feature flags helped me make that balance real. Here’s how, and why, you should treat feature flags not as a “nice-to-have,” but a Dec 9, 2025 3 min read What We Shipped in Q3: User Debug Tools, AI-Generated Features and More 🚀 In the last few months we’ve released a ton of upgrades including; a suite of debugging functionality, powerful AI-assisted tooling and new observability integrations. Combined, this functionality makes it even easier to understand how your features behave in production. 🧩 User Debug Tools The new suite of Debug Tools: Evaluation Nov 5, 2025 3 min read We Rebuilt Our Onboarding Around MCP: The Result, 3X SDK Installs TL;DR * We rebuilt onboarding around our MCP (Model‑Context‑Protocol) integration so developers start inside their editor with our SDK—not a detour through example apps or sandboxes. * Early results: ~3× more users reach SDK install versus our previous flow, and they see real product value sooner. * This piece Oct 6, 2025 7 min read What’s New in Q2: AI-Powered Flag Management, Debugging Insights, and Smoother Rollouts 🚀 Over the past quarter, we’ve rolled out new features and improvements designed to help you build, test, and release with more control and visibility. Here’s everything new in DevCycle! 🤖 Meet DevCycle’s MCP Server We’re thrilled to announce the availability of the DevCycle MCP Server! The MCP Sep 3, 2025 3 min read Product Updates From Hackathon to Production: What It Took to Ship Our DevCycle MCP When we started building our MCP server, it began as a simple hackathon project: take our existing CLI interface, which already has authentication and most of our API calls, and adapt it to work as an MCP server. As a hackathon project, it turned out to be a pretty compelling Sep 1, 2025 8 min read Introducing the DevCycle MCP Server: Ship Flags Faster, Safely with AI Coding Agents Why we built a MCP server for DevCycle AI coding environments and agents are great at writing code—but the moment you need to create a feature flag, tweak targeting, or check an audit log, you’re back to context‑switching: open the dashboard, copy keys, run a CLI, paste Aug 26, 2025 5 min read DevCycle is Now SOC 2 Type II Compliant We're excited to announce that as of December 2024, DevCycle has achieved SOC 2 Type II compliance! SOC 2 Type II compliance represents a critical milestone in our commitment to security and privacy, demonstrating our rigorous adherence to the highest standards of trust and reliability. What is SOC Jun 27, 2025 1 min read OpenFeature vs. Proprietary Systems Breaking Down Vendor Lock-In Risks and Future-Proofing Your Stack Introduction: The Double-Edged Sword of Feature Flagging Feature flagging has become a cornerstone of agile software development, enabling trunk-based development, streamlined A/B testing, improved incident management, and safe, gradual feature releases. Its capacity to deliver value to engineering teams is Jun 19, 2025 3 min read OpenFeature Why is OpenFeature Support is Critical? Comparing Top OpenFeature Providers Feature flagging is essential for modern software development, enabling teams to test in production, manage releases incrementally, and mitigate risks, by separating code deploys from the release of features to users. As adoption grows, standardization via OpenFeature—an open specification for feature flags—becomes crucial to avoid vendor lock-in, simplify Jun 2, 2025 6 min read OpenFeature OpenFeature Multi-Provider: Enabling New Feature Flagging Use-Cases (Video) What is OpenFeature and the Multi-Provider? What Are Some Use Cases? Watch DevCycle’s Co-Founder and CTO, Jonathan Norris, as he highlights the capabilities and unique use cases enabled by the OpenFeature Multi-Provider. Learn about OpenFeature, the Multi-Provider and about use cases such as combining multiple feature flag vendors under May 29, 2025 1 min read Product Updates DevCycle Product Updates (Q1 2025) Find out what's new at DevCycle, including stale flag alerts, project level RBAC and enhancements to targeting. Welcome to your Q1 2025 DevCycle product update! We’ve rolled out a ton of exciting improvements in the past few months — from powerful new lifecycle tools to better access management May 12, 2025 2 min read Using Feature Flags to Build a Better AI In a world where AI is becoming increasingly prevalent in applications, there is a need to ensure that the AI is accurate. We hear a lot about failures with chatbots going rogue, image generators showing physically incorrect images, and generally wrong answers to simple questions. So, how can you ensure Apr 25, 2025 3 min read Guides and Tutorials 5 Steps to a Continuous Deployment Culture Deploying software into production so that your users can access it is one of the key areas of software development. Whether you are a two-person start-up using the latest tools and frameworks, a small business integrating multiple SaaS applications, or an enterprise business with 40 years of legacy systems to Mar 28, 2025 11 min read OpenFeature OpenFeature Hackathon 2024 A few times a year at DevCycle, we hit pause on our usual work, push aside our roadmaps, and dive into a few days of rapid experimentation and collaboration. For our first hackathon of 2025, we opted for an OpenFeature theme —a chance to explore new ideas, test bold concepts, Mar 19, 2025 9 min read OpenFeature How Jackson Used DevCycle and OpenFeature to Achieve a Zero-Downtime Migration Today's DevCycle Spotlight features Jackson Kasi, a developer who won the OpenFeature Aficionado prize for our first ever DevCycle Feature Flag Challenge on Dev.to where we challenged developers to build a fun or creative project using DevCycle! Jackson won the OpenFeature Aficionado prize for the most innovative Mar 4, 2025 3 min read OpenFeature Open Standards in a Trade War: Why You'll Need an Escape Hatch When Politics Hits Your Stack Open Standards have never been more important. In a world with impending trade wars globally, it's likely that software will be taxed and restricted. Going forward it is going to be critical to be able to rip and replace software if the winds of geopolitics shift in the wrong direction. Feb 26, 2025 7 min read Unleashing Creativity: How Ansell Built Cycle Doodle Using DevCycle Today's DevCycle Spotlight features Ansell Maximilian, a developer who won the first DevCycle Feature Flag Challenge on Dev.to! The challenge encouraged entrants to build a fun and creative project using DevCycle. He took the top prize with his inventive Cycle Doodle project. Judges loved the creativity of Feb 25, 2025 3 min read Guides and Tutorials How to Use Devcycle to Configure Your Pieces-Powered Generative AI App This blog post explains using DevCycle to configure a generative AI app with Pieces , focusing on a Star Wars-themed copilot. It covers managing LLM configurations with feature flags for quick experimentation and highlights the benefits of using LLM abstractions for efficient model integration. Nov 11, 2024 7 min read Guides and Tutorials Creating a Star Trek-Inspired GenAI Copilot Using Pieces and DevCycle In this post, we show you how DevCycle and Pieces for Developers make experimenting with AI as smooth as a warp-speed jump. Nov 11, 2024 Outside Voices Guides and Tutorials Beam Me Up, SQLite: Running Real-Time Performance Experiments with DevCycle This post guides you through setting up an engineering-led experiment to compare the performance of SQLite (local), Turso, and SQLiteCloud using the SQLite Trek app and DevCycle. Sep 13, 2024 8 min read Guides and Tutorials Set Phasers to Experiment: How to Use Feature Flags to Drive SQLite Performance Tests In this blog post, we explore how feature flags are essential for effective experimentation and introduce a practical example of performance testing across different SQLite options to showcase DevCycle's experimentation capabilities. Sep 13, 2024 5 min read Case Studies Featured IGS Case Study - Using DevCycle in a Cloud-Based Microservices Architecture About IGS Intelligent Growth Solutions (IGS) is a pioneering company in the vertical farming industry, specializing in the development of advanced vertical farming towers. Their new and innovative approaches optimize agricultural productivity by using vertical space and technology to maximize crop yield and quality. IGS initially considered using flagd but Aug 9, 2024 3 min read OpenFeature Recipe for Change: Unlocking Feature Flag Flexibility in a Hyperapp with OpenFeature and the Multi-Provider Utility Are your feature flags as flexible as they could be? If they are hard-coded static configurations, the answer is likely no. In this guide, we'll explore how OpenFeature can unlock the full potential of feature flags using a fun (although maybe impractical) example—a Recipe Manager app where Aug 6, 2024 9 min read Page 1 of 3 Older Posts → DevCycle Blog © 2026 Powered by Ghost
2026-01-13T08:47:43
https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fdev.to%2Fjinali98%2Fcrafting-a-stitch-inspired-memecoin-on-sui-4o0h&title=Crafting%20a%20Stitch-Inspired%20Memecoin%20on%20Sui&summary=Last%20weekend%2C%20I%20went%20out%20with%20friends%20to%20catch%20Lilo%20%26amp%3B%20Stitch%20on%20the%20big%20screen%2C%20the%20heartwarming...&source=DEV%20Community
LinkedIn Login, Sign in | LinkedIn Sign in Sign in with Apple Sign in with a passkey By clicking Continue, you agree to LinkedIn’s User Agreement , Privacy Policy , and Cookie Policy . or Email or phone Password Show Forgot password? Keep me logged in Sign in We’ve emailed a one-time link to your primary email address Click on the link to sign in instantly to your LinkedIn account. If you don’t see the email in your inbox, check your spam folder. Resend email Back New to LinkedIn? Join now Agree & Join LinkedIn By clicking Continue, you agree to LinkedIn’s User Agreement , Privacy Policy , and Cookie Policy . LinkedIn © 2026 User Agreement Privacy Policy Community Guidelines Cookie Policy Copyright Policy Send Feedback Language العربية (Arabic) বাংলা (Bangla) Čeština (Czech) Dansk (Danish) Deutsch (German) Ελληνικά (Greek) English (English) Español (Spanish) فارسی (Persian) Suomi (Finnish) Français (French) हिंदी (Hindi) Magyar (Hungarian) Bahasa Indonesia (Indonesian) Italiano (Italian) עברית (Hebrew) 日本語 (Japanese) 한국어 (Korean) मराठी (Marathi) Bahasa Malaysia (Malay) Nederlands (Dutch) Norsk (Norwegian) ਪੰਜਾਬੀ (Punjabi) Polski (Polish) Português (Portuguese) Română (Romanian) Русский (Russian) Svenska (Swedish) తెలుగు (Telugu) ภาษาไทย (Thai) Tagalog (Tagalog) Türkçe (Turkish) Українська (Ukrainian) Tiếng Việt (Vietnamese) 简体中文 (Chinese (Simplified)) 正體中文 (Chinese (Traditional))
2026-01-13T08:47:43
https://dev.to/anand12/top-10-git-commands-every-developer-should-know
Top 10 Git Commands Every Developer Should Know - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close #WithAnand Follow Top 10 Git Commands Every Developer Should Know Oct 26 '21 play Git is an important part of daily programming (especially if you're working with a team) and is widely used in the software industry. Since there are many various commands you can use, mastering Git takes time. https://muthuannamalai.tech/top-10-git-commands-every-developer-should-know. Read Blog: https://muthuannamalai.tech/top-10-git-commands-every-developer-should-know --- Send in a voice message: https://anchor.fm/anand12/message Episode source Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Your browser does not support the audio element. 1x initializing... × 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://dev.to/devnews/s5-e7-apple-s-spyphone-an-apple-app-store-settlement-and-the-expansion-of-government-facial-recognition-software
S5:E7 - Apple’s #SpyPhone, an Apple App Store Settlement, and the Expansion of Government Facial Recognition Software - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close DevNews Follow S5:E7 - Apple’s #SpyPhone, an Apple App Store Settlement, and the Expansion of Government Facial Recognition Software Sep 2 '21 play In this episode, we talk about an the expansion of government facial recognition software and an Apple App store settlement. Then we speak with Yafit Lev-Aretz, assistant professor of law at Baruch College and the Director of Tech Ethics program at the Zicklin Center for Corporate Integrity, about Apple scanning iCloud images and iMessages for child sexual abuse material. Then we speak with Anunay Kulshrestha, Princeton Computer Science doctoral candidate, whose team had built a similar child sexual abuse materal scanning system, about the potential privacy and cybersecurity risks that implementing such a system creates. Show Notes Scout APM (DevNews) (sponsor) CodeLand (sponsor) Facial Recognition Software: Current and Planned Uses by Federal Agencies System Error: Where Big Tech Went Wrong and How We Can Reboot Apple Settles With App Developers Without Making Major Concessions The All-Seeing "i": Apple Just Declared War on Your Privacy Apple: Expanded Protections for Children Opinion: We built a system like Apple’s to flag child sexual abuse material — and concluded the tech was dangerous Identifying Harmful Media in End-to-End Encrypted Communication: Efficient Private Membership Computation Yafit Lev-Aretz Yafit Lev-Aretz is an assistant professor of law at the Zicklin School of Business (Baruch College, City University of New York), and the ​​Director of Tech Ethics program at the Zicklin Center for Corporate Integrity. Professor Lev-Aretz is a tech policy expert with over fifteen years of experience in studying and operationalizing the relationship between law, technology, and society. Anunay Kulshrestha Anunay Kulshrestha is a doctoral candidate in Computer Science at Princeton University, affiliated with the Center for Information Technology Policy. His research interests lie in applied cryptography and computer security, and their policy implications for privacy in today’s networked world. He is interested in understanding how cryptographic techniques can yield transparency- and accountability-enhancing privacy-preserving solutions to policy problems of trust. Episode source Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Your browser does not support the audio element. 1x initializing... × 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://dev.to/kowshikkumar_reddymakire
Kowshikkumar Reddy Makireddy - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Follow User actions Kowshikkumar Reddy Makireddy 404 bio not found Joined Joined on  Jan 13, 2026 More info about @kowshikkumar_reddymakire Post 1 post published Comment 0 comments written Tag 0 tags followed Building a Low-Code Blockchain Deployment Platform Kowshikkumar Reddy Makireddy Kowshikkumar Reddy Makireddy Kowshikkumar Reddy Makireddy Follow Jan 13 Building a Low-Code Blockchain Deployment Platform # showdev # blockchain # devops # tooling Comments Add Comment 9 min read loading... 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://dev.to/help/community-resources#$%7Bentry.target.id%7D
Community Resources - DEV Help - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close DEV Help The latest help documentation, tips and tricks from the DEV Community. Help > Community Resources Community Resources In this article Recommended reads from the Community Both the DEV Team and DEV community members often share guides and resources for using DEV under the tag #howtodevto . Please browse these posts and if you have any tips for using DEV, write a post and share it with us under the tag! Recommended reads from the Community Finally a clean and easy way to add Table of Contents to dev.to articles 🤩 Lucy Linder ・ Jan 2 '23 #howtodevto #writing #beginners #showdev How to write a high quality post on DEV Ella (she/her/elle) ・ Aug 20 '21 #writing #howtodevto Lesser Known Features of DEV — Using Comment Templates Michael Tharrington ・ Jan 4 '23 #meta #documentation #community #howtodevto 😁12 things you didn't know you could do with DEV Anmol Baranwal ・ Jan 30 '24 #writing #tutorial #beginners #howtodevto How to write a VERY HIGH quality post on DEV [13 top tips + a bonus 🤯!] GrahamTheDev ・ Aug 20 '21 #a11y #writing #beginners #howtodevto 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://dev.to/t/beginners/page/3379
Beginners Page 3379 - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Beginners Follow Hide "A journey of a thousand miles begins with a single step." -Chinese Proverb Create Post submission guidelines UPDATED AUGUST 2, 2019 This tag is dedicated to beginners to programming, development, networking, or to a particular language. Everything should be geared towards that! For Questions... Consider using this tag along with #help, if... You are new to a language, or to programming in general, You want an explanation with NO prerequisite knowledge required. You want insight from more experienced developers. Please do not use this tag if you are merely new to a tool, library, or framework. See also, #explainlikeimfive For Articles... Posts should be specifically geared towards true beginners (experience level 0-2 out of 10). Posts should require NO prerequisite knowledge, except perhaps general (language-agnostic) essentials of programming. Posts should NOT merely be for beginners to a tool, library, or framework. If your article does not meet these qualifications, please select a different tag. Promotional Rules Posts should NOT primarily promote an external work. This is what Listings is for. Otherwise accepable posts MAY include a brief (1-2 sentence) plug for another resource at the bottom. Resource lists ARE acceptable if they follow these rules: Include at least 3 distinct authors/creators. Clearly indicate which resources are FREE, which require PII, and which cost money. Do not use personal affiliate links to monetize. Indicate at the top that the article contains promotional links. about #beginners If you're writing for this tag, we recommend you read this article . If you're asking a question, read this article . Older #beginners posts 3376 3377 3378 3379 Posts Left menu 👋 Sign in for the ability to sort posts by relevant , latest , or top . Right menu loading... 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://golf.forem.com/about
About - Golf Forem Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account Golf Forem Close About This is a new Subforem, part of the Forem ecosystem. You are welcome to the community and stay tuned for more! 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV Golf Forem — A community of golfers and golfing enthusiasts Home About Contact Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . Golf Forem © 2016 - 2026. Where hackers, sticks, weekend warriors, pros, architects and wannabes come together Log in Create account
2026-01-13T08:47:43
https://docs.suprsend.com/docs/integrate-java-sdk
Integrate Java SDK - SuprSend, Notification infrastructure for Product teams Skip to main content SuprSend, Notification infrastructure for Product teams home page Search... ⌘ K Community Trust Center Platform Status Postman Collection Developer Resources Overview Updates and Versioning Versioning and Support Policy SDK Changelog Authentication API Keys and Secrets Service Token Best Practices for Key & Token Management MCP Overview BETA Quickstart Tool List Building with LLMs Security Security SDKs and APIs SDKs SDK Overview SuprSend Backend SDK Python SDK Node.js SDK Java SDK Integrate Java SDK Manage Users Objects Send and Track Events Trigger Workflow from API Tenants Lists Broadcast Go SDK SuprSend Client SDK Management API REST API Postman Collection Features Validate Trigger Payload Type Safety Testing Testing the Template Test Mode Monitoring and Logging Logs Data Out Contact Us Get Started SuprSend, Notification infrastructure for Product teams home page Search... ⌘ K Ask AI Contact Us Get Started Get Started Search... Navigation Java SDK Integrate Java SDK Documentation API Reference Management API CLI Reference Developer Resources Changelog Documentation API Reference Management API CLI Reference Developer Resources Changelog Java SDK Integrate Java SDK OpenAI Open in ChatGPT Install & Initialize SuprSend Java SDK using your workspace credentials for sending notifications. OpenAI Open in ChatGPT ​ Installation For SDK installation, you’ll have to add the SuprSend jar file. You can include the jar using following two ways: Option 1. As a Maven dependency for maven projects from downloaded jar suprsend-java-sdk is present as a maven dependency on maven central. Add following code to your pom.xml to include the sdk xml Copy Ask AI < dependencies > < dependency > < groupId > com.suprsend </ groupId > < artifactId > suprsend-java-sdk </ artifactId > < version > 0.5.0 </ version > </ dependency > </ dependencies > Option 2. As a jar file for non maven projects Click here to download the latest version of java SDK from releases section and add it as an External Jar in your build path. suprsend-java-sdk is available as a JAR with name- suprsend-java-sdk-0.5.0-jar-with-dependencies.jar JDK version 8 and above is supported Please check your Java development kit version. If it is lower than supported version, upgrade it to the latest version ​ Initialization For initializing SDK, you need WORKSPACE KEY and WORKSPACE SECRET . Request Copy Ask AI import suprsend.Suprsend; Suprsend suprsend = new Suprsend ( "WORKSPACE KEY" , "WORKSPACE SECRET" ); Replace WORKSPACE KEY and WORKSPACE SECRET with your workspace values. You will get both the tokens from Developers -> API Keys section. ​ Constructor to test SDK in debug mode Constructor allows you to view HTTP calls to Suprsend in your console. The final parameter is a boolean parameter which denotes whether value for “debug” is true or false. Default value for the same is false. Request Copy Ask AI import suprsend.Suprsend; Suprsend suprsend = new Suprsend ( "WORKSPACE KEY" , "WORKSPACE SECRET" , true ); Was this page helpful? Yes No Suggest edits Raise issue Previous Manage Users Manage user profiles and communication channels programmatically with the Java SDK. Next ⌘ I x github linkedin youtube Powered by On this page Installation Initialization Constructor to test SDK in debug mode
2026-01-13T08:47:43
https://docs.suprsend.com/reference/mcp-overview
MCP Overview - SuprSend, Notification infrastructure for Product teams Skip to main content SuprSend, Notification infrastructure for Product teams home page Search... ⌘ K Community Trust Center Platform Status Postman Collection Developer Resources Overview Updates and Versioning Versioning and Support Policy SDK Changelog Authentication API Keys and Secrets Service Token Best Practices for Key & Token Management MCP Overview BETA Quickstart Tool List Building with LLMs Security Security SDKs and APIs SDKs Management API REST API Postman Collection Features Validate Trigger Payload Type Safety Testing Testing the Template Test Mode Monitoring and Logging Logs Data Out Contact Us Get Started SuprSend, Notification infrastructure for Product teams home page Search... ⌘ K Ask AI Contact Us Get Started Get Started Search... Navigation MCP MCP Overview Documentation API Reference Management API CLI Reference Developer Resources Changelog Documentation API Reference Management API CLI Reference Developer Resources Changelog MCP MCP Overview OpenAI Open in ChatGPT Use the SuprSend MCP server to connect SuprSend with LLMs and AI agents OpenAI Open in ChatGPT ​ Overview The SuprSend MCP server exposes key SuprSend components — such as workflows, users, tenants, objects, and preferences — through the Model Context Protocol. With MCP, your AI agents can directly query, update, and manage SuprSend resources, as well as trigger notifications, all through tool calling. ​ What can you do with MCP? Instead of manually navigating through the SuprSend dashboard or writing complex API calls, you can simply tell your AI assistant what you want to accomplish. Here are some examples of how you can use the MCP server: Search documentation and apply results. “Find the setup guide for integrating the React Drop-in Inbox and insert the required code snippet into my project.” Trigger workflows on demand. “Run the approval-required workflow for user John Doe to test my notification setup.” Bootstrap test data. “Create a sample user named John Doe and a tenant called acme-corp in my workspace.” Manage notification preferences. “Enable email notifications for marketing team and disable SMS.” Configure tenant-level branding. “Update the logo and primary color for the enterprise tenant to match the new design guidelines.” Was this page helpful? Yes No Suggest edits Raise issue Previous Quickstart Get up and running with SuprSend MCP Server in minutes. Complete setup, authentication, and start using right away. Next ⌘ I x github linkedin youtube Powered by On this page Overview What can you do with MCP?
2026-01-13T08:47:43
https://parenting.forem.com/terms
Web Site Terms and Conditions of Use - Parenting Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account Parenting Close Web Site Terms and Conditions of Use 1. Terms By accessing this web site, you are agreeing to be bound by these web site Terms and Conditions of Use, our Privacy Policy , all applicable laws and regulations, and agree that you are responsible for compliance with any applicable local laws. If you do not agree with any of these terms, you are prohibited from using or accessing this site. The materials contained in this web site are protected by applicable copyright and trade mark law. 2. Use License Permission is granted to temporarily download one copy of the materials (information or software) on DEV Community's web site for personal, non-commercial transitory viewing only. This is the grant of a license, not a transfer of title, and under this license you may not: modify or copy the materials; use the materials for any commercial purpose, or for any public display (commercial or non-commercial); attempt to decompile or reverse engineer any software contained on DEV Community's web site; remove any copyright or other proprietary notations from the materials; or transfer the materials to another person or "mirror" the materials on any other server. This license shall automatically terminate if you violate any of these restrictions and may be terminated by DEV Community at any time. Upon terminating your viewing of these materials or upon the termination of this license, you must destroy any downloaded materials in your possession whether in electronic or printed format. 3. Disclaimer The materials on DEV Community's web site are provided "as is". DEV Community makes no warranties, expressed or implied, and hereby disclaims and negates all other warranties, including without limitation, implied warranties or conditions of merchantability, fitness for a particular purpose, or non-infringement of intellectual property or other violation of rights. Further, DEV Community does not warrant or make any representations concerning the accuracy, likely results, or reliability of the use of the materials on its Internet web site or otherwise relating to such materials or on any sites linked to this site. 4. Limitations In no event shall DEV Community or its suppliers be liable for any damages (including, without limitation, damages for loss of data or profit, or due to business interruption,) arising out of the use or inability to use the materials on DEV Community's Internet site, even if DEV Community or an authorized representative has been notified orally or in writing of the possibility of such damage. Because some jurisdictions do not allow limitations on implied warranties, or limitations of liability for consequential or incidental damages, these limitations may not apply to you. 5. Revisions and Errata The materials appearing on DEV Community's web site could include technical, typographical, or photographic errors. DEV Community does not warrant that any of the materials on its web site are accurate, complete, or current. DEV Community may make changes to the materials contained on its web site at any time without notice. DEV Community does not, however, make any commitment to update the materials. 6. Links DEV Community has not reviewed all of the sites linked to its Internet web site and is not responsible for the contents of any such linked site. The inclusion of any link does not imply endorsement by DEV Community of the site. Use of any such linked web site is at the user's own risk. 7. Copyright / Takedown Users agree and certify that they have rights to share all content that they post on DEV Community — including, but not limited to, information posted in articles, discussions, and comments. This rule applies to prose, code snippets, collections of links, etc. Regardless of citation, users may not post copy and pasted content that does not belong to them. DEV Community does not tolerate plagiarism of any kind, including mosaic or patchwork plagiarism. Users assume all risk for the content they post, including someone else's reliance on its accuracy, claims relating to intellectual property, or other legal rights. If you believe that a user has plagiarized content, misrepresented their identity, misappropriated work, or otherwise run afoul of DMCA regulations, please email support@dev.to. DEV Community may remove any content users post for any reason. 8. Site Terms of Use Modifications DEV Community may revise these terms of use for its web site at any time without notice. By using this web site you are agreeing to be bound by the then current version of these Terms and Conditions of Use. 9. DEV Community Trademarks and Logos Policy All uses of the DEV Community logo, DEV Community badges, brand slogans, iconography, and the like, may only be used with express permission from DEV Community. DEV Community reserves all rights, even if certain assets are included in DEV Community open source projects. Please contact support@dev.to with any questions or to request permission. 10. Reserved Names DEV Community has the right to maintain a list of reserved names which will not be made publicly available. These reserved names may be set aside for purposes of proactive trademark protection, avoiding user confusion, security measures, or any other reason (or no reason). Additionally, DEV Community reserves the right to change any already-claimed name at its sole discretion. In such cases, DEV Community will make reasonable effort to find a suitable alternative and assist with any transition-related concerns. 11. Content Policy The following policy applies to comments, articles, and all other works shared on the DEV Community platform: Users must make a good-faith effort to share content that is on-topic, of high-quality, and is not designed primarily for the purposes of promotion or creating backlinks. Posts must contain substantial content — they may not merely reference an external link that contains the full post. If a post contains affiliate links, that fact must be clearly disclosed. For instance, with language such as: “This post includes affiliate links; I may receive compensation if you purchase products or services from the different links provided in this article.” DEV Community reserves the right to remove any content that it deems to be in violation of this policy at its sole discretion. Additionally, DEV Community reserves the right to restrict any user’s ability to participate on the platform at its sole discretion. 12. Fees, Payment, Renewal Fees for Paid Services .Fees for Paid Services. Some of our Services may be offered for a fee (collectively, “Paid Services”). This section applies to any purchases of Paid Services. By using a Paid Service, you agree to pay the specified fees. Depending on the Paid Service, there may be different kinds of fees, for instance some that are one-time, recurring, and/or based on an advertising campaign budget that you set. For recurring fees (AKA Subscriptions), your subscription begins on your purchase date, and we’ll bill or charge you in the automatically-renewing interval (such as monthly, annually) you select, on a pre-pay basis until you cancel, which you can do at any time by contacting plusplus@dev.to . Payment. You must provide accurate and up-to-date payment information. By providing your payment information, you authorize us to store it until you request deletion. If your payment fails, we suspect fraud, or Paid Services are otherwise not paid for or paid for on time (for example, if you contact your bank or credit card company to decline or reverse the charge of fees for Paid Services), we may immediately cancel or revoke your access to Paid Services without notice to you. You authorize us to charge any updated payment information provided by your bank or payment service provider (e.g., new expiration date) or other payment methods provided if we can’t charge your primary payment method. Automatic Renewal. By enrolling in a subscription, you authorize us to automatically charge the then-applicable fees for each subsequent subscription period until the subscription is canceled. If you received a discount, used a coupon code, or subscribed during a free trial or promotion, your subscription will automatically renew for the full price of the subscription at the end of the discount period. This means that unless you cancel a subscription, it’ll automatically renew and we’ll charge your payment method(s). The date for the automatic renewal is based on the date of the original purchase and cannot be changed. You can view your renewal date(s), cancel, or manage subscriptions by contacting plusplus@dev.to . Fees and Changes. We may change our fees at any time in accordance with these Terms and requirements under applicable law. This means that we may change our fees going forward or remove or update features or functionality that were previously included in the fees. If you don’t agree with the changes, you must cancel your Paid Service. Refunds. There are no refunds and all payments are final. European Users: You have the right to withdraw from the transaction within fourteen (14) days from the date of the purchase without giving any reason as long as your purchase was not of downloadable content or of a customized nature, and (i) the service has not been fully performed, or (ii) subject to other limitations as permitted by law. If you cancel this contract, we will reimburse you all payments we have received from you, without undue delay and no later than within fourteen days from the day on which we received the notification of your cancellation of this contract. For this repayment, we will use the same means of payment that you used for the original transaction, unless expressly agreed otherwise with you; you will not be charged for this repayment. You may exercise your right to withdrawal by sending a clear, email request to plusplus@dev.to with the following information: List of services you wish to withdraw from List the date that you purchased the goods or services. If this is a recurring subscription, please list the most recent renewal date List your full legal name and the email associated with your account List the address in which you legally reside Today's Date 13. Governing Law Any claim relating to DEV Community's web site shall be governed by the laws of the State of New York without regard to its conflict of law provisions. General Terms and Conditions applicable to Use of a Web Site. 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV Parenting — A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Home About Contact Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . Parenting © 2016 - 2026. Navigating the chaos and joy of parenting. Log in Create account
2026-01-13T08:47:43
https://parenting.forem.com/t/chores
Chores - Parenting Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account Parenting Close # chores Follow Hide Strategies for getting kids involved in household responsibilities. Create Post Posts Left menu 👋 Sign in for the ability to sort posts by relevant , latest , or top . Right menu loading... 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV Parenting — A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Home About Contact Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . Parenting © 2016 - 2026. Navigating the chaos and joy of parenting. Log in Create account
2026-01-13T08:47:43
https://x.com/tos#chapter2
X Terms of Service Skip to main content Terms of Service <path opacity="0" d="M0 0h24v24H0z" /> <path d="M17.207 11.293l-7.5-7.5c-.39-.39-1.023-.39-1.414 0s-.39 1.023 0 1.414L15.086 12l-6.793 6.793c-.39.39-.39 1.023 0 1.414.195.195.45.293.707.293s.512-.098.707-.293l7.5-7.5c.39-.39.39-1.023 0-1.414z" /> </svg>" data-icon-arrow-left="<svg width="28px" height="28px" viewbox="0 0 28 28" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="none" class="twtr-icon u01b__icon-arrow-left"> <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round"> <g transform="translate(-1216.000000, -298.000000)" stroke-width="2.25"> <g transform="translate(1200.000000, 282.000000)"> <g transform="translate(17.000000, 17.000000)"> <path d="M0.756410256,12.8589744 L25.7179487,12.8589744"></path> <path d="M13.2371795,25.3397436 L25.7179487,12.8589744"></path> <path d="M13.2371795,12.4807692 L25.3397436,0.378205128" transform="translate(19.288462, 6.429487) rotate(-90.000000) translate(-19.288462, -6.429487) "></path> </g> </g> </g> </g> </svg>" data-icon-chevron-down="<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" aria-hidden="true" focusable="false" role="none" class="twtr-icon"> <path opacity="0" d="M0 0h24v24H0z" /> <path d="M20.207 7.043c-.39-.39-1.023-.39-1.414 0L12 13.836 5.207 7.043c-.39-.39-1.023-.39-1.414 0s-.39 1.023 0 1.414l7.5 7.5c.195.195.45.293.707.293s.512-.098.707-.293l7.5-7.5c.39-.39.39-1.023 0-1.414z" /> </svg>" data-icon-close="<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewbox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve" aria-hidden="true" focusable="false" role="none" class="twtr-icon--md"> <g> <g> <defs> <rect id="SVGID_1_" x="-468" y="-1360" width="1440" height="3027" /> </defs> <clippath id="SVGID_2_"> <use xlink:href="#SVGID_1_" style="overflow:visible;" /> </clippath> </g> </g> <rect x="-468" y="-1360" class="st0" width="1440" height="3027" style="fill:rgb(0,0,0,0);stroke-width:3;stroke:rgb(0,0,0)" /> <path d="M13.4,12l5.8-5.8c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0L12,10.6L6.2,4.8c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4 l5.8,5.8l-5.8,5.8c-0.4,0.4-0.4,1,0,1.4c0.2,0.2,0.4,0.3,0.7,0.3s0.5-0.1,0.7-0.3l5.8-5.8l5.8,5.8c0.2,0.2,0.5,0.3,0.7,0.3 s0.5-0.1,0.7-0.3c0.4-0.4,0.4-1,0-1.4L13.4,12z" /> </svg>" data-icon-search="<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" aria-hidden="true" focusable="false" role="none" class="twtr-icon"> <path opacity="0" d="M0 0h24v24H0z" /> <path d="M22.06 19.94l-3.73-3.73C19.38 14.737 20 12.942 20 11c0-4.97-4.03-9-9-9s-9 4.03-9 9 4.03 9 9 9c1.943 0 3.738-.622 5.21-1.67l3.73 3.73c.292.294.676.44 1.06.44s.768-.146 1.06-.44c.586-.585.586-1.535 0-2.12zM11 17c-3.308 0-6-2.692-6-6s2.692-6 6-6 6 2.692 6 6-2.692 6-6 6z" /> </svg>" data-icon-search-submit="<svg width="21" height="21" viewbox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="none" class="twtr-icon"> <path fill-rule="evenodd" clip-rule="evenodd" d="M16.33 14.21L20.06 17.94C20.646 18.525 20.646 19.475 20.06 20.06C19.768 20.354 19.384 20.5 19 20.5C18.616 20.5 18.232 20.354 17.94 20.06L14.21 16.33C12.738 17.378 10.943 18 9 18C4.03 18 0 13.97 0 9C0 4.03 4.03 0 9 0C13.97 0 18 4.03 18 9C18 10.942 17.38 12.737 16.33 14.21ZM3 9C3 12.308 5.692 15 9 15C12.308 15 15 12.308 15 9C15 5.692 12.308 3 9 3C5.692 3 3 5.692 3 9Z" fill="white" /> </svg>" data-bg-color="white-neutral" data-root-page-title="Terms of Service" data-search-placeholder="Search" data-search-query-key="q" data-search-query-type="?" data-scribe-element="RJPO" data-scribe-section="u01b-navigation" data-cta-enabled="true" data-cta-text="Download PDF" data-cta-link="https://cdn.cms-twdigitalassets.com/content/dam/legal-twitter/site-assets/terms-of-service-2025-05-08/en/x-terms-of-service-2025-05-08.pdf" data-cta-link-new-tab="true"> Terms of Service We have made some updates to our Terms of Service. This version of the Terms of Service will go into effect on January 15, 2026. Until then, the current Terms of Service continue to apply.   Summary of our Terms These Terms of Service (“Terms”) are part of the User Agreement – a legally binding contract governing your relationship with X. You should read these Terms in full, but here are a few key things you should take away: You will see advertising on the platform: In exchange for accessing the Services, X and our third-party providers and partners may display advertising to you. When posting Content and otherwise using the Services, you must comply with this User Agreement and Applicable Law: You are responsible for your use of the Services and your Content. You must comply with the User Agreement, including all applicable policies and rules, and all applicable laws. You must abide by the Services’ acceptable use terms: You may not access the Services in any way other than through the currently available, published interfaces that we provide. For example, this means that you cannot scrape the Services without X’s express written permission, try to work around any technical limitations we impose, or otherwise attempt to disrupt the operation of the Services. We have broad enforcement rights: X reserves the right to take enforcement actions against you if you do violate these terms, such as, for example, removing your Content, limiting visibility, discontinuing your access to X, or taking legal action. Certain jurisdictions, including the European Union and the United Kingdom, also impose obligations on X to enforce against not only illegal content but also categories of content deemed by law to be “harmful” or “unsafe.” As a result, your Content or account may be subject to restrictions in those jurisdictions. We may also suspend or terminate your account for other reasons, such as prolonged inactivity, risk of legal exposure, or commercial inviability.  There are intellectual property licenses in these Terms: You retain ownership and rights to any of your Content you post or share, and you provide us with a broad, royalty-free license to make your Content available to the rest of the world and to let others do the same. Conversely, we provide you a license to use the software we provide as part of the Services, such as the X mobile application, solely for the purpose of enabling you to use and enjoy the benefit of the Services.  Your use of the Services is at your own risk: We provide the Services on an “AS IS” and “AS AVAILABLE” basis, and we disclaim all warranties, responsibility, and liability to you or others to the extent permitted by law. You may be exposed to offensive or harmful Content posted by other users. The Services may change from time to time, and we may limit or terminate availability of the Services or particular features to you or other users at any time.  You have remedies and redress mechanisms, but our liability is limited: You have a right to terminate this agreement at any time by deactivating your account and discontinuing use of the Services. Depending on your country of residence, we may not be liable for certain types of damages as described in the agreement, and in any event, our aggregate liability shall not exceed the greater of $100 USD or the amount you paid us, if any, in the past six months for the Services giving rise to the claim. Further, if you believe that your Content has been displayed on the Services in an unauthorized manner that constitutes copyright infringement, the reporting process is detailed in these Terms. If you are a recipient of the X Service in the United Kingdom, you may challenge enforcement actions (such as Content removal or account suspension) that breach these Terms by filing a complaint through our internal complaints process or by bringing a claim in a competent court, as provided under the Online Safety Act 2023. You can find details on how to file a complaint here . If you are a recipient of the X Service in the European Union, you may challenge certain decisions we make under the Digital Services Act (Regulation (EU) 2022/2065) via our internal process or via out-of-court dispute settlement as described here . Please also note that these Terms incorporate our Privacy Policy ( https://x.com/privacy ) as well as other terms applicable to your use of the Services and your Content. Finally, these Terms may vary depending on where you live, but in any case, you must be at least 13 years old to use X. If you live outside the European Union, EFTA States, or the United Kingdom, including if you live in the United States, the X User Agreement comprises these Terms of Service , our Privacy Policy ,  our Rules and Policies , and all incorporated policies. If you live in the European Union, EFTA States, or the United Kingdom, the X User Agreement comprises these Terms of Service , our Privacy Policy ,  our Rules and Policies , and all incorporated policies.   X Terms of Service If you live outside the European Union, EFTA States, or the United Kingdom, including if you live in the United States These Terms of Service (“Terms”) govern your relationship with us and your and other users’ access to and use of, and anything otherwise relating to, our or our corporate affilitates’ services, including our various websites, SMS, APIs, email notifications, applications, buttons, widgets, ads, commerce services, and our other covered services ( https://help.x.com/rules-and-policies/x-services-and-corporate-affiliates ) that link to these Terms (collectively, the “Services”), and any information, text, links, graphics, photos, audio, videos, or other materials or arrangements of materials uploaded, downloaded or appearing on the Services (collectively referred to as “Content”). By using the Services you agree to be bound by these Terms. These Terms are an agreement between you and X Corp., which provides X and the Services, with its registered office at 865 FM 1209, Building 2, Bastrop, TX 78602 U.S.A. The words “we,” “us,” and “our” mean X Corp. 1. Who May Use the Services 2. Privacy 3. Content on the Services 4. Using the Services 5. Disclaimers and Limitations of Liability 6. General   1. Who May Use the Services 2. Privacy 3. Content on the Services 4. Using the Services 5. Disclaimers and Limitations of Liability 6. General   1. Who May Use the Services You may use the Services only if you agree to form a binding contract with us and are not a person barred from receiving services under the laws of the applicable jurisdiction. In any case, you must be at least 13 years old to use the Services. If you are (i) accepting these Terms and/or using the Services, which constitutes acceptance of these Terms, or (ii) accepting these Terms in order to authorize the use of the Services on behalf of a minor (being any person under the age of majority in any given country), company, organization, government, or other legal entity, you represent and warrant that you are authorized to do so or, as the case may be, have the authority to bind such minor and/or entity to these Terms. The words “you” and “your” as used in these Terms shall refer either to the person accepting these Terms or such minor (as defined in (i)) and/or the entity referenced in (ii), as applicable.   2. Privacy Our Privacy Policy ( https://x.com/privacy ) describes how we handle the information you provide to us when you use the Services. You understand that through your use of the Services you consent to the collection and use (as set forth in the Privacy Policy) of this information, including the transfer of this information to the United States, Ireland, and/or other countries for storage, processing and use by us and our affiliates.   3. Content on the Services You are responsible for your use of the Services and for any Content, including anything referenced therein, you provide, create, post, or otherwise utilize, including any inputs, prompts, outputs, and/or information obtained or created through the Services. It is your responsibility to comply with all applicable laws, rules, policies, and regulations that are applicable to you or your Content, including on a third party’s or our affiliates’ services. You should only provide, create, or generate Content that you are comfortable sharing with others. Any use or reliance on any Content or materials posted via the Services or obtained by you through the Services is at your own risk. We do not endorse, support, represent or guarantee the completeness, truthfulness, accuracy, or reliability of any Content or communications posted or otherwise obtained via the Services or endorse any alleged facts or opinions expressed via the Services. You understand that by using the Services, you may be exposed to Content that might be offensive, harmful, inaccurate or otherwise inappropriate, or in some cases, postings that have been mislabeled or are otherwise deceptive. All Content, including anything referenced therein, is the sole responsibility of the person who posted, generated, inputted, or created such Content. We may not monitor or control the Content posted, generated, inputted, or created via the Services, and we cannot take responsibility for such Content. We reserve the right to remove Content that violates the User Agreement, including for example, copyright or trademark violations or other intellectual property misappropriation, impersonation, unlawful conduct, or harassment. Certain jurisdictions, including the European Union and the United Kingdom, impose obligations on us to enforce against categories of content deemed by law to be harmful or unsafe, such as bullying and humiliating content, content that promotes or encourages feeding or eating disorders, as well as content that encourages or makes available knowledge of methods of self-harm and suicide. As a result, your Content may be subject to restrictions as required by these jurisdictions. Information regarding specific policies and the process for reporting or appealing violations can be found in our Help Center ( https://help.x.com/rules-and-policies , https://help.x.com/rules-and-policies/x-report-violation#specific-violations , and https://help.x.com/managing-your-account/suspended-x-accounts ). If you believe that your Content has been copied in a way that constitutes copyright infringement, please report this by visiting our Copyright reporting form ( https://help.x.com/forms/ipi ) or contacting our designated copyright agent at: X Corp. Attn: Copyright Agent 865 FM 1209, Building 2 Bastrop, TX 78602 Reports:  https://help.x.com/forms/ipi Email: copyright@x.com Your Rights and Grant of Rights in the Content You retain your rights to any Content, including anything referenced therein, you submit, input, create, generate, post, or display on or through the Services. What’s yours is yours — you own your Content (and your incorporated audio, photos, and videos are considered part of the Content). In choosing to submit, input, create, generate, post, or display Content on or through the Services, you grant us a worldwide, non-exclusive, royalty-free license (with the right to sublicense) to use, copy, reproduce, process, adapt, modify, publish, transmit, display, upload, download, and distribute such Content, including anything referenced therein, in any and all media or distribution methods now known or later developed, for any purpose. For clarity, these rights include, for example, curating, transforming, and translating. This license authorizes us to make your Content available to the rest of the world and to let others do the same. You agree that this license includes the right for us to (i) analyze text and other information you provide and to otherwise provide, promote, and improve the Services, including, for example, for use with and training of our machine learning and artificial intelligence models, whether generative or another type; and (ii) to make Content submitted to or through the Services available to other companies, organizations or individuals, including, for example, for improving the Services and the syndication, broadcast, distribution, repost, promotion or publication of such Content on other media and services, subject to our terms and conditions for such Content use. Such additional uses by us, or other companies, organizations or individuals, is made with no compensation paid to you with respect to the Content that you submit, post, transmit or otherwise make available through the Services as the use of the Services by you is hereby agreed as being sufficient compensation for the Content and grant of rights herein. We have an evolving set of rules for how ecosystem partners can interact with your Content on the Services. These rules exist to enable an open ecosystem with your rights in mind. You understand that we may modify or adapt your Content as it is distributed, syndicated, published, or broadcast by us and our partners and/or make changes to your Content in order to adapt the Content to different media. You represent and warrant that you have, or have obtained, all rights, licenses, consents, permissions, power and/or authority necessary to grant the rights granted herein for any Content that you input, submit, create, post, generate, or display on or through the Services. You agree and warrant that such Content does not contain material subject to copyright or other proprietary rights, unless you have obtained the necessary permissions or are otherwise legally entitled to post or otherwise use the material and to grant us the license described above.   4. Using the Services Please review  our Rules and Policies , which are part of the User Agreement and outline conduct that is prohibited on the Services, as well as categories of content deemed by law to be harmful or unsafe in certain jurisdictions. You may use the Services only in compliance with these Terms and all applicable laws, rules and regulations. X takes enforcement actions when Content or user behavior is in violation of our Rules and Policies  or in relation to sensitive media. You can review X’s enforcement options and how you can appeal our enforcement decision here . The Services evolve constantly. As such, the Services may change from time to time, at our discretion. We may stop (permanently or temporarily) providing the Services or any features within the Services to you or to users generally. We also retain the right to create limits on use and storage at our sole discretion at any time. We may also remove or refuse to distribute any Content on the Services, limit distribution or visibility of any Content on the service, suspend or terminate users, and reclaim usernames without liability to you. In consideration for our granting you access to and use of the Services, you agree that we and our third-party providers and partners may place advertising on the Services or in connection with the display of Content or information from the Services whether submitted by you or others. We also reserve the right to access, read, preserve, and disclose any information as we reasonably believe is necessary to (i) satisfy any applicable law, regulation, legal process or governmental request; (ii) enforce the Terms, including investigation of potential violations hereof; (iii) detect, prevent, or otherwise address fraud, security or technical issues; (iv) respond to user support requests; or (v) protect the rights, property or safety of X, its users and the public. We do not disclose personally-identifying information to third parties except in accordance with our Privacy Policy . Certain services or features may be offered on X for which additional terms and conditions may apply in connection with your use of those services. By using or paying for any of these additional services, you agree to any additional terms applicable to those services, and those additional terms become part of our agreement with you. If any of the applicable additional terms conflict with these Terms, the additional terms will prevail while you are using those services to which they apply. If you use paid features, products, or services of the Services, you agree to the applicable Terms for Paid Services ( https://legal.x.com/purchaser-terms ). If you use developer features, products, or services of the Services, including but not limited to X for Websites ( https://developer.x.com/docs/x-for-websites ), X Cards ( https://developer.x.com/docs/x-for-websites/cards/overview/abouts-cards ), Public API ( https://developer.x.com/docs ), or Sign in with X ( https://docs.x.com/resources/fundamentals/authentication/guides/log-in-with-x ), you agree to our Developer Agreement ( https://developer.x.com/developer-terms/agreement ) and Developer Policy ( https://developer.x.com/developer-terms/policy ). If you want to reproduce, modify, create derivative works, distribute, sell, transfer, publicly display, publicly perform, transmit, or otherwise use the Services or Content on the Services, you must use the interfaces and instructions we provide, except as permitted through the Services, these Terms, or the terms provided on https://developer.x.com/developer-terms . Otherwise, all such actions are strictly prohibited. If you are a security researcher, you are required to comply with the rules of our  Vulnerability Reporting Program ( https://hackerone.com/x ). The requirements set out in the preceding paragraph may not apply to those participating in our Vulnerability Reporting Program. If you use advertising features, products, or services of the Services in any way, including but not limited to self-service and managed service offerings, you agree that your use of the advertising features, products, and services as well as your advertisements are subject to the terms of our  Master Services Agreement ( https://ads.x.com/terms ). Your Account You may need to create an account to use the Services. You are responsible for safeguarding your account, so use a strong password and limit its use to this account, and use two-factor authentication via an authenticator app or security key. We cannot and will not be liable for any loss or damage arising from your failure to comply with the above. You can control most communications from the Services. We may need to provide you with certain communications, such as service announcements and administrative messages. These communications are considered part of the Services and your account, and you may not be able to opt-out from receiving them. If you added your phone number to your account and you later change or deactivate that phone number, you must update your account information to help prevent us from communicating with anyone who acquires your old number. Your License to Use the Services We give you a personal, worldwide, royalty-free, non-assignable and non-exclusive license to use the software provided to you as part of the Services. This license cannot be assigned, gifted, sold, shared or transferred in any other manner to any other individual or entity without X’s express written consent. This license has the sole purpose of enabling you to use and enjoy the benefit of the Services as provided on X, in the manner permitted by these Terms. The Services are protected by copyright, trademark, and other laws of both the United States and other countries. Nothing in the Terms gives you a right to use the X name or Twitter name or any of the X or Twitter trademarks, logos, domain names, other distinctive brand features, and other proprietary rights, and you may not do so without our express written consent. All right, title, and interest in and to the Services (excluding Content provided by users) are and will remain our and our licensors' exclusive property. Any feedback, comments, or suggestions you may provide regarding X, or the Services is entirely voluntary and we will be free to use such feedback, comments or suggestions as we see fit and without any obligation to you. Misuse of the Services You also agree not to misuse the Services, for example, by interfering with them or accessing them using a method other than the interface and the instructions that we provide. You agree that you will not work around any technical limitations in the software provided to you as part of the Services, or reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits. You may not do any of the following while accessing or using the Services: (i) access, tamper with, or use non-public areas of the Services, our computer systems, or the technical delivery systems of our providers; (ii) probe, scan, or test the vulnerability of any system or network or breach or circumvent any security or authentication measures; (iii) access or search or attempt to access or search the Services by any means (automated or otherwise) other than through our currently available, published interfaces that are provided by us (and only pursuant to the applicable terms and conditions), unless you have been specifically allowed to do so in a separate agreement with us (NOTE: crawling or scraping the Services in any form, for any purpose without our prior written consent is expressly prohibited); (iv) attempt to circumvent, manipulate, or disable systems and Services, including through "jailbreaking", “prompt engineering or injection", or other methods intended to override or manipulate safety, security or other platform controls; (v) forge any TCP/IP packet header or any part of the header information in any email or posting; (vi) in any way use the Services to send altered, deceptive or false source-identifying information; (vii) engage in any conduct that violates our Platform Manipulation and Spam Policy or any other Rules and Policies , including our Misuse of Reporting Features Policy ; or (viii) interfere with, or disrupt, (or attempt to do so), the access of any user, host or network, including, without limitation, sending a virus, overloading, flooding, spamming, mail-bombing the Services, or by scripting the creation of Content in such a manner as to interfere with or create an undue burden on the Services. It is also a violation of these Terms to facilitate or assist others in violating these Terms, including by distributing products or services that enable or encourage violation of these Terms. Ending These Terms You may end your legal agreement with us at any time by deactivating your accounts and discontinuing your use of the Services. See https://help.x.com/managing-your-account/how-to-deactivate-x-account  for instructions on how to deactivate your account and the Privacy Policy for more information on what happens to your information. We may suspend or terminate your account or cease providing you with all or part of the Services at any time if we reasonably believe: (i) you have violated these Terms or our Rules and Policies , (ii) you create risk or possible legal exposure for us; (iii) your account should be removed due to unlawful conduct; (iv) your account should be removed due to prolonged inactivity; or (v) our provision of the Services to you is no longer commercially viable. We will make reasonable efforts to notify you by the email address associated with your account or the next time you attempt to access your account, depending on the circumstances. To the extent permitted by law, we may also terminate your account or cease providing you with all or part of the Services for any other reason or no reason at our convenience. In all such cases, the Terms shall terminate, including, without limitation, your license to use the Services, except that the following sections shall continue to apply: 2, 3, 5, 6, and the misuse provisions of Section 4 (“Misuse of the Services”). If you believe your account was terminated in error you can file an appeal following the steps found in our Help Center ( https://help.x.com/forms/account-access/appeals ). For the avoidance of doubt, these Terms survive the deactivation or termination of your account.   5. Disclaimers and Limitations of Liability The Services are Available "AS-IS" Your access to and use of the Services or any Content are at your own risk. You understand and agree that the Services are provided to you on an “AS IS” and “AS AVAILABLE” basis. The “X Entities” refers to X Corp., its parents, affiliates, related companies, officers, directors, employees, agents, representatives, partners, and licensors. Without limiting the foregoing, to the maximum extent permitted under applicable law, THE X ENTITIES DISCLAIM ALL WARRANTIES AND CONDITIONS, WHETHER EXPRESS OR IMPLIED, OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. The X Entities make no warranty or representation and disclaim all responsibility and liability for: (i) the completeness, accuracy, availability, timeliness, security or reliability of the Services or any Content; (ii) any harm to your computer system, loss of data, or other harm that results from your access to or use of the Services or any Content; (iii) the deletion of, or the failure to store or to transmit, any Content and other communications maintained by the Services; and (iv) whether the Services will meet your requirements or be available on an uninterrupted, secure, or error-free basis. No advice or information, whether oral or written, obtained from the X Entities or through the Services, will create any warranty or representation not expressly made herein. Limitation of Liability NOTWITHSTANDING ANY OTHER TERMS TO THE CONTRARY, TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE X ENTITIES SHALL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR PUNITIVE DAMAGES, RELIANCE OR ANY LOSS OF PROFITS OR REVENUES, WHETHER INCURRED DIRECTLY OR INDIRECTLY, OR ANY LOSS OF DATA, USE, GOODWILL, OR OTHER INTANGIBLE LOSSES, RESULTING FROM (i) YOUR ACCESS TO OR USE OF OR INABILITY TO ACCESS OR USE THE SERVICES; (ii) ANY CONDUCT OR CONTENT OF ANY USER OR THIRD PARTY ON THE SERVICES, INCLUDING WITHOUT LIMITATION, ANY DEFAMATORY, OFFENSIVE OR ILLEGAL CONDUCT OF OTHER USERS OR THIRD PARTIES; (iii) ANY CONTENT OBTAINED FROM THE SERVICES; OR (iv) UNAUTHORIZED ACCESS, USE OR ALTERATION OF YOUR TRANSMISSIONS OR CONTENT. IN NO EVENT SHALL THE AGGREGATE LIABILITY OF THE X ENTITIES EXCEED THE GREATER OF ONE HUNDRED U.S. DOLLARS (U.S. $100.00) OR THE AMOUNT YOU PAID US, IF ANY, IN THE PAST SIX MONTHS FOR THE SERVICES GIVING RISE TO THE CLAIM. THE LIMITATIONS OF THIS SUBSECTION SHALL APPLY TO ANY THEORY OF LIABILITY, WHETHER BASED ON WARRANTY, CONTRACT, STATUTE, TORT (INCLUDING NEGLIGENCE) OR OTHERWISE, AND WHETHER OR NOT THE X ENTITIES HAVE BEEN INFORMED OF THE POSSIBILITY OF ANY SUCH DAMAGE, AND EVEN IF A REMEDY SET FORTH HEREIN IS FOUND TO HAVE FAILED OF ITS ESSENTIAL PURPOSE. IN THE EVENT ANY PORTION OF THESE LIMITATION OF LIABILITY PROVISIONS IS DEEMED UNENFORCEABLE AS A MATTER OF LAW, THAT LIMITATION SHALL INSTEAD BE THE GREATEST LIMITATION PERMITTED BY LAW. BY AGREEING TO THESE TERMS OR USING THE SERVICES, YOU AGREE, TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THAT THE X ENTITIES ARE NOT RESPONSIBLE OR LIABLE TO YOU OR OTHERS FOR THE ACTIONS OR CONDUCT OF USERS AND THIRD PARTIES ON THE SERVICES, OR FOR ANY CONTENT USERS AND THIRD PARTIES SHARE ON THE SERVICES, INCLUDING OFFENSIVE, DEFAMATORY, ILLEGAL OR OTHER OBJECTIONABLE CONTENT. Liquidated Damages Protecting our users’ data and our system resources is important to us. You further agree that, to the extent permitted by applicable law, if you violate the Terms, or you induce or knowingly facilitate others to do so, in addition to all other legal remedies available to us, you will be jointly and severally liable to us for liquidated damages as follows for requesting, viewing, or accessing more than 1,000,000 posts (including reply posts, video posts, image posts, and any other posts) in any 24-hour period - $15,000 USD per 1,000,000 posts. You agree that these amounts are (i) a reasonable estimate of our damages; (ii) not a penalty; and (iii) not otherwise limiting of our ability to recover from you or others under any legal or equitable theory or claim, including but not limited to statutory damages and/or equitable relief. You further agree that repeated violations of these Terms will irreparably harm and entitle us to injunctive and/or other equitable relief, in addition to monetary damages.   6. General We may revise these Terms from time to time. The changes will not be retroactive, and the most current version of the Terms, which will always be at https://x.com/tos , will govern our relationship with you. We will try to notify you of material revisions, for example via a service notification or an email to the email associated with your account. By continuing to access or use the Services after those revisions become effective, you agree to be bound by the revised Terms.  The laws of the State of Texas, excluding its choice of law provisions, will govern these Terms and any dispute that arises between you and us, notwithstanding any other agreement between you and us to the contrary. Notwithstanding any other agreement to the contrary, all disputes related to these Terms, the Services, or any patents — including without limitation disputes related to or arising from any Content (whether your or others’ Content), or your or others’ use of the Services or the complete or partial termination thereof — shall be brought and must proceed exclusively in the federal or state courts located in Tarrant County, Texas, United States, and you consent to personal jurisdiction in those forums and waive any objection as to inconvenient forum. For the avoidance of doubt, the choice of law and forum selection provisions of this paragraph shall apply regardless of whether a dispute or any claims contained therein are based in contract, tort, statute, common law, or otherwise, and the choice of law and forum selection provisions of this paragraph shall apply to pending and future disputes and shall apply to your dispute regardless of when the conduct relating to the dispute arose or occurred. The choice of law and forum selection provisions of this paragraph shall also extend to disputes involving our U.S. corporate affiliates, who are intended third-party beneficiaries of this paragraph. Without prejudice to the foregoing, you agree that, in its sole discretion, X may bring any claim, cause of action, or dispute we have against you in any competent court in the country in which you reside that has jurisdiction and venue over the claim. To the extent permitted by law, you also waive the right to participate as a plaintiff or class member in any purported class action, collective action or representative action proceeding against us or our corporate affiliates. If you are a federal, state, or local government entity in the United States using the Services in your official capacity and legally unable to accept the controlling law, jurisdiction or venue clauses above, then those clauses do not apply to you. For such U.S. federal government entities, these Terms and any action related thereto will be governed by the laws of the United States of America (without reference to conflict of laws) and, in the absence of federal law and to the extent permitted under federal law, the laws of the State of Texas (excluding choice of law). You and X agree that you must initiate any proceeding or action asserting a federal claim within one (1) year of the date of the occurrence of the event or facts giving rise to a dispute that is arising out of or related to these Terms or the Services. You and X agree that you must initiate any proceeding or action asserting a state law claim within two (2) years of the date of the occurrence of the event or facts giving rise to a dispute that is arising out of or related to these Terms or the Services. Otherwise, to the extent permitted by applicable law, you forever waive the right to pursue any claim or cause of action, of any kind or character, based on such events or facts, and such claims or causes of action are permanently barred.  In the event that any provision of these Terms is held to be invalid or unenforceable, then that provision will be limited or eliminated to the minimum extent necessary, and the remaining provisions of these Terms will remain in full force and effect. Our failure to enforce any right or provision of these Terms will not be deemed a waiver of such right or provision. The X User Agreement is written in English but is made available in multiple languages through translations. X strives to make the translations as accurate as possible to the original English version. However, in case of any discrepancies or inconsistencies, the English language version of the X User Agreement shall take precedence. You acknowledge that English shall be the language of reference for interpreting and constructing the terms of the X User Agreement. If you have any questions about these Terms, please contact us . Effective:  January 15, 2026 Archive of Previous Terms   X Terms of Service If you live in the European Union, EFTA States, or the United Kingdom These Terms of Service (“Terms”) govern your relationship with us and your and other users’ access to and use of, and anything otherwise relating to, our or our corporate affiliates’ services, including our various websites, SMS, APIs, email notifications, applications, buttons, widgets, ads, commerce services, and our other covered services ( https://help.x.com/rules-and-policies/x-services-and-corporate-affiliates ) that link to these Terms (collectively, the “Services”), and any information, text, links, graphics, photos, audio, videos, or other materials or arrangements of materials uploaded, downloaded or appearing on the Services (collectively referred to as “Content”). By using the Services you agree to be bound by these Terms. These Terms are an agreement between you and X Internet Unlimited Company (Co. number 503351, VAT number IE9803175Q), an Irish company, which provides X and the Services, with its registered office at One Cumberland Place, Fenian Street Dublin 2, D02 AX07 Ireland. The words “we,” “us,” and “our,” mean X Internet Unlimited Company. 1. Who May Use the Services 2. Privacy 3. Content on the Services 4. Using the Services 5. Limitations of Liability 6. General   1. Who May Use the Services 2. Privacy 3. Content on the Services 4. Using the Services 5. Limitations of Liability 6. General   1. Who May Use the Services You may use the Services only if you agree to form a binding contract with us and are not a person barred from receiving services under the laws of the applicable jurisdiction. In any case, you must be at least 13 years old to use the Services. If you are (i) accepting these Terms and/or using the Services, which constitutes acceptance of these Terms, or (ii) accepting these Terms in order to authorize the use of the Services on behalf of a minor (being any person under the age of majority in any given country), company, organization, government, or other legal entity, you represent and warrant that you are authorized to do so or, as the case may be, have the authority to bind such minor and/or entity to these Terms. The words “you” and “your” as used in these Terms shall refer either to the person accepting these Terms or such minor (as defined in (i)) and/or the entity referenced in (ii), as applicable.   2. Privacy Our Privacy Policy ( https://x.com/privacy ) describes how we handle the information you provide to us when you use the Services. You understand that through your use of the Services you consent to the collection and use (as set forth in the Privacy Policy) of this information, including the transfer of this information to the United States, Ireland, and/or other countries for storage, processing and use by us and our affiliates.   3. Content on the Services You are responsible for your use of the Services and for any Content, including anything referenced therein, you provide, create, post, or otherwise utilize, including any inputs, prompts, outputs, and/or information obtained or created through the Services. It is your responsibility to comply with all applicable laws, rules, policies, and regulations that are applicable to you or your Content, including on a third party’s or affiliates’ services. You should only provide, create, or generate Content that you are comfortable sharing with others. Any use or reliance on any Content or materials posted via the Services or obtained by you through the Services is at your own risk. We do not endorse, support, represent or guarantee the completeness, truthfulness, accuracy, or reliability of any Content or communications posted or otherwise obtained via the Services or endorse any alleged facts or opinions expressed via the Services. You understand that by using the Services, you may be exposed to Content that might be offensive, harmful, inaccurate or otherwise inappropriate, or in some cases, postings that have been mislabeled or are otherwise deceptive. Content recommendations are made based on a combination of factors: how you engage with the Services, the topics you have indicated that you are interested in, and likes of other users with your similar interests. Adjustments can be made in your settings, and additional information can be found in our Help Center ( https://help.x.com/resources/recommender-systems ). All Content, including anything referenced therein, is the sole responsibility of the person who posted, generate, inputted, or created such Content. We may not monitor or control the Content posted, generated, inputted, or created via the Services, and we cannot take responsibility for such Content. We reserve the right to remove Content that violates the User Agreement, including for example, copyright or trademark violations or other intellectual property misappropriation, impersonation, unlawful conduct, or harassment. Certain jurisdictions, including the European Union and the United Kingdom, impose obligations on us to enforce against categories of content deemed by law to be harmful or unsafe, such as bullying and humiliating content, content that promotes or encourages feeding or eating disorders, as well as content that encourages or makes available knowledge of methods of self-harm and suicide. As a result, your Content may be subject to restrictions as required by these jurisdictions. Information regarding specific policies and the process for reporting or appealing violations can be found in our Help Center ( https://help.x.com/rules-and-policies ,  https://help.x.com/rules-and-policies/x-report-violation , and https://help.x.com/managing-your-account/suspended-x-accounts ). If you believe that your Content has been copied in a way that constitutes copyright infringement, please report this by visiting our Copyright reporting form ( https://help.x.com/forms/ipi ) or contacting our designated copyright agent at: X Corp. Attn: Copyright Agent 865 FM 1209, Building 2 Bastrop, TX 78602 Reports:  https://help.x.com/forms/ipi Email: copyright@x.com Your Rights and Grant of Rights in the Content You retain your rights to any Content, including anything referenced therein, you submit, input, create, generate, post, or display on or through the Services. What’s yours is yours — you own your Content (and your incorporated audio, photos, and videos are considered part of the Content). In choosing to submit, input, create, generate, post, or display Content on or through the Services, you grant us a worldwide, non-exclusive, royalty-free license (with the right to sublicense) to use, copy, reproduce, process, adapt, modify, publish, transmit, display, upload, download, and distribute such Content, including anything referenced therein, in any and all media or distribution methods now known or later developed, for any purpose. For clarity, these rights include, for example, curating, transforming, and translating. This license authorizes us to make your Content available to the rest of the world and to let others do the same. However, if you have chosen via our features to limit the distribution of your Content to a restricted community, we will respect that choice. You also agree that this license includes the right to analyze text and other information you provide with the view to improve the Services. You agree that this license includes the right for us to (i) provide, promote, and improve the Services, including, for example, for use with and training of our machine learning and artificial intelligence models, whether generative or another type; and (ii) to make Content submitted to or through the Services available to other companies, organizations or individuals, including, for example, for improving the Services and the syndication, broadcast, distribution, repost, promotion or publication of such Content on other media and services, subject to our terms and conditions for such Content use. Such additional uses by us, or other companies, organizations or individuals, is made with no compensation paid to you with respect to the Content that you submit, post, transmit or otherwise make available through the Services as the use of the Services by you is hereby agreed as being sufficient compensation for the Content and grant of rights herein. We have an evolving set of rules for how ecosystem partners can interact with your Content on the Services. These rules exist to enable an open ecosystem with your rights in mind. You understand that we may modify or adapt your Content as it is distributed, syndicated, published, or broadcast by us and our partners and/or make changes to your Content in order to adapt the Content to different media. You represent and warrant that you have, or have obtained, all rights, licenses, consents, permissions, power and/or authority necessary to grant the rights granted herein for any Content that you input, submit, create, post, generate, or display on or through the Services. You agree and warrant that such Content does not contain material subject to copyright or other proprietary rights, unless you have obtained the necessary permissions or are otherwise legally entitled to post or otherwise use the material and to grant us the license described above.   4. Using the Services Please review  our Rules and Policies , which are part of the User Agreement and outline conduct that is prohibited on the Services, as well as categories of content deemed by law to be harmful or unsafe in certain jurisdictions. You may use the Services only in compliance with these Terms and all applicable laws, rules and regulations. X takes enforcement actions when Content or user behavior is in violation of our Rules and Policies  or in relation to sensitive media. You can review X’s enforcement options and how you can appeal our enforcement decision here . The Services evolve constantly. As such, the Services may change from time to time, at our discretion. We may stop (permanently or temporarily) providing the Services or any features within the Services to you or to users generally. We also retain the right to create limits on use and storage at our sole discretion at any time. We may also remove or refuse to distribute any Content on the Services, limit distribution or visibility of any Content on the service, suspend or terminate users, and reclaim usernames if it is appropriate, including for the following reasons: (i) protecting the Services or our users; (ii) compliance with applicable laws or orders from competent authorities; (iii) breach of these Terms or our Rules and Policies or third parties' intellectual property or other rights; (iv) if you or your Content exposes us, other users or any third party to legal or regulatory risk; and/or (v) your prolonged inactivity.  In consideration for our granting you access to and use of the Services, you agree that we and our third-party providers and partners may place advertising on the Services or in connection with the display of Content or information from the Services whether submitted by you or others. We also reserve the right to access, read, preserve, and disclose any information as we reasonably believe is necessary to (i) satisfy any applicable law, regulation, legal process or governmental request; (ii) enforce the Terms, including investigation of potential violations hereof; (iii) detect, prevent, or otherwise address fraud, security or technical issues; (iv) respond to user support requests; or (v) protect the rights, property or safety of X, its users and the public. We do
2026-01-13T08:47:43
https://dev.to/dotnet-rocks/energy-in-2023-geek-out#main-content
Energy in 2023 Geek Out - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close .NET Rocks! Follow Energy in 2023 Geek Out Jan 4 '24 play Let's start 2024 with a conversation about energy! Richard chats with Carl about ongoing developments in power generation around the world. Wind technology is maturing but also hitting size limits. Solar is the fastest-growing power generation source on the planet now - and there are recycling options! There are exciting new developments in power storage, some applied hydrogen power projects, and new concepts in geothermal and small modular nuclear. Richard wraps up with thoughts on COP 28 and our progress towards safer, stable power for everyone. Happy New Year! Episode source Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Your browser does not support the audio element. 1x initializing... × 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://docs.sui.io/guides/developer/first-app/write-package
Hello, World! | Sui Documentation Skip to main content Sui Documentation Guides Concepts Standards References Search Overview Getting Started Install Sui Install from Source Install from Binaries Configure a Sui Client Create a Sui Address Get SUI from Faucet Hello, World! Connect a Frontend Next Steps Sui Essentials Objects Packages Currencies and Tokens NFTs Cryptography Nautilus Advanced App Examples Dev Cheat Sheet Operator Guides SuiPlay0X1 🗳️ Book Office Hours → 💬 Join Discord → Getting Started Hello, World! On this page Hello, World! You'll build a "Hello, World!" program to learn the fundamentals of programming on Sui. You create programs on Sui by writing and deploying smart contracts to the network. The most basic unit of storage on Sui is an object . Other blockchains typically structure storage using key-value stores. Sui centers storage around objects with unique ID addresses on-chain. Every Sui smart contract is an object that manipulates other objects. Objects can be immutable or mutable: Immutable objects cannot be transferred, changed, or deleted. No one owns them and anyone can access them publicly. Mutable objects can be transferred, changed, and deleted. A Sui address can own them, or they can be shared for public access. Every object's unique ID and version number references it on-chain. Every transaction on the network takes objects as input, then reads, writes, and mutates the inputs to produce new or altered objects as output. Every object knows the hash of the transaction that produced it. When an object is modified by a transaction, the transaction's output writes the object's mutated contents to the same object ID but with a new version number. Sui has limits on the maximum transaction size (128KB) and number of objects (2,048) used in a transaction. For more information on limits, see Building Against Limits in The Move Book. What is Move? ​ Move is the programming language Sui uses to create smart contracts. It is platform agnostic and enables common libraries, tooling, and developer communities across blockchains with vastly different data and execution models. There are three ways to use Move in the context of Sui: Move packages, Move modules, and Move objects. A Sui Move package is also referred to as a Move smart contract. It is a set of Move bytecode published to the Sui network. It is immutable and cannot be changed or removed, however you can upgrade it. Upgrading creates a new version of the package object on-chain, leaving the original intact. All prior versions of a package still exist on-chain. Once you publish it, other packages can import and use the modules it provides. Anyone can view a package's contents and use a Sui Explorer to see how its logic manipulates other objects. Every Move package on Sui includes one or more Sui Move modules that define the package's interaction with on-chain objects. A module's name is always unique within the package that contains it. A Sui Move module governs a Sui Move object , which is typed data from a Sui Move package. Each Move object value is a struct with fields that can contain primitive types, such as integers and addresses, other objects, and non-object structs. Clone "Hello, World!" ​ Prerequisites Install the latest version of Sui . Configure the Sui client . Create a Sui address . Get SUI Testnet tokens . Download and install an IDE. The following are recommended, as they offer Move extensions: VSCode , corresponding Move extension Emacs , corresponding Move extension Vim , corresponding Move extension Zed , corresponding Move extension Alternatively, you can use the Move web IDE , which does not require a download. It does not support all functions necessary for this guide, however. Download and install Git . To demonstrate creating objects, packages, and how to build your first Sui application, start by cloning the "Hello, World!" example: $ git clone \ https://github.com/MystenLabs/sui-stack-hello-world.git $ cd sui-stack-hello-world/move/hello-world In this project, there are two important files that define the package's logic, information, and its dependencies: move/hello-world/sources/greeting.move : Defines the package's logic. In this example, it defines a basic shared greeting object and public functions to interact with it. move/hello-world/Move.toml : The package's configuration file that defines the package name, dependencies, and addresses. Click to open move/hello-world/Move.toml File not found in manifest: move/hello-world/Move.toml . You probably need to run `pnpm prebuild` and restart the site. View the smart contract code ​ Open the greeting.move file in your IDE of choice. You can see the following Move code: File not found in manifest: move/hello-world/sources/greeting.move . You probably need to run `pnpm prebuild` and restart the site. Code explanation ​ First, this code defines a module called greeting : module hello_world :: greeting { use std :: string ; ... } Then, it defines a public struct called Greeting that contains a unique object ID and text. A struct is a type of resource : File not found in manifest: move/hello-world/sources/greeting.move . You probably need to run `pnpm prebuild` and restart the site. Then, it defines the function new that makes an API call to the Greeting struct and initializes it with the text "Hello world!" , storing it in a new shared object: File not found in manifest: move/hello-world/sources/greeting.move . You probably need to run `pnpm prebuild` and restart the site. Lastly, the package defines a function called update_text that can be called to update the text stored in Greeting : File not found in manifest: move/hello-world/sources/greeting.move . You probably need to run `pnpm prebuild` and restart the site. Resource safety ​ A unique aspect of programming applications on Sui is the resource safety enforced by the Move Bytecode Verifier. Move packages must satisfy the following resource safety parameters: All resources must be either moved into global storage or destroyed by the end of a transaction. Resources cannot be copied. In the "Hello, World!" example, the struct Greeting is a resource type. To satisfy the requirement that all resources must be moved or destroyed by the end of a transaction, Greeting is assigned to new_greeting , which the call to transfer::share_object(new_greeting) then moves into global storage. To mutate Greeting , the function update_text takes the input (&mut Greeting) rather than the resource itself. This function satisfies resource safety as the function does not copy the resource and mutates it via a reference. Learn more about the Move Bytecode Verifier. How does this differ from EVM applications? ​ The Ethereum Virtual Machine adopts a gas-based resource safety strategy. Every opcode on an EVM chain has an associated gas price that makes transactions costly, preventing the network from running a single transaction indefinitely. Build the Move package ​ Before you can publish a Move package to the network, you must first build it. Building your package is necessary because the .move source file is a human-readable piece of code, while the network can only understand bytecode. To build your "Hello, World!" package, first confirm your working directory is ~/sui-stack-hello-world/move/hello-world , then run the following command: $ sui move build The build process fetches and compiles the dependencies defined in the Move.toml file. The Move compiler checks your .move code for type errors, syntax errors, and enforces resource safety , then translates your .move code into bytecode that Sui can execute. info You must build your package before you can publish it, but also before you test it. You cannot run tests ( sui move test ) on your code until it has been built. Publish the Move package ​ Now that your package has been built, you need to publish it. After you publish it, other packages and users can use the package's modules and functions by making calls to the package ID. First, confirm your client is configured to use Testnet as the active environment: $ sui client active-env This should return testnet . If it does not return testnet , follow the client configuration instructions before continuing. Then, check your balance of SUI tokens to confirm you have enough to publish to Testnet: $ sui client balance You should have a balance of SUI tokens: ╭────────────────────────────────────────────╮ │ Balance of coins owned by this address │ ├────────────────────────────────────────────┤ │ ╭────────────────────────────────────────╮ │ │ │ coin balance (raw) balance │ │ │ ├────────────────────────────────────────┤ │ │ │ Sui 56804696124 0.50 SUI │ │ │ ╰────────────────────────────────────────╯ │ ╰────────────────────────────────────────────╯ If you do not have a balance, follow the SUI faucet instructions . Now, publish the package to Testnet with the command: $ sui client publish Click to open Output Transaction Digest: 8R39iKKLGPDG3QkW2SrRW3QX71csRP2BLhK9H7oz9SwW ╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │ Transaction Data │ ├──────────────────────────────────────────────────────────────────────────────────────────────────────────────┤ │ Sender: 0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803 │ │ Gas Owner: 0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803 │ │ Gas Budget: 9843200 MIST │ │ Gas Price: 1000 MIST │ │ Gas Payment: │ │ ┌── │ │ │ ID: 0x816e5ec6ff457f18232498b57af8a0e1e219307a3a43fb5df5a4c2198296510c │ │ │ Version: 591332925 │ │ │ Digest: FLC4NXntT7WiHcqCkpDuBUq14DFTfi3EFeUiJcSNHdPu │ │ └── │ │ │ │ Transaction Kind: Programmable │ │ ╭──────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │ │ │ Input Objects │ │ │ ├──────────────────────────────────────────────────────────────────────────────────────────────────────────┤ │ │ │ 0 Pure Arg: Type: address, Value: "0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803" │ │ │ ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────╯ │ │ ╭─────────────────────────────────────────────────────────────────────────╮ │ │ │ Commands │ │ │ ├─────────────────────────────────────────────────────────────────────────┤ │ │ │ 0 Publish: │ │ │ │ ┌ │ │ │ │ │ Dependencies: │ │ │ │ │ 0x0000000000000000000000000000000000000000000000000000000000000001 │ │ │ │ │ 0x0000000000000000000000000000000000000000000000000000000000000002 │ │ │ │ └ │ │ │ │ │ │ │ │ 1 TransferObjects: │ │ │ │ ┌ │ │ │ │ │ Arguments: │ │ │ │ │ Result 0 │ │ │ │ │ Address: Input 0 │ │ │ │ └ │ │ │ ╰─────────────────────────────────────────────────────────────────────────╯ │ │ │ │ Signatures: │ │ mUxqMIofPq+yIzPxxYM+2mSIPTFneDxhWGGxJ7tM02hnRBRy5/FosnnWKxd4OSAjmaw6FNylwVdqUoUlJSxWCQ== │ │ │ ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────╯ ╭───────────────────────────────────────────────────────────────────────────────────────────────────╮ │ Transaction Effects │ ├───────────────────────────────────────────────────────────────────────────────────────────────────┤ │ Digest: 8R39iKKLGPDG3QkW2SrRW3QX71csRP2BLhK9H7oz9SwW │ │ Status: Success │ │ Executed Epoch: 875 │ │ │ │ Created Objects: │ │ ┌── │ │ │ ID: 0x136e41f505888066f189fb823d710ec96ab4fd75144b3d8008b91d58de85fd12 │ │ │ Owner: Account Address ( 0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803 ) │ │ │ Version: 591332926 │ │ │ Digest: BGfc1tihsYPTLLozrj58HmRkDeQ1DWZfqeaR4SZDb1cX │ │ └── │ │ ┌── │ │ │ ID: 0xa7ed855d30500c485a94c0849f70b508d6b6adf6b0767ab93cc0756c075ecbb1 │ │ │ Owner: Immutable │ │ │ Version: 1 │ │ │ Digest: EtGAG9RHHCsguX4iuX1cbRDvW4QAkJXgDCMJjiufHtxB │ │ └── │ │ Mutated Objects: │ │ ┌── │ │ │ ID: 0x816e5ec6ff457f18232498b57af8a0e1e219307a3a43fb5df5a4c2198296510c │ │ │ Owner: Account Address ( 0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803 ) │ │ │ Version: 591332926 │ │ │ Digest: CiU5KNZALUmuckc2YUFmJq5YXgbB8oG3rs4cnh2rdDXd │ │ └── │ │ Gas Object: │ │ ┌── │ │ │ ID: 0x816e5ec6ff457f18232498b57af8a0e1e219307a3a43fb5df5a4c2198296510c │ │ │ Owner: Account Address ( 0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803 ) │ │ │ Version: 591332926 │ │ │ Digest: CiU5KNZALUmuckc2YUFmJq5YXgbB8oG3rs4cnh2rdDXd │ │ └── │ │ Gas Cost Summary: │ │ Storage Cost: 7843200 MIST │ │ Computation Cost: 1000000 MIST │ │ Storage Rebate: 978120 MIST │ │ Non-refundable Storage Fee: 9880 MIST │ │ │ │ Transaction Dependencies: │ │ 2dkJtqsoQcyCZJvjZnskNVPQeynwVtwCcA9goAru6tTi │ │ 7PStztXyh92keJmrDD1aghHaKVdgCoVkVx4ZmLUfmQeK │ │ Dd9pn1zFcSJjinxQewFd2gQdR4XKsHxFioD5MYnwLZQz │ ╰───────────────────────────────────────────────────────────────────────────────────────────────────╯ ╭─────────────────────────────╮ │ No transaction block events │ ╰─────────────────────────────╯ ╭──────────────────────────────────────────────────────────────────────────────────────────────────╮ │ Object Changes │ ├──────────────────────────────────────────────────────────────────────────────────────────────────┤ │ Created Objects: │ │ ┌── │ │ │ ObjectID: 0x136e41f505888066f189fb823d710ec96ab4fd75144b3d8008b91d58de85fd12 │ │ │ Sender: 0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803 │ │ │ Owner: Account Address ( 0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803 ) │ │ │ ObjectType: 0x2::package::UpgradeCap │ │ │ Version: 591332926 │ │ │ Digest: BGfc1tihsYPTLLozrj58HmRkDeQ1DWZfqeaR4SZDb1cX │ │ └── │ │ Mutated Objects: │ │ ┌── │ │ │ ObjectID: 0x816e5ec6ff457f18232498b57af8a0e1e219307a3a43fb5df5a4c2198296510c │ │ │ Sender: 0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803 │ │ │ Owner: Account Address ( 0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803 ) │ │ │ ObjectType: 0x2::coin::Coin<0x2::sui::SUI> │ │ │ Version: 591332926 │ │ │ Digest: CiU5KNZALUmuckc2YUFmJq5YXgbB8oG3rs4cnh2rdDXd │ │ └── │ │ Published Objects: │ │ ┌── │ │ │ PackageID: 0xa7ed855d30500c485a94c0849f70b508d6b6adf6b0767ab93cc0756c075ecbb1 │ │ │ Version: 1 │ │ │ Digest: EtGAG9RHHCsguX4iuX1cbRDvW4QAkJXgDCMJjiufHtxB │ │ │ Modules: greeting │ │ └── │ ╰──────────────────────────────────────────────────────────────────────────────────────────────────╯ ╭───────────────────────────────────────────────────────────────────────────────────────────────────╮ │ Balance Changes │ ├───────────────────────────────────────────────────────────────────────────────────────────────────┤ │ ┌── │ │ │ Owner: Account Address ( 0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803 ) │ │ │ CoinType: 0x2::sui::SUI │ │ │ Amount: -7865080 │ │ └── │ ╰───────────────────────────────────────────────────────────────────────────────────────────────────╯ When you publish a Move package to the network, the network uploads and stores the bytecode as a Move package with a unique package ID and version number. The network consumes SUI tokens as gas and processes the transaction on-chain. After successfully executing, the output provides details about the transaction used to publish the package, including the gas cost, transaction digest, dependencies, owner, and sender. For this guide, the most important section is Published Objects , which includes the package's ID, version, and its modules: │ Published Objects: │ │ ┌── │ │ │ PackageID: 0xa7ed855d30500c485a94c0849f70b508d6b6adf6b0767ab93cc0756c075ecbb1 │ │ │ Version: 1 │ │ │ Digest: EtGAG9RHHCsguX4iuX1cbRDvW4QAkJXgDCMJjiufHtxB │ │ │ Modules: greeting │ │ └── Both the package ID and module are required to interact with the package from the command line. Take note of both values for future use in the Connecting a Frontend guide. Interact with the Move package ​ Interact with the newly published package by first making a call to the new function that creates a new Greeting object and initialize it with the text "Hello world!" : $ sui client call --package <PACKAGE_ID> --module greeting --function new Replace <PACKAGE_ID> with the package ID the output of the sui client publish command returned. You must include the --package , --module , and --function flags. The output of this call includes a newly created object: ╭───────────────────────────────────────────────────────────────────────────────────────────────────╮ │ Transaction Effects │ ├───────────────────────────────────────────────────────────────────────────────────────────────────┤ │ Digest: 6xB9Foy5vyhXG99xppaCxrNvpPTV3UZsH39zqUKNoGsD │ │ Status: Success │ │ Executed Epoch: 875 │ │ │ │ Created Objects: │ │ ┌── │ │ │ ID: 0x2834aa3d2ed1b5060f4e5d400092544fa9c95430fd894b139b7dfb0312501594 │ │ │ Owner: Shared( 591332927 ) │ │ │ Version: 591332927 │ │ │ Digest: 8xJRijHHp3gNXLExTG98KX5jYAQDVKqsBD8ATFMJXCbA │ │ └── ... To verify that the object contains the text "Hello world!" , make a call to query the object's information: $ sui client object <OBJECT_ID> Replace <OBJECT_ID> with the value under Created Objects, ID: . You should see the object's details, including a value of text: Hello world! : ╭───────────────┬──────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │ objectId │ 0x2834aa3d2ed1b5060f4e5d400092544fa9c95430fd894b139b7dfb0312501594 │ │ version │ 591332927 │ │ digest │ 8xJRijHHp3gNXLExTG98KX5jYAQDVKqsBD8ATFMJXCbA │ │ objType │ 0xa7ed855d30500c485a94c0849f70b508d6b6adf6b0767ab93cc0756c075ecbb1::greeting::Greeting │ │ owner │ ╭────────┬──────────────────────────────────────────╮ │ │ │ │ Shared │ ╭────────────────────────┬─────────────╮ │ │ │ │ │ │ │ initial_shared_version │ 591332927 │ │ │ │ │ │ │ ╰────────────────────────┴─────────────╯ │ │ │ │ ╰────────┴──────────────────────────────────────────╯ │ │ prevTx │ 6xB9Foy5vyhXG99xppaCxrNvpPTV3UZsH39zqUKNoGsD │ │ storageRebate │ 1413600 │ │ content │ ╭───────────────────┬──────────────────────────────────────────────────────────────────────────────────────────╮ │ │ │ │ dataType │ moveObject │ │ │ │ │ type │ 0xa7ed855d30500c485a94c0849f70b508d6b6adf6b0767ab93cc0756c075ecbb1::greeting::Greeting │ │ │ │ │ hasPublicTransfer │ false │ │ │ │ │ fields │ ╭──────┬───────────────────────────────────────────────────────────────────────────────╮ │ │ │ │ │ │ │ id │ ╭────┬──────────────────────────────────────────────────────────────────────╮ │ │ │ │ │ │ │ │ │ │ id │ 0x2834aa3d2ed1b5060f4e5d400092544fa9c95430fd894b139b7dfb0312501594 │ │ │ │ │ │ │ │ │ │ ╰────┴──────────────────────────────────────────────────────────────────────╯ │ │ │ │ │ │ │ │ text │ Hello world! │ │ │ │ │ │ │ ╰──────┴───────────────────────────────────────────────────────────────────────────────╯ │ │ │ │ ╰───────────────────┴──────────────────────────────────────────────────────────────────────────────────────────╯ │ ╰───────────────┴──────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯ Important transaction considerations ​ You cannot send 2 or more transactions simultaneously, otherwise you encounter an error such as: Failed to sign transaction by a quorum of validators because one or more of its objects is reserved for another transaction. If you receive this error, you must wait until the current epoch is over before submitting your transaction again. You can see how long is left in the current epoch using Sui Explorer or another network explorer like SuiScan . To prevent the same object from being modified by multiple transactions at once, your address 'locks' the object to prevent conflicting modifications. If you'd like to batch multiple transaction commands together, you can use programmable transaction blocks . Transactions also have limitations regarding total size, number of objects, and number of inputs. Learn more about limitations in Building Against Limits in The Move Book. Next steps Create a Full Stack dApp Connect a frontend interface to your "Hello, World!" smart contract. Access Sui Data Learn more about accessing data on Sui. Join the Community Join the Sui developer community, try out other example projects, or read more documentation. Edit this page What is Move? Clone "Hello, World!" View the smart contract code Code explanation Resource safety Build the Move package Publish the Move package Interact with the Move package Important transaction considerations © 2026 Sui Foundation | Documentation distributed under CC BY 4.0
2026-01-13T08:47:43
https://bsky.social
Bluesky Bluesky butterfly logo Bluesky Bluesky butterfly logo Company Blog AT Protocol App Github Icon Company Blog AT Protocol Arrow Icon App Arrow Icon Bluesky butterfly logo Github Icon Twitter Icon Welcome to the social internet. Bluesky is social media as it should be. Find your community among millions of users, unleash your creativity, and have some fun again. Log In or Sign Up or log in or sign up in your browser Or find us on the App Store and Google Play Store Social media is too important to be controlled by a few corporations. We’re building an open foundation for the social internet so that we can all shape its future. Your timeline, your choice Stay focused on your friend group, keep up-to-date on the latest news, or explore with an algorithm that learns what you like. On Bluesky, there's a feed for that. Control your scroll Use powerful moderation lists, content filters, and more to control what ends up in your timeline. In the future, people and organizations will be able to use open tools to contribute even more directly to moderation. Some of the old, all of the new Social media used to be fun. Be your unique self and create with your friends, all while keeping tabs on what's happening at a global scale. Featured In What's next is being built today We're building a foundation for connection that gives users a choice in their experience, creators independence from platforms, and developers the freedom to build. The future is bright. Bluesky butterfly logo The public deserves a thriving online commons. We're committed to building this space and ensuring that your social network can never be bought by a single individual or organization. Learn more Bluesky is an open network. With one account, you can access both an easy-to-use social network and a shared identity across the entire social internet. How is Bluesky different? We've teamed up with Bluesky user @davis.social to create a comic explaining what makes Bluesky different. It's a great way to get a quick overview of what we're all about. See the comic Take a deeper dive We worked with Martin Kleppmann — researcher, author of Designing Data-Intensive Applications , and technical advisor to Bluesky — to write a paper that goes into more detail about the technical underpinnings of Bluesky. Read the paper We're locked open, not closed Our goal is to foster a healthy developer ecosystem that improves your experience online. See all projects Arrow Icon Graze Graze lets you design and control custom feeds for yourself, your friends, and your passions. See project Arrow Icon Tangled Tangled is a social git platform on atproto where developers own code, communities self-govern, and coding is fun. See project Arrow Icon Skylight Your content and connections stay with you—switch atproto platforms and keep your audience, content, and followers. See project Arrow Icon Leaflet.pub Leaflet.pub is a fast, account-free tool for creating and sharing collaborative documents and blogs. See project Arrow Icon Streamplace Stream.place is an open-source video streaming layer for decentralized social networks. See project Arrow Icon Germ Germ Network is a privacy-first encrypted messenger with multiple identities and AT-Protocol integration. See project Arrow Icon Matt Mullenweg CEO @ Automattic “Bluesky proves that it is computationally possible to solve the problems of Twitter-like social networking in a distributed fashion, with a clean user experience. That is really exciting to me.” Build for the future Open protocols like HTTP are the bedrock of the internet. We’re building open source infrastructure so that social communication can be as open and interoperable as the web itself. Check out the docs Arrow Icon 1 / 4 Carousel Arrow Icon Carousel Arrow Icon Participate in discussions with our devs, and help shape the future of social View GitHub discussions Arrow Icon Build a project in a weekend, or the next global-scale social app using our public APIs Get started with the API Arrow Icon Tap into the public firehose of messages and events Check out the docs Arrow Icon Create custom algorithms to power online communities where users are in control Try our starter kit Arrow Icon Don’t start from zero. Auth with Bluesky and launch with millions of users. Be part of a quickly growing developer ecosystem. Use our public APIs to create bots, clients, custom feeds , and more. Build in an open ecosystem that will never lock you out . Don’t start from zero. Auth with Bluesky and launch with millions of users. Be part of a quickly growing developer ecosystem. Use our public APIs to create bots, clients, custom feeds , and more. Build in an open ecosystem that will never lock you out . Bluesky butterfly logo Bluesky User FAQ Press Support Jobs RSS Links AT Protocol Bluesky App Connect press@blueskyweb.xyz support@bsky.app Bluesky is a Public Benefit Corporation Question Mark Icon Bluesky butterfly logo Github Icon Twitter Icon
2026-01-13T08:47:43
https://privacy.x.com/subprocessors
Subprocessors Skip to main content Privacy <path opacity="0" d="M0 0h24v24H0z" /> <path d="M17.207 11.293l-7.5-7.5c-.39-.39-1.023-.39-1.414 0s-.39 1.023 0 1.414L15.086 12l-6.793 6.793c-.39.39-.39 1.023 0 1.414.195.195.45.293.707.293s.512-.098.707-.293l7.5-7.5c.39-.39.39-1.023 0-1.414z" /> </svg>" data-icon-arrow-left="<svg width="28px" height="28px" viewbox="0 0 28 28" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="none" class="twtr-icon u01b__icon-arrow-left"> <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round"> <g transform="translate(-1216.000000, -298.000000)" stroke-width="2.25"> <g transform="translate(1200.000000, 282.000000)"> <g transform="translate(17.000000, 17.000000)"> <path d="M0.756410256,12.8589744 L25.7179487,12.8589744"></path> <path d="M13.2371795,25.3397436 L25.7179487,12.8589744"></path> <path d="M13.2371795,12.4807692 L25.3397436,0.378205128" transform="translate(19.288462, 6.429487) rotate(-90.000000) translate(-19.288462, -6.429487) "></path> </g> </g> </g> </g> </svg>" data-icon-chevron-down="<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" aria-hidden="true" focusable="false" role="none" class="twtr-icon"> <path opacity="0" d="M0 0h24v24H0z" /> <path d="M20.207 7.043c-.39-.39-1.023-.39-1.414 0L12 13.836 5.207 7.043c-.39-.39-1.023-.39-1.414 0s-.39 1.023 0 1.414l7.5 7.5c.195.195.45.293.707.293s.512-.098.707-.293l7.5-7.5c.39-.39.39-1.023 0-1.414z" /> </svg>" data-icon-close="<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewbox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve" aria-hidden="true" focusable="false" role="none" class="twtr-icon--md"> <g> <g> <defs> <rect id="SVGID_1_" x="-468" y="-1360" width="1440" height="3027" /> </defs> <clippath id="SVGID_2_"> <use xlink:href="#SVGID_1_" style="overflow:visible;" /> </clippath> </g> </g> <rect x="-468" y="-1360" class="st0" width="1440" height="3027" style="fill:rgb(0,0,0,0);stroke-width:3;stroke:rgb(0,0,0)" /> <path d="M13.4,12l5.8-5.8c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0L12,10.6L6.2,4.8c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4 l5.8,5.8l-5.8,5.8c-0.4,0.4-0.4,1,0,1.4c0.2,0.2,0.4,0.3,0.7,0.3s0.5-0.1,0.7-0.3l5.8-5.8l5.8,5.8c0.2,0.2,0.5,0.3,0.7,0.3 s0.5-0.1,0.7-0.3c0.4-0.4,0.4-1,0-1.4L13.4,12z" /> </svg>" data-icon-search="<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" aria-hidden="true" focusable="false" role="none" class="twtr-icon"> <path opacity="0" d="M0 0h24v24H0z" /> <path d="M22.06 19.94l-3.73-3.73C19.38 14.737 20 12.942 20 11c0-4.97-4.03-9-9-9s-9 4.03-9 9 4.03 9 9 9c1.943 0 3.738-.622 5.21-1.67l3.73 3.73c.292.294.676.44 1.06.44s.768-.146 1.06-.44c.586-.585.586-1.535 0-2.12zM11 17c-3.308 0-6-2.692-6-6s2.692-6 6-6 6 2.692 6 6-2.692 6-6 6z" /> </svg>" data-icon-search-submit="<svg width="21" height="21" viewbox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="none" class="twtr-icon"> <path fill-rule="evenodd" clip-rule="evenodd" d="M16.33 14.21L20.06 17.94C20.646 18.525 20.646 19.475 20.06 20.06C19.768 20.354 19.384 20.5 19 20.5C18.616 20.5 18.232 20.354 17.94 20.06L14.21 16.33C12.738 17.378 10.943 18 9 18C4.03 18 0 13.97 0 9C0 4.03 4.03 0 9 0C13.97 0 18 4.03 18 9C18 10.942 17.38 12.737 16.33 14.21ZM3 9C3 12.308 5.692 15 9 15C12.308 15 15 12.308 15 9C15 5.692 12.308 3 9 3C5.692 3 3 5.692 3 9Z" fill="white" /> </svg>" data-bg-color="white-neutral" data-root-page-title="Privacy" data-search-placeholder="Search" data-search-page="https://privacy.x.com/en/search" data-search-query-key="q" data-search-query-type="?" data-scribe-element="ZKAD" data-scribe-section="u01b-navigation" data-cta-enabled="true" data-cta-link-new-tab="false"> Our Service Partners To bring our services to you, X and its affiliates partner with a variety of providers. Below is a list of the main providers we work with. From time-to-time we may update this list to make sure you understand who we partner with to bring you our services. Company Country/Region Company Accenture Country/Region United States Company Acxiom Country/Region United States Company Adjust Country/Region Germany Company Adyen Country/Region Netherlands Company Akamai Technologies Country/Region United States Company Amazon Web Services Country/Region United States Company Appsflyer Country/Region Israel Company Atlassian Country/Region Australia Company Au10Tix Country/Region Cyprus Company Branch Metrics Country/Region United States Company Cognizant Country/Region United States Company comScore Country/Region United States Company CyberAgent Country/Region Japan Company DoubleVerify Country/Region United States Company dunnhumby Limited Country/Region United Kingdom Company Foursquare Labs Country/Region United States Company Free Stream Media Corporation Country/Region United States Company Github Country/Region United States Company Google Country/Region United States Company HackerOne Country/Region United States Company Hubspot Country/Region United States Company Intage Country/Region Japan Company Integral Ad Science Country/Region United States Company Kochava Country/Region United States Company LiveRamp Country/Region United States Company Microsoft Country/Region United States Company NAVEX Global Country/Region United States Company NC Ventures Country/Region United States Company Nielsen Country/Region United States Company Neustar Information Services Country/Region United States Company Oracle America Country/Region United States Company Persona Country/Region United States Company PRO Unlimited Country/Region United States Company Recurly Country/Region United States Company Salesforce.com Country/Region United States Company Singular Labs Country/Region United States Company Slack Technologies Country/Region United States Company Stripe Country/Region United States Company Tipalti Country/Region United States Company Unit 21 Country/Region United States Company xAI Country/Region United States Company Zendesk Country/Region United States © 2026 X Corp. Cookies Privacy Terms and conditions English Privacy English Deutsch Español Français 日本語 Русский 한국어 Italiano Português Nederlands Did someone say … cookies? X and its partners use cookies to provide you with a better, safer and faster service and to support our business. Some cookies are necessary to use our services, improve our services, and make sure they work properly. Show more about your choices . Accept all cookies Refuse non-essential cookies
2026-01-13T08:47:43
https://www.youtube.com/channel/UCtzmz6BfJqDx-8IHkh6ovwA
Matt on Data Science - YouTube var ytInitialData = {"responseContext":{"serviceTrackingParams":[{"service":"GFEEDBACK","params":[{"key":"route","value":"channel."},{"key":"is_owner","value":"false"},{"key":"is_alc_surface","value":"false"},{"key":"browse_id","value":"UCtzmz6BfJqDx-8IHkh6ovwA"},{"key":"browse_id_prefix","value":""},{"key":"logged_in","value":"0"},{"key":"visitor_data","value":"CgtuVFdLOHc5a19kNCisjZjLBjIKCgJLUhIEGgAgKGLfAgrcAjE1LllUPURMY2NUOGtEUlRUQmdXc0gwY1VPMEQxU2FtckRpQU05R0VGeHRSUHV1azFJWFRrV0ZVd1dLSlJhTnNNV2xfV3JqLXUxLWdINmJmUjZaVHgwemxtUlE1ME9XNk94WHdkeGNRMkZaOTlCaXJ0cE9SN18tcjNDVl9uZzM2T095TUFEeG9CRkRkQkpjbVYxM0J4QXVXc0NpZWlZOGVGcWd5WDhEbjllSkNnemZLams1OTF5cHZuVzBKNzdjRFN0Rlh5czhCNGZjaUdXV1FfRnQwYTllRFdMQmliUUxsQ2pzMWlBeFZRMTQtbm14dFlFTG1ZMWpLQkhhYUZLQlEwUjU3bGlJeldRWVBJNEkzaGtFMTF6SjYxMUNzWU91cnhhNTh5alBWamtkcW5fRWNRWUp6S015b0UzZGFfLXQzUGcxRFVJWW1MdXU4WEZHRC1xSVAtSDhFTFZ1UQ%3D%3D"}]},{"service":"GOOGLE_HELP","params":[{"key":"browse_id","value":"UCtzmz6BfJqDx-8IHkh6ovwA"},{"key":"browse_id_prefix","value":""}]},{"service":"CSI","params":[{"key":"c","value":"WEB"},{"key":"cver","value":"2.20260109.01.00"},{"key":"yt_li","value":"0"},{"key":"GetChannelPage_rid","value":"0xb6e47195c920681a"}]},{"service":"GUIDED_HELP","params":[{"key":"logged_in","value":"0"}]},{"service":"ECATCHER","params":[{"key":"client.version","value":"2.20260109"},{"key":"client.name","value":"WEB"}]}],"maxAgeSeconds":300,"mainAppWebResponseContext":{"loggedOut":true,"trackingParam":"kx_fmPxhoPZRjFNSL_98QEExs7t0sXeKU3d_gii6AH1NsAwRgkuswmIBwOcCE59TDtslLKPQ-SS"},"webResponseContextExtensionData":{"webResponseContextPreloadData":{"preloadMessageNames":["pageHeaderRenderer","pageHeaderViewModel","imageBannerViewModel","dynamicTextViewModel","decoratedAvatarViewModel","avatarViewModel","contentMetadataViewModel","flexibleActionsViewModel","buttonViewModel","modalWithTitleAndButtonRenderer","buttonRenderer","descriptionPreviewViewModel","engagementPanelSectionListRenderer","engagementPanelTitleHeaderRenderer","sectionListRenderer","itemSectionRenderer","continuationItemRenderer","attributionViewModel","channelMetadataRenderer","twoColumnBrowseResultsRenderer","tabRenderer","channelVideoPlayerRenderer","shelfRenderer","horizontalListRenderer","gridVideoRenderer","thumbnailOverlayTimeStatusRenderer","thumbnailOverlayToggleButtonRenderer","thumbnailOverlayNowPlayingRenderer","menuRenderer","menuServiceItemRenderer","menuNavigationItemRenderer","unifiedSharePanelRenderer","metadataBadgeRenderer","lockupViewModel","collectionThumbnailViewModel","thumbnailViewModel","thumbnailOverlayBadgeViewModel","thumbnailBadgeViewModel","thumbnailHoverOverlayViewModel","lockupMetadataViewModel","gridChannelRenderer","expandableTabRenderer","desktopTopbarRenderer","topbarLogoRenderer","fusionSearchboxRenderer","topbarMenuButtonRenderer","multiPageMenuRenderer","hotkeyDialogRenderer","hotkeyDialogSectionRenderer","hotkeyDialogSectionOptionRenderer","voiceSearchDialogRenderer","microformatDataRenderer"]},"ytConfigData":{"visitorData":"CgtuVFdLOHc5a19kNCisjZjLBjIKCgJLUhIEGgAgKGLfAgrcAjE1LllUPURMY2NUOGtEUlRUQmdXc0gwY1VPMEQxU2FtckRpQU05R0VGeHRSUHV1azFJWFRrV0ZVd1dLSlJhTnNNV2xfV3JqLXUxLWdINmJmUjZaVHgwemxtUlE1ME9XNk94WHdkeGNRMkZaOTlCaXJ0cE9SN18tcjNDVl9uZzM2T095TUFEeG9CRkRkQkpjbVYxM0J4QXVXc0NpZWlZOGVGcWd5WDhEbjllSkNnemZLams1OTF5cHZuVzBKNzdjRFN0Rlh5czhCNGZjaUdXV1FfRnQwYTllRFdMQmliUUxsQ2pzMWlBeFZRMTQtbm14dFlFTG1ZMWpLQkhhYUZLQlEwUjU3bGlJeldRWVBJNEkzaGtFMTF6SjYxMUNzWU91cnhhNTh5alBWamtkcW5fRWNRWUp6S015b0UzZGFfLXQzUGcxRFVJWW1MdXU4WEZHRC1xSVAtSDhFTFZ1UQ%3D%3D","rootVisualElementType":3611},"hasDecorated":true}},"contents":{"twoColumnBrowseResultsRenderer":{"tabs":[{"tabRenderer":{"endpoint":{"clickTrackingParams":"CCQQ8JMBGAUiEwiovtTakIiSAxVfkFYBHYpDN4_KAQTNsvax","commandMetadata":{"webCommandMetadata":{"url":"/@MattEland/featured","webPageType":"WEB_PAGE_TYPE_CHANNEL","rootVe":3611,"apiUrl":"/youtubei/v1/browse"}},"browseEndpoint":{"browseId":"UCtzmz6BfJqDx-8IHkh6ovwA","params":"EghmZWF0dXJlZPIGBAoCMgA%3D","canonicalBaseUrl":"/@MattEland"}},"title":"홈","selected":true,"content":{"sectionListRenderer":{"contents":[{"itemSectionRenderer":{"contents":[{"channelVideoPlayerRenderer":{"videoId":"xXkVOSKY674","title":{"runs":[{"text":"Announcing: Refactoring with C#","navigationEndpoint":{"clickTrackingParams":"COQDELsvGAAiEwiovtTakIiSAxVfkFYBHYpDN4_KAQTNsvax","commandMetadata":{"webCommandMetadata":{"url":"/watch?v=xXkVOSKY674","webPageType":"WEB_PAGE_TYPE_WATCH","rootVe":3832}},"watchEndpoint":{"videoId":"xXkVOSKY674","watchEndpointSupportedOnesieConfig":{"html5PlaybackOnesieConfig":{"commonConfig":{"url":"https://rr5---sn-ab02a0nfpgxapox-bh2s6.googlevideo.com/initplayback?source=youtube\u0026oeis=1\u0026c=WEB\u0026oad=3200\u0026ovd=3200\u0026oaad=11000\u0026oavd=11000\u0026ocs=700\u0026oewis=1\u0026oputc=1\u0026ofpcc=1\u0026msp=1\u0026odepv=1\u0026id=c57915392298ebbe\u0026ip=1.208.108.242\u0026initcwndbps=3685000\u0026mt=1768293652\u0026oweuc="}}}}}}],"accessibility":{"accessibilityData":{"label":"Announcing: Refactoring with C# 7분 32초"}}},"description":{"runs":[{"text":"This video announces my first technical book, Refactoring with C#, and covers its contents on .NET development, refactoring, technical debt, legacy code, and making changes safely. I cover unit testing, TDD, SOLID, defensive coding techniques, and even AI-assisted coding with GitHub Copilot Chat, Roslyn Analyzers, code analysis, and other tools. The book closes with a discussion of agile refactoring in enterprise environments and political concerns in refactoring. I'm very proud of the book and hope you enjoy it.\n\nPackt Link: "},{"text":"https://www.packtpub.com/product/refa...","navigationEndpoint":{"clickTrackingParams":"COQDELsvGAAiEwiovtTakIiSAxVfkFYBHYpDN4_KAQTNsvax","commandMetadata":{"webCommandMetadata":{"url":"https://www.youtube.com/redirect?event=video_description\u0026redir_token=QUFFLUhqbE1EamE2cjJHWmg1b0dUelcyWWM2MlpUZFg3d3xBQ3Jtc0ttZEd2LVdycXZHckpPTmgwXy1wUnp1amJJRkFVZkRjSDU3d3JDUGVxa1E3Wm9oQUNNeUJVZExPcUZ0ejJxcVc2dWdRZDlOel9yRm1iMGFaS3ZRaFpoeG91bE1jTDhGRHdmY1p2d3p3aEdtbVpnUFZ0MA\u0026q=https%3A%2F%2Fwww.packtpub.com%2Fproduct%2Frefactoring-with-c%2F9781835089989","webPageType":"WEB_PAGE_TYPE_UNKNOWN","rootVe":83769}},"urlEndpoint":{"url":"https://www.youtube.com/redirect?event=video_description\u0026redir_token=QUFFLUhqbE1EamE2cjJHWmg1b0dUelcyWWM2MlpUZFg3d3xBQ3Jtc0ttZEd2LVdycXZHckpPTmgwXy1wUnp1amJJRkFVZkRjSDU3d3JDUGVxa1E3Wm9oQUNNeUJVZExPcUZ0ejJxcVc2dWdRZDlOel9yRm1iMGFaS3ZRaFpoeG91bE1jTDhGRHdmY1p2d3p3aEdtbVpnUFZ0MA\u0026q=https%3A%2F%2Fwww.packtpub.com%2Fproduct%2Frefactoring-with-c%2F9781835089989","target":"TARGET_NEW_WINDOW","nofollow":true}}},{"text":"\nAmazon Link: "},{"text":"https://www.amazon.com/Refactoring-Sa...","navigationEndpoint":{"clickTrackingParams":"COQDELsvGAAiEwiovtTakIiSAxVfkFYBHYpDN4_KAQTNsvax","commandMetadata":{"webCommandMetadata":{"url":"https://www.youtube.com/redirect?event=video_description\u0026redir_token=QUFFLUhqbnJfWHlncktTQlFMSEtwQVFjYnNKVUZXcEwyZ3xBQ3Jtc0trQnluTDRhVG82TmROVDZPbW9VX01weF9pZlB2TVJkenBydEhIUkx2dC1hQU5Td004Y25RYnd5UHY2cEdOMUxxTnltRjlRUFFxR2FqUUpSYmxNZy1DczdjWjl2X01tZ3JxNGF1ZWkxY3lsbFhyV0MtVQ\u0026q=https%3A%2F%2Fwww.amazon.com%2FRefactoring-Safely-improve-applications-technical%2Fdp%2F1835089984%2F","webPageType":"WEB_PAGE_TYPE_UNKNOWN","rootVe":83769}},"urlEndpoint":{"url":"https://www.youtube.com/redirect?event=video_description\u0026redir_token=QUFFLUhqbnJfWHlncktTQlFMSEtwQVFjYnNKVUZXcEwyZ3xBQ3Jtc0trQnluTDRhVG82TmROVDZPbW9VX01weF9pZlB2TVJkenBydEhIUkx2dC1hQU5Td004Y25RYnd5UHY2cEdOMUxxTnltRjlRUFFxR2FqUUpSYmxNZy1DczdjWjl2X01tZ3JxNGF1ZWkxY3lsbFhyV0MtVQ\u0026q=https%3A%2F%2Fwww.amazon.com%2FRefactoring-Safely-improve-applications-technical%2Fdp%2F1835089984%2F","target":"TARGET_NEW_WINDOW","nofollow":true}}}]},"viewCountText":{"simpleText":"조회수 1,059회"},"publishedTimeText":{"runs":[{"text":"2년 전"}]},"readMoreText":{"runs":[{"text":"자세히 알아보기","navigationEndpoint":{"clickTrackingParams":"COQDELsvGAAiEwiovtTakIiSAxVfkFYBHYpDN4_KAQTNsvax","commandMetadata":{"webCommandMetadata":{"url":"/watch?v=xXkVOSKY674","webPageType":"WEB_PAGE_TYPE_WATCH","rootVe":3832}},"watchEndpoint":{"videoId":"xXkVOSKY674","watchEndpointSupportedOnesieConfig":{"html5PlaybackOnesieConfig":{"commonConfig":{"url":"https://rr5---sn-ab02a0nfpgxapox-bh2s6.googlevideo.com/initplayback?source=youtube\u0026oeis=1\u0026c=WEB\u0026oad=3200\u0026ovd=3200\u0026oaad=11000\u0026oavd=11000\u0026ocs=700\u0026oewis=1\u0026oputc=1\u0026ofpcc=1\u0026msp=1\u0026odepv=1\u0026id=c57915392298ebbe\u0026ip=1.208.108.242\u0026initcwndbps=3685000\u0026mt=1768293652\u0026oweuc="}}}}}}]}}}],"trackingParams":"COQDELsvGAAiEwiovtTakIiSAxVfkFYBHYpDN48="}},{"itemSectionRenderer":{"contents":[{"shelfRenderer":{"title":{"runs":[{"text":"동영상","navigationEndpoint":{"clickTrackingParams":"CJgDENwcGAAiEwiovtTakIiSAxVfkFYBHYpDN4_KAQTNsvax","commandMetadata":{"webCommandMetadata":{"url":"/@MattEland/videos?view=0\u0026sort=dd\u0026shelf_id=1","webPageType":"WEB_PAGE_TYPE_CHANNEL","rootVe":3611,"apiUrl":"/youtubei/v1/browse"}},"browseEndpoint":{"browseId":"UCtzmz6BfJqDx-8IHkh6ovwA","params":"EgZ2aWRlb3MYAyAAcAHyBg0KCzoEIgIIBKIBAggB","canonicalBaseUrl":"/@MattEland"}}}]},"endpoint":{"clickTrackingParams":"CJgDENwcGAAiEwiovtTakIiSAxVfkFYBHYpDN4_KAQTNsvax","commandMetadata":{"webCommandMetadata":{"url":"/@MattEland/videos?view=0\u0026sort=dd\u0026shelf_id=1","webPageType":"WEB_PAGE_TYPE_CHANNEL","rootVe":3611,"apiUrl":"/youtubei/v1/browse"}},"browseEndpoint":{"browseId":"UCtzmz6BfJqDx-8IHkh6ovwA","params":"EgZ2aWRlb3MYAyAAcAHyBg0KCzoEIgIIBKIBAggB","canonicalBaseUrl":"/@MattEland"}},"content":{"horizontalListRenderer":{"items":[{"gridVideoRenderer":{"videoId":"cOX4r1V5sJ0","thumbnail":{"thumbnails":[{"url":"https://i.ytimg.com/vi/cOX4r1V5sJ0/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==\u0026rs=AOn4CLAkxkKH6ZlDvi4b0lvDynm2FFFN9g","width":168,"height":94},{"url":"https://i.ytimg.com/vi/cOX4r1V5sJ0/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==\u0026rs=AOn4CLCFjZ_BX5yNA1_SCmobGC4U-A21DA","width":196,"height":110},{"url":"https://i.ytimg.com/vi/cOX4r1V5sJ0/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=\u0026rs=AOn4CLB08IBctVH0cLWDir0rw4NcdGRhwg","width":246,"height":138},{"url":"https://i.ytimg.com/vi/cOX4r1V5sJ0/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=\u0026rs=AOn4CLBYU2dgHmFdPIIGSBiuJgskApS74g","width":336,"height":188}]},"title":{"accessibility":{"accessibilityData":{"label":"Common AI Architectures 31분"}},"simpleText":"Common AI Architectures"},"publishedTimeText":{"simpleText":"6개월 전"},"viewCountText":{"simpleText":"조회수 678회"},"navigationEndpoint":{"clickTrackingParams":"CN4DEJQ1GAAiEwiovtTakIiSAxVfkFYBHYpDN48yCmctaGlnaC1jcnZaGFVDdHptejZCZkpxRHgtOElIa2g2b3Z3QZoBBRDyOBhmygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"url":"/watch?v=cOX4r1V5sJ0","webPageType":"WEB_PAGE_TYPE_WATCH","rootVe":3832}},"watchEndpoint":{"videoId":"cOX4r1V5sJ0","watchEndpointSupportedOnesieConfig":{"html5PlaybackOnesieConfig":{"commonConfig":{"url":"https://rr8---sn-ab02a0nfpgxapox-bh26d.googlevideo.com/initplayback?source=youtube\u0026oeis=1\u0026c=WEB\u0026oad=3200\u0026ovd=3200\u0026oaad=11000\u0026oavd=11000\u0026ocs=700\u0026oewis=1\u0026oputc=1\u0026ofpcc=1\u0026msp=1\u0026odepv=1\u0026id=70e5f8af5579b09d\u0026ip=1.208.108.242\u0026initcwndbps=4473750\u0026mt=1768293652\u0026oweuc="}}}}},"trackingParams":"CN4DEJQ1GAAiEwiovtTakIiSAxVfkFYBHYpDN49AneHmq_WV_vJw","shortViewCountText":{"accessibility":{"accessibilityData":{"label":"조회수 678회"}},"simpleText":"조회수 678회"},"menu":{"menuRenderer":{"items":[{"menuServiceItemRenderer":{"text":{"runs":[{"text":"현재 재생목록에 추가"}]},"icon":{"iconType":"ADD_TO_QUEUE_TAIL"},"serviceEndpoint":{"clickTrackingParams":"COMDEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true}},"signalServiceEndpoint":{"signal":"CLIENT_SIGNAL","actions":[{"clickTrackingParams":"COMDEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","addToPlaylistCommand":{"openMiniplayer":true,"videoId":"cOX4r1V5sJ0","listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE","onCreateListCommand":{"clickTrackingParams":"COMDEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/playlist/create"}},"createPlaylistServiceEndpoint":{"videoIds":["cOX4r1V5sJ0"],"params":"CAQ%3D"}},"videoIds":["cOX4r1V5sJ0"],"videoCommand":{"clickTrackingParams":"COMDEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"url":"/watch?v=cOX4r1V5sJ0","webPageType":"WEB_PAGE_TYPE_WATCH","rootVe":3832}},"watchEndpoint":{"videoId":"cOX4r1V5sJ0","watchEndpointSupportedOnesieConfig":{"html5PlaybackOnesieConfig":{"commonConfig":{"url":"https://rr8---sn-ab02a0nfpgxapox-bh26d.googlevideo.com/initplayback?source=youtube\u0026oeis=1\u0026c=WEB\u0026oad=3200\u0026ovd=3200\u0026oaad=11000\u0026oavd=11000\u0026ocs=700\u0026oewis=1\u0026oputc=1\u0026ofpcc=1\u0026msp=1\u0026odepv=1\u0026id=70e5f8af5579b09d\u0026ip=1.208.108.242\u0026initcwndbps=4473750\u0026mt=1768293652\u0026oweuc="}}}}}}}]}},"trackingParams":"COMDEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzeP"}},{"menuNavigationItemRenderer":{"text":{"runs":[{"text":"재생목록에 저장"}]},"icon":{"iconType":"BOOKMARK_BORDER"},"navigationEndpoint":{"clickTrackingParams":"COIDEJSsCRgGIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"url":"https://accounts.google.com/ServiceLogin?service=youtube\u0026uilel=3\u0026passive=true\u0026continue=https%3A%2F%2Fwww.youtube.com%2Fsignin%3Faction_handle_signin%3Dtrue%26app%3Ddesktop%26hl%3Dko\u0026hl=ko","webPageType":"WEB_PAGE_TYPE_UNKNOWN","rootVe":83769}},"signInEndpoint":{"nextEndpoint":{"clickTrackingParams":"COIDEJSsCRgGIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","showSheetCommand":{"panelLoadingStrategy":{"requestTemplate":{"panelId":"PAadd_to_playlist","params":"-gYNCgtjT1g0cjFWNXNKMA%3D%3D"}}}}}},"trackingParams":"COIDEJSsCRgGIhMIqL7U2pCIkgMVX5BWAR2KQzeP"}},{"menuServiceItemRenderer":{"text":{"runs":[{"text":"공유"}]},"icon":{"iconType":"SHARE"},"serviceEndpoint":{"clickTrackingParams":"CN4DEJQ1GAAiEwiovtTakIiSAxVfkFYBHYpDN4_KAQTNsvax","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/share/get_share_panel"}},"shareEntityServiceEndpoint":{"serializedShareEntity":"CgtjT1g0cjFWNXNKMA%3D%3D","commands":[{"clickTrackingParams":"CN4DEJQ1GAAiEwiovtTakIiSAxVfkFYBHYpDN4_KAQTNsvax","openPopupAction":{"popup":{"unifiedSharePanelRenderer":{"trackingParams":"COEDEI5iIhMIqL7U2pCIkgMVX5BWAR2KQzeP","showLoadingSpinner":true}},"popupType":"DIALOG","beReused":true}}]}},"trackingParams":"CN4DEJQ1GAAiEwiovtTakIiSAxVfkFYBHYpDN48=","hasSeparator":true}}],"trackingParams":"CN4DEJQ1GAAiEwiovtTakIiSAxVfkFYBHYpDN48=","accessibility":{"accessibilityData":{"label":"작업 메뉴"}}}},"thumbnailOverlays":[{"thumbnailOverlayTimeStatusRenderer":{"text":{"accessibility":{"accessibilityData":{"label":"31분 59초"}},"simpleText":"31:59"},"style":"DEFAULT"}},{"thumbnailOverlayToggleButtonRenderer":{"isToggled":false,"untoggledIcon":{"iconType":"WATCH_LATER"},"toggledIcon":{"iconType":"CHECK"},"untoggledTooltip":"나중에 볼 동영상","toggledTooltip":"추가됨","untoggledServiceEndpoint":{"clickTrackingParams":"COADEPnnAxgBIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/browse/edit_playlist"}},"playlistEditEndpoint":{"playlistId":"WL","actions":[{"addedVideoId":"cOX4r1V5sJ0","action":"ACTION_ADD_VIDEO"}]}},"toggledServiceEndpoint":{"clickTrackingParams":"COADEPnnAxgBIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/browse/edit_playlist"}},"playlistEditEndpoint":{"playlistId":"WL","actions":[{"action":"ACTION_REMOVE_VIDEO_BY_VIDEO_ID","removedVideoId":"cOX4r1V5sJ0"}]}},"untoggledAccessibility":{"accessibilityData":{"label":"나중에 볼 동영상"}},"toggledAccessibility":{"accessibilityData":{"label":"추가됨"}},"trackingParams":"COADEPnnAxgBIhMIqL7U2pCIkgMVX5BWAR2KQzeP"}},{"thumbnailOverlayToggleButtonRenderer":{"untoggledIcon":{"iconType":"ADD_TO_QUEUE_TAIL"},"toggledIcon":{"iconType":"PLAYLIST_ADD_CHECK"},"untoggledTooltip":"현재 재생목록에 추가","toggledTooltip":"추가됨","untoggledServiceEndpoint":{"clickTrackingParams":"CN8DEMfsBBgCIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true}},"signalServiceEndpoint":{"signal":"CLIENT_SIGNAL","actions":[{"clickTrackingParams":"CN8DEMfsBBgCIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","addToPlaylistCommand":{"openMiniplayer":true,"videoId":"cOX4r1V5sJ0","listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE","onCreateListCommand":{"clickTrackingParams":"CN8DEMfsBBgCIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/playlist/create"}},"createPlaylistServiceEndpoint":{"videoIds":["cOX4r1V5sJ0"],"params":"CAQ%3D"}},"videoIds":["cOX4r1V5sJ0"]}}]}},"untoggledAccessibility":{"accessibilityData":{"label":"현재 재생목록에 추가"}},"toggledAccessibility":{"accessibilityData":{"label":"추가됨"}},"trackingParams":"CN8DEMfsBBgCIhMIqL7U2pCIkgMVX5BWAR2KQzeP"}},{"thumbnailOverlayNowPlayingRenderer":{"text":{"runs":[{"text":"지금 재생 중"}]}}}]}},{"gridVideoRenderer":{"videoId":"X9IeKYYDzzQ","thumbnail":{"thumbnails":[{"url":"https://i.ytimg.com/vi/X9IeKYYDzzQ/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==\u0026rs=AOn4CLDpl0h9HuneL6lHmGYSFF0cYbPeMA","width":168,"height":94},{"url":"https://i.ytimg.com/vi/X9IeKYYDzzQ/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==\u0026rs=AOn4CLAihnB4pguq9O7lMxJ_efAklSNq3w","width":196,"height":110},{"url":"https://i.ytimg.com/vi/X9IeKYYDzzQ/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=\u0026rs=AOn4CLBAXY4h6WjfjGL8IfHNtKsocnQPtA","width":246,"height":138},{"url":"https://i.ytimg.com/vi/X9IeKYYDzzQ/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=\u0026rs=AOn4CLDX--LBDh9eNC9OsNcPG9UBIsFLOQ","width":336,"height":188}]},"title":{"accessibility":{"accessibilityData":{"label":"Machine Learning and MLOps Architectures 15분"}},"simpleText":"Machine Learning and MLOps Architectures"},"publishedTimeText":{"simpleText":"6개월 전"},"viewCountText":{"simpleText":"조회수 209회"},"navigationEndpoint":{"clickTrackingParams":"CNgDEJQ1GAEiEwiovtTakIiSAxVfkFYBHYpDN48yCmctaGlnaC1jcnZaGFVDdHptejZCZkpxRHgtOElIa2g2b3Z3QZoBBRDyOBhmygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"url":"/watch?v=X9IeKYYDzzQ\u0026pp=0gcJCU0KAYcqIYzv","webPageType":"WEB_PAGE_TYPE_WATCH","rootVe":3832}},"watchEndpoint":{"videoId":"X9IeKYYDzzQ","playerParams":"0gcJCU0KAYcqIYzv","watchEndpointSupportedOnesieConfig":{"html5PlaybackOnesieConfig":{"commonConfig":{"url":"https://rr3---sn-ab02a0nfpgxapox-bh26z.googlevideo.com/initplayback?source=youtube\u0026oeis=1\u0026c=WEB\u0026oad=3200\u0026ovd=3200\u0026oaad=11000\u0026oavd=11000\u0026ocs=700\u0026oewis=1\u0026oputc=1\u0026ofpcc=1\u0026msp=1\u0026odepv=1\u0026id=5fd21e298603cf34\u0026ip=1.208.108.242\u0026initcwndbps=4393750\u0026mt=1768293652\u0026oweuc="}}}}},"trackingParams":"CNgDEJQ1GAEiEwiovtTakIiSAxVfkFYBHYpDN49AtJ6PsJjFh-lf","shortViewCountText":{"accessibility":{"accessibilityData":{"label":"조회수 209회"}},"simpleText":"조회수 209회"},"menu":{"menuRenderer":{"items":[{"menuServiceItemRenderer":{"text":{"runs":[{"text":"현재 재생목록에 추가"}]},"icon":{"iconType":"ADD_TO_QUEUE_TAIL"},"serviceEndpoint":{"clickTrackingParams":"CN0DEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true}},"signalServiceEndpoint":{"signal":"CLIENT_SIGNAL","actions":[{"clickTrackingParams":"CN0DEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","addToPlaylistCommand":{"openMiniplayer":true,"videoId":"X9IeKYYDzzQ","listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE","onCreateListCommand":{"clickTrackingParams":"CN0DEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/playlist/create"}},"createPlaylistServiceEndpoint":{"videoIds":["X9IeKYYDzzQ"],"params":"CAQ%3D"}},"videoIds":["X9IeKYYDzzQ"],"videoCommand":{"clickTrackingParams":"CN0DEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"url":"/watch?v=X9IeKYYDzzQ","webPageType":"WEB_PAGE_TYPE_WATCH","rootVe":3832}},"watchEndpoint":{"videoId":"X9IeKYYDzzQ","watchEndpointSupportedOnesieConfig":{"html5PlaybackOnesieConfig":{"commonConfig":{"url":"https://rr3---sn-ab02a0nfpgxapox-bh26z.googlevideo.com/initplayback?source=youtube\u0026oeis=1\u0026c=WEB\u0026oad=3200\u0026ovd=3200\u0026oaad=11000\u0026oavd=11000\u0026ocs=700\u0026oewis=1\u0026oputc=1\u0026ofpcc=1\u0026msp=1\u0026odepv=1\u0026id=5fd21e298603cf34\u0026ip=1.208.108.242\u0026initcwndbps=4393750\u0026mt=1768293652\u0026oweuc="}}}}}}}]}},"trackingParams":"CN0DEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzeP"}},{"menuNavigationItemRenderer":{"text":{"runs":[{"text":"재생목록에 저장"}]},"icon":{"iconType":"BOOKMARK_BORDER"},"navigationEndpoint":{"clickTrackingParams":"CNwDEJSsCRgGIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"url":"https://accounts.google.com/ServiceLogin?service=youtube\u0026uilel=3\u0026passive=true\u0026continue=https%3A%2F%2Fwww.youtube.com%2Fsignin%3Faction_handle_signin%3Dtrue%26app%3Ddesktop%26hl%3Dko\u0026hl=ko","webPageType":"WEB_PAGE_TYPE_UNKNOWN","rootVe":83769}},"signInEndpoint":{"nextEndpoint":{"clickTrackingParams":"CNwDEJSsCRgGIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","showSheetCommand":{"panelLoadingStrategy":{"requestTemplate":{"panelId":"PAadd_to_playlist","params":"-gYNCgtYOUllS1lZRHp6UQ%3D%3D"}}}}}},"trackingParams":"CNwDEJSsCRgGIhMIqL7U2pCIkgMVX5BWAR2KQzeP"}},{"menuServiceItemRenderer":{"text":{"runs":[{"text":"공유"}]},"icon":{"iconType":"SHARE"},"serviceEndpoint":{"clickTrackingParams":"CNgDEJQ1GAEiEwiovtTakIiSAxVfkFYBHYpDN4_KAQTNsvax","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/share/get_share_panel"}},"shareEntityServiceEndpoint":{"serializedShareEntity":"CgtYOUllS1lZRHp6UQ%3D%3D","commands":[{"clickTrackingParams":"CNgDEJQ1GAEiEwiovtTakIiSAxVfkFYBHYpDN4_KAQTNsvax","openPopupAction":{"popup":{"unifiedSharePanelRenderer":{"trackingParams":"CNsDEI5iIhMIqL7U2pCIkgMVX5BWAR2KQzeP","showLoadingSpinner":true}},"popupType":"DIALOG","beReused":true}}]}},"trackingParams":"CNgDEJQ1GAEiEwiovtTakIiSAxVfkFYBHYpDN48=","hasSeparator":true}}],"trackingParams":"CNgDEJQ1GAEiEwiovtTakIiSAxVfkFYBHYpDN48=","accessibility":{"accessibilityData":{"label":"작업 메뉴"}}}},"thumbnailOverlays":[{"thumbnailOverlayTimeStatusRenderer":{"text":{"accessibility":{"accessibilityData":{"label":"15분 38초"}},"simpleText":"15:38"},"style":"DEFAULT"}},{"thumbnailOverlayToggleButtonRenderer":{"isToggled":false,"untoggledIcon":{"iconType":"WATCH_LATER"},"toggledIcon":{"iconType":"CHECK"},"untoggledTooltip":"나중에 볼 동영상","toggledTooltip":"추가됨","untoggledServiceEndpoint":{"clickTrackingParams":"CNoDEPnnAxgBIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/browse/edit_playlist"}},"playlistEditEndpoint":{"playlistId":"WL","actions":[{"addedVideoId":"X9IeKYYDzzQ","action":"ACTION_ADD_VIDEO"}]}},"toggledServiceEndpoint":{"clickTrackingParams":"CNoDEPnnAxgBIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/browse/edit_playlist"}},"playlistEditEndpoint":{"playlistId":"WL","actions":[{"action":"ACTION_REMOVE_VIDEO_BY_VIDEO_ID","removedVideoId":"X9IeKYYDzzQ"}]}},"untoggledAccessibility":{"accessibilityData":{"label":"나중에 볼 동영상"}},"toggledAccessibility":{"accessibilityData":{"label":"추가됨"}},"trackingParams":"CNoDEPnnAxgBIhMIqL7U2pCIkgMVX5BWAR2KQzeP"}},{"thumbnailOverlayToggleButtonRenderer":{"untoggledIcon":{"iconType":"ADD_TO_QUEUE_TAIL"},"toggledIcon":{"iconType":"PLAYLIST_ADD_CHECK"},"untoggledTooltip":"현재 재생목록에 추가","toggledTooltip":"추가됨","untoggledServiceEndpoint":{"clickTrackingParams":"CNkDEMfsBBgCIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true}},"signalServiceEndpoint":{"signal":"CLIENT_SIGNAL","actions":[{"clickTrackingParams":"CNkDEMfsBBgCIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","addToPlaylistCommand":{"openMiniplayer":true,"videoId":"X9IeKYYDzzQ","listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE","onCreateListCommand":{"clickTrackingParams":"CNkDEMfsBBgCIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/playlist/create"}},"createPlaylistServiceEndpoint":{"videoIds":["X9IeKYYDzzQ"],"params":"CAQ%3D"}},"videoIds":["X9IeKYYDzzQ"]}}]}},"untoggledAccessibility":{"accessibilityData":{"label":"현재 재생목록에 추가"}},"toggledAccessibility":{"accessibilityData":{"label":"추가됨"}},"trackingParams":"CNkDEMfsBBgCIhMIqL7U2pCIkgMVX5BWAR2KQzeP"}},{"thumbnailOverlayNowPlayingRenderer":{"text":{"runs":[{"text":"지금 재생 중"}]}}}]}},{"gridVideoRenderer":{"videoId":"m4TPSeTWmeo","thumbnail":{"thumbnails":[{"url":"https://i.ytimg.com/vi/m4TPSeTWmeo/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==\u0026rs=AOn4CLCPg3_oAN8TURKWNFfV3K3n-nhasw","width":168,"height":94},{"url":"https://i.ytimg.com/vi/m4TPSeTWmeo/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==\u0026rs=AOn4CLBstdzOyUMGAphnVo-v-uM3biO-dQ","width":196,"height":110},{"url":"https://i.ytimg.com/vi/m4TPSeTWmeo/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=\u0026rs=AOn4CLDFxnIhkW6t47SWFGtpLPijrzmaoA","width":246,"height":138},{"url":"https://i.ytimg.com/vi/m4TPSeTWmeo/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=\u0026rs=AOn4CLDFJp_2ecyhC98Q4lcxLMiHoUqb_g","width":336,"height":188}]},"title":{"accessibility":{"accessibilityData":{"label":"Common Software Architectures and How they Fail 39분"}},"simpleText":"Common Software Architectures and How they Fail"},"publishedTimeText":{"simpleText":"7개월 전"},"viewCountText":{"simpleText":"조회수 176회"},"navigationEndpoint":{"clickTrackingParams":"CNIDEJQ1GAIiEwiovtTakIiSAxVfkFYBHYpDN48yCmctaGlnaC1jcnZaGFVDdHptejZCZkpxRHgtOElIa2g2b3Z3QZoBBRDyOBhmygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"url":"/watch?v=m4TPSeTWmeo","webPageType":"WEB_PAGE_TYPE_WATCH","rootVe":3832}},"watchEndpoint":{"videoId":"m4TPSeTWmeo","watchEndpointSupportedOnesieConfig":{"html5PlaybackOnesieConfig":{"commonConfig":{"url":"https://rr3---sn-ab02a0nfpgxapox-bh2lk.googlevideo.com/initplayback?source=youtube\u0026oeis=1\u0026c=WEB\u0026oad=3200\u0026ovd=3200\u0026oaad=11000\u0026oavd=11000\u0026ocs=700\u0026oewis=1\u0026oputc=1\u0026ofpcc=1\u0026msp=1\u0026odepv=1\u0026id=9b84cf49e4d699ea\u0026ip=1.208.108.242\u0026initcwndbps=4563750\u0026mt=1768293652\u0026oweuc="}}}}},"trackingParams":"CNIDEJQ1GAIiEwiovtTakIiSAxVfkFYBHYpDN49A6rPapp7ps8KbAQ==","shortViewCountText":{"accessibility":{"accessibilityData":{"label":"조회수 176회"}},"simpleText":"조회수 176회"},"menu":{"menuRenderer":{"items":[{"menuServiceItemRenderer":{"text":{"runs":[{"text":"현재 재생목록에 추가"}]},"icon":{"iconType":"ADD_TO_QUEUE_TAIL"},"serviceEndpoint":{"clickTrackingParams":"CNcDEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true}},"signalServiceEndpoint":{"signal":"CLIENT_SIGNAL","actions":[{"clickTrackingParams":"CNcDEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","addToPlaylistCommand":{"openMiniplayer":true,"videoId":"m4TPSeTWmeo","listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE","onCreateListCommand":{"clickTrackingParams":"CNcDEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/playlist/create"}},"createPlaylistServiceEndpoint":{"videoIds":["m4TPSeTWmeo"],"params":"CAQ%3D"}},"videoIds":["m4TPSeTWmeo"],"videoCommand":{"clickTrackingParams":"CNcDEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"url":"/watch?v=m4TPSeTWmeo","webPageType":"WEB_PAGE_TYPE_WATCH","rootVe":3832}},"watchEndpoint":{"videoId":"m4TPSeTWmeo","watchEndpointSupportedOnesieConfig":{"html5PlaybackOnesieConfig":{"commonConfig":{"url":"https://rr3---sn-ab02a0nfpgxapox-bh2lk.googlevideo.com/initplayback?source=youtube\u0026oeis=1\u0026c=WEB\u0026oad=3200\u0026ovd=3200\u0026oaad=11000\u0026oavd=11000\u0026ocs=700\u0026oewis=1\u0026oputc=1\u0026ofpcc=1\u0026msp=1\u0026odepv=1\u0026id=9b84cf49e4d699ea\u0026ip=1.208.108.242\u0026initcwndbps=4563750\u0026mt=1768293652\u0026oweuc="}}}}}}}]}},"trackingParams":"CNcDEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzeP"}},{"menuNavigationItemRenderer":{"text":{"runs":[{"text":"재생목록에 저장"}]},"icon":{"iconType":"BOOKMARK_BORDER"},"navigationEndpoint":{"clickTrackingParams":"CNYDEJSsCRgGIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"url":"https://accounts.google.com/ServiceLogin?service=youtube\u0026uilel=3\u0026passive=true\u0026continue=https%3A%2F%2Fwww.youtube.com%2Fsignin%3Faction_handle_signin%3Dtrue%26app%3Ddesktop%26hl%3Dko\u0026hl=ko","webPageType":"WEB_PAGE_TYPE_UNKNOWN","rootVe":83769}},"signInEndpoint":{"nextEndpoint":{"clickTrackingParams":"CNYDEJSsCRgGIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","showSheetCommand":{"panelLoadingStrategy":{"requestTemplate":{"panelId":"PAadd_to_playlist","params":"-gYNCgttNFRQU2VUV21lbw%3D%3D"}}}}}},"trackingParams":"CNYDEJSsCRgGIhMIqL7U2pCIkgMVX5BWAR2KQzeP"}},{"menuServiceItemRenderer":{"text":{"runs":[{"text":"공유"}]},"icon":{"iconType":"SHARE"},"serviceEndpoint":{"clickTrackingParams":"CNIDEJQ1GAIiEwiovtTakIiSAxVfkFYBHYpDN4_KAQTNsvax","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/share/get_share_panel"}},"shareEntityServiceEndpoint":{"serializedShareEntity":"CgttNFRQU2VUV21lbw%3D%3D","commands":[{"clickTrackingParams":"CNIDEJQ1GAIiEwiovtTakIiSAxVfkFYBHYpDN4_KAQTNsvax","openPopupAction":{"popup":{"unifiedSharePanelRenderer":{"trackingParams":"CNUDEI5iIhMIqL7U2pCIkgMVX5BWAR2KQzeP","showLoadingSpinner":true}},"popupType":"DIALOG","beReused":true}}]}},"trackingParams":"CNIDEJQ1GAIiEwiovtTakIiSAxVfkFYBHYpDN48=","hasSeparator":true}}],"trackingParams":"CNIDEJQ1GAIiEwiovtTakIiSAxVfkFYBHYpDN48=","accessibility":{"accessibilityData":{"label":"작업 메뉴"}}}},"thumbnailOverlays":[{"thumbnailOverlayTimeStatusRenderer":{"text":{"accessibility":{"accessibilityData":{"label":"39분 25초"}},"simpleText":"39:25"},"style":"DEFAULT"}},{"thumbnailOverlayToggleButtonRenderer":{"isToggled":false,"untoggledIcon":{"iconType":"WATCH_LATER"},"toggledIcon":{"iconType":"CHECK"},"untoggledTooltip":"나중에 볼 동영상","toggledTooltip":"추가됨","untoggledServiceEndpoint":{"clickTrackingParams":"CNQDEPnnAxgBIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/browse/edit_playlist"}},"playlistEditEndpoint":{"playlistId":"WL","actions":[{"addedVideoId":"m4TPSeTWmeo","action":"ACTION_ADD_VIDEO"}]}},"toggledServiceEndpoint":{"clickTrackingParams":"CNQDEPnnAxgBIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/browse/edit_playlist"}},"playlistEditEndpoint":{"playlistId":"WL","actions":[{"action":"ACTION_REMOVE_VIDEO_BY_VIDEO_ID","removedVideoId":"m4TPSeTWmeo"}]}},"untoggledAccessibility":{"accessibilityData":{"label":"나중에 볼 동영상"}},"toggledAccessibility":{"accessibilityData":{"label":"추가됨"}},"trackingParams":"CNQDEPnnAxgBIhMIqL7U2pCIkgMVX5BWAR2KQzeP"}},{"thumbnailOverlayToggleButtonRenderer":{"untoggledIcon":{"iconType":"ADD_TO_QUEUE_TAIL"},"toggledIcon":{"iconType":"PLAYLIST_ADD_CHECK"},"untoggledTooltip":"현재 재생목록에 추가","toggledTooltip":"추가됨","untoggledServiceEndpoint":{"clickTrackingParams":"CNMDEMfsBBgCIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true}},"signalServiceEndpoint":{"signal":"CLIENT_SIGNAL","actions":[{"clickTrackingParams":"CNMDEMfsBBgCIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","addToPlaylistCommand":{"openMiniplayer":true,"videoId":"m4TPSeTWmeo","listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE","onCreateListCommand":{"clickTrackingParams":"CNMDEMfsBBgCIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/playlist/create"}},"createPlaylistServiceEndpoint":{"videoIds":["m4TPSeTWmeo"],"params":"CAQ%3D"}},"videoIds":["m4TPSeTWmeo"]}}]}},"untoggledAccessibility":{"accessibilityData":{"label":"현재 재생목록에 추가"}},"toggledAccessibility":{"accessibilityData":{"label":"추가됨"}},"trackingParams":"CNMDEMfsBBgCIhMIqL7U2pCIkgMVX5BWAR2KQzeP"}},{"thumbnailOverlayNowPlayingRenderer":{"text":{"runs":[{"text":"지금 재생 중"}]}}}]}},{"gridVideoRenderer":{"videoId":"h8bKn1nzjrQ","thumbnail":{"thumbnails":[{"url":"https://i.ytimg.com/vi/h8bKn1nzjrQ/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==\u0026rs=AOn4CLBpE8zaB7-PoxMQD2g6PSlddTyK_g","width":168,"height":94},{"url":"https://i.ytimg.com/vi/h8bKn1nzjrQ/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==\u0026rs=AOn4CLASL6KulfHXkmpy7gg1WCg2WsK1iw","width":196,"height":110},{"url":"https://i.ytimg.com/vi/h8bKn1nzjrQ/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=\u0026rs=AOn4CLCxuiX2ZU1Jlj8ea8WRAzJDiSTB6w","width":246,"height":138},{"url":"https://i.ytimg.com/vi/h8bKn1nzjrQ/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=\u0026rs=AOn4CLBoQ_egRvmSP2BzqhT557QfFHBYXA","width":336,"height":188}]},"title":{"accessibility":{"accessibilityData":{"label":"Document Search in .NET with Kernel Memory 10분 7초"}},"simpleText":"Document Search in .NET with Kernel Memory"},"publishedTimeText":{"simpleText":"7개월 전"},"viewCountText":{"simpleText":"조회수 803회"},"navigationEndpoint":{"clickTrackingParams":"CMwDEJQ1GAMiEwiovtTakIiSAxVfkFYBHYpDN48yCmctaGlnaC1jcnZaGFVDdHptejZCZkpxRHgtOElIa2g2b3Z3QZoBBRDyOBhmygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"url":"/watch?v=h8bKn1nzjrQ","webPageType":"WEB_PAGE_TYPE_WATCH","rootVe":3832}},"watchEndpoint":{"videoId":"h8bKn1nzjrQ","watchEndpointSupportedOnesieConfig":{"html5PlaybackOnesieConfig":{"commonConfig":{"url":"https://rr7---sn-ab02a0nfpgxapox-bh26z.googlevideo.com/initplayback?source=youtube\u0026oeis=1\u0026c=WEB\u0026oad=3200\u0026ovd=3200\u0026oaad=11000\u0026oavd=11000\u0026ocs=700\u0026oewis=1\u0026oputc=1\u0026ofpcc=1\u0026msp=1\u0026odepv=1\u0026id=87c6ca9f59f38eb4\u0026ip=1.208.108.242\u0026initcwndbps=4393750\u0026mt=1768293652\u0026oweuc="}}}}},"trackingParams":"CMwDEJQ1GAMiEwiovtTakIiSAxVfkFYBHYpDN49AtJ3Oz_XTsuOHAQ==","shortViewCountText":{"accessibility":{"accessibilityData":{"label":"조회수 803회"}},"simpleText":"조회수 803회"},"menu":{"menuRenderer":{"items":[{"menuServiceItemRenderer":{"text":{"runs":[{"text":"현재 재생목록에 추가"}]},"icon":{"iconType":"ADD_TO_QUEUE_TAIL"},"serviceEndpoint":{"clickTrackingParams":"CNEDEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true}},"signalServiceEndpoint":{"signal":"CLIENT_SIGNAL","actions":[{"clickTrackingParams":"CNEDEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","addToPlaylistCommand":{"openMiniplayer":true,"videoId":"h8bKn1nzjrQ","listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE","onCreateListCommand":{"clickTrackingParams":"CNEDEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/playlist/create"}},"createPlaylistServiceEndpoint":{"videoIds":["h8bKn1nzjrQ"],"params":"CAQ%3D"}},"videoIds":["h8bKn1nzjrQ"],"videoCommand":{"clickTrackingParams":"CNEDEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"url":"/watch?v=h8bKn1nzjrQ","webPageType":"WEB_PAGE_TYPE_WATCH","rootVe":3832}},"watchEndpoint":{"videoId":"h8bKn1nzjrQ","watchEndpointSupportedOnesieConfig":{"html5PlaybackOnesieConfig":{"commonConfig":{"url":"https://rr7---sn-ab02a0nfpgxapox-bh26z.googlevideo.com/initplayback?source=youtube\u0026oeis=1\u0026c=WEB\u0026oad=3200\u0026ovd=3200\u0026oaad=11000\u0026oavd=11000\u0026ocs=700\u0026oewis=1\u0026oputc=1\u0026ofpcc=1\u0026msp=1\u0026odepv=1\u0026id=87c6ca9f59f38eb4\u0026ip=1.208.108.242\u0026initcwndbps=4393750\u0026mt=1768293652\u0026oweuc="}}}}}}}]}},"trackingParams":"CNEDEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzeP"}},{"menuNavigationItemRenderer":{"text":{"runs":[{"text":"재생목록에 저장"}]},"icon":{"iconType":"BOOKMARK_BORDER"},"navigationEndpoint":{"clickTrackingParams":"CNADEJSsCRgGIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"url":"https://accounts.google.com/ServiceLogin?service=youtube\u0026uilel=3\u0026passive=true\u0026continue=https%3A%2F%2Fwww.youtube.com%2Fsignin%3Faction_handle_signin%3Dtrue%26app%3Ddesktop%26hl%3Dko\u0026hl=ko","webPageType":"WEB_PAGE_TYPE_UNKNOWN","rootVe":83769}},"signInEndpoint":{"nextEndpoint":{"clickTrackingParams":"CNADEJSsCRgGIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","showSheetCommand":{"panelLoadingStrategy":{"requestTemplate":{"panelId":"PAadd_to_playlist","params":"-gYNCgtoOGJLbjFuempyUQ%3D%3D"}}}}}},"trackingParams":"CNADEJSsCRgGIhMIqL7U2pCIkgMVX5BWAR2KQzeP"}},{"menuServiceItemRenderer":{"text":{"runs":[{"text":"공유"}]},"icon":{"iconType":"SHARE"},"serviceEndpoint":{"clickTrackingParams":"CMwDEJQ1GAMiEwiovtTakIiSAxVfkFYBHYpDN4_KAQTNsvax","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/share/get_share_panel"}},"shareEntityServiceEndpoint":{"serializedShareEntity":"CgtoOGJLbjFuempyUQ%3D%3D","commands":[{"clickTrackingParams":"CMwDEJQ1GAMiEwiovtTakIiSAxVfkFYBHYpDN4_KAQTNsvax","openPopupAction":{"popup":{"unifiedSharePanelRenderer":{"trackingParams":"CM8DEI5iIhMIqL7U2pCIkgMVX5BWAR2KQzeP","showLoadingSpinner":true}},"popupType":"DIALOG","beReused":true}}]}},"trackingParams":"CMwDEJQ1GAMiEwiovtTakIiSAxVfkFYBHYpDN48=","hasSeparator":true}}],"trackingParams":"CMwDEJQ1GAMiEwiovtTakIiSAxVfkFYBHYpDN48=","accessibility":{"accessibilityData":{"label":"작업 메뉴"}}}},"thumbnailOverlays":[{"thumbnailOverlayTimeStatusRenderer":{"text":{"accessibility":{"accessibilityData":{"label":"10분 7초"}},"simpleText":"10:07"},"style":"DEFAULT"}},{"thumbnailOverlayToggleButtonRenderer":{"isToggled":false,"untoggledIcon":{"iconType":"WATCH_LATER"},"toggledIcon":{"iconType":"CHECK"},"untoggledTooltip":"나중에 볼 동영상","toggledTooltip":"추가됨","untoggledServiceEndpoint":{"clickTrackingParams":"CM4DEPnnAxgBIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/browse/edit_playlist"}},"playlistEditEndpoint":{"playlistId":"WL","actions":[{"addedVideoId":"h8bKn1nzjrQ","action":"ACTION_ADD_VIDEO"}]}},"toggledServiceEndpoint":{"clickTrackingParams":"CM4DEPnnAxgBIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/browse/edit_playlist"}},"playlistEditEndpoint":{"playlistId":"WL","actions":[{"action":"ACTION_REMOVE_VIDEO_BY_VIDEO_ID","removedVideoId":"h8bKn1nzjrQ"}]}},"untoggledAccessibility":{"accessibilityData":{"label":"나중에 볼 동영상"}},"toggledAccessibility":{"accessibilityData":{"label":"추가됨"}},"trackingParams":"CM4DEPnnAxgBIhMIqL7U2pCIkgMVX5BWAR2KQzeP"}},{"thumbnailOverlayToggleButtonRenderer":{"untoggledIcon":{"iconType":"ADD_TO_QUEUE_TAIL"},"toggledIcon":{"iconType":"PLAYLIST_ADD_CHECK"},"untoggledTooltip":"현재 재생목록에 추가","toggledTooltip":"추가됨","untoggledServiceEndpoint":{"clickTrackingParams":"CM0DEMfsBBgCIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true}},"signalServiceEndpoint":{"signal":"CLIENT_SIGNAL","actions":[{"clickTrackingParams":"CM0DEMfsBBgCIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","addToPlaylistCommand":{"openMiniplayer":true,"videoId":"h8bKn1nzjrQ","listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE","onCreateListCommand":{"clickTrackingParams":"CM0DEMfsBBgCIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/playlist/create"}},"createPlaylistServiceEndpoint":{"videoIds":["h8bKn1nzjrQ"],"params":"CAQ%3D"}},"videoIds":["h8bKn1nzjrQ"]}}]}},"untoggledAccessibility":{"accessibilityData":{"label":"현재 재생목록에 추가"}},"toggledAccessibility":{"accessibilityData":{"label":"추가됨"}},"trackingParams":"CM0DEMfsBBgCIhMIqL7U2pCIkgMVX5BWAR2KQzeP"}},{"thumbnailOverlayNowPlayingRenderer":{"text":{"runs":[{"text":"지금 재생 중"}]}}}]}},{"gridVideoRenderer":{"videoId":"rcVSkUgipc0","thumbnail":{"thumbnails":[{"url":"https://i.ytimg.com/vi/rcVSkUgipc0/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==\u0026rs=AOn4CLB7gZw3yZFfcpkh_h0-gtO7zVzqMQ","width":168,"height":94},{"url":"https://i.ytimg.com/vi/rcVSkUgipc0/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==\u0026rs=AOn4CLA9Ww4bZ6OD5RdnsLJftu_Igv573A","width":196,"height":110},{"url":"https://i.ytimg.com/vi/rcVSkUgipc0/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=\u0026rs=AOn4CLC-ossWxgCy1MrdY35JFdk1L02NOw","width":246,"height":138},{"url":"https://i.ytimg.com/vi/rcVSkUgipc0/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=\u0026rs=AOn4CLBCddlIeZUmtTBeWtfOC32CGdsXIQ","width":336,"height":188}]},"title":{"accessibility":{"accessibilityData":{"label":"Identifying Bugfix Commits: Project Overview 18분"}},"simpleText":"Identifying Bugfix Commits: Project Overview"},"publishedTimeText":{"simpleText":"1년 전"},"viewCountText":{"simpleText":"조회수 259회"},"navigationEndpoint":{"clickTrackingParams":"CMYDEJQ1GAQiEwiovtTakIiSAxVfkFYBHYpDN48yCmctaGlnaC1jcnZaGFVDdHptejZCZkpxRHgtOElIa2g2b3Z3QZoBBRDyOBhmygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"url":"/watch?v=rcVSkUgipc0","webPageType":"WEB_PAGE_TYPE_WATCH","rootVe":3832}},"watchEndpoint":{"videoId":"rcVSkUgipc0","watchEndpointSupportedOnesieConfig":{"html5PlaybackOnesieConfig":{"commonConfig":{"url":"https://rr2---sn-ab02a0nfpgxapox-bh2zz.googlevideo.com/initplayback?source=youtube\u0026oeis=1\u0026c=WEB\u0026oad=3200\u0026ovd=3200\u0026oaad=11000\u0026oavd=11000\u0026ocs=700\u0026oewis=1\u0026oputc=1\u0026ofpcc=1\u0026msp=1\u0026odepv=1\u0026id=adc552914822a5cd\u0026ip=1.208.108.242\u0026initcwndbps=3713750\u0026mt=1768293652\u0026oweuc="}}}}},"trackingParams":"CMYDEJQ1GAQiEwiovtTakIiSAxVfkFYBHYpDN49AzcuKwZTS1OKtAQ==","shortViewCountText":{"accessibility":{"accessibilityData":{"label":"조회수 259회"}},"simpleText":"조회수 259회"},"menu":{"menuRenderer":{"items":[{"menuServiceItemRenderer":{"text":{"runs":[{"text":"현재 재생목록에 추가"}]},"icon":{"iconType":"ADD_TO_QUEUE_TAIL"},"serviceEndpoint":{"clickTrackingParams":"CMsDEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true}},"signalServiceEndpoint":{"signal":"CLIENT_SIGNAL","actions":[{"clickTrackingParams":"CMsDEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","addToPlaylistCommand":{"openMiniplayer":true,"videoId":"rcVSkUgipc0","listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE","onCreateListCommand":{"clickTrackingParams":"CMsDEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/playlist/create"}},"createPlaylistServiceEndpoint":{"videoIds":["rcVSkUgipc0"],"params":"CAQ%3D"}},"videoIds":["rcVSkUgipc0"],"videoCommand":{"clickTrackingParams":"CMsDEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"url":"/watch?v=rcVSkUgipc0","webPageType":"WEB_PAGE_TYPE_WATCH","rootVe":3832}},"watchEndpoint":{"videoId":"rcVSkUgipc0","watchEndpointSupportedOnesieConfig":{"html5PlaybackOnesieConfig":{"commonConfig":{"url":"https://rr2---sn-ab02a0nfpgxapox-bh2zz.googlevideo.com/initplayback?source=youtube\u0026oeis=1\u0026c=WEB\u0026oad=3200\u0026ovd=3200\u0026oaad=11000\u0026oavd=11000\u0026ocs=700\u0026oewis=1\u0026oputc=1\u0026ofpcc=1\u0026msp=1\u0026odepv=1\u0026id=adc552914822a5cd\u0026ip=1.208.108.242\u0026initcwndbps=3713750\u0026mt=1768293652\u0026oweuc="}}}}}}}]}},"trackingParams":"CMsDEP6YBBgFIhMIqL7U2pCIkgMVX5BWAR2KQzeP"}},{"menuNavigationItemRenderer":{"text":{"runs":[{"text":"재생목록에 저장"}]},"icon":{"iconType":"BOOKMARK_BORDER"},"navigationEndpoint":{"clickTrackingParams":"CMoDEJSsCRgGIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"url":"https://accounts.google.com/ServiceLogin?service=youtube\u0026uilel=3\u0026passive=true\u0026continue=https%3A%2F%2Fwww.youtube.com%2Fsignin%3Faction_handle_signin%3Dtrue%26app%3Ddesktop%26hl%3Dko\u0026hl=ko","webPageType":"WEB_PAGE_TYPE_UNKNOWN","rootVe":83769}},"signInEndpoint":{"nextEndpoint":{"clickTrackingParams":"CMoDEJSsCRgGIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","showSheetCommand":{"panelLoadingStrategy":{"requestTemplate":{"panelId":"PAadd_to_playlist","params":"-gYNCgtyY1ZTa1VnaXBjMA%3D%3D"}}}}}},"trackingParams":"CMoDEJSsCRgGIhMIqL7U2pCIkgMVX5BWAR2KQzeP"}},{"menuServiceItemRenderer":{"text":{"runs":[{"text":"공유"}]},"icon":{"iconType":"SHARE"},"serviceEndpoint":{"clickTrackingParams":"CMYDEJQ1GAQiEwiovtTakIiSAxVfkFYBHYpDN4_KAQTNsvax","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/share/get_share_panel"}},"shareEntityServiceEndpoint":{"serializedShareEntity":"CgtyY1ZTa1VnaXBjMA%3D%3D","commands":[{"clickTrackingParams":"CMYDEJQ1GAQiEwiovtTakIiSAxVfkFYBHYpDN4_KAQTNsvax","openPopupAction":{"popup":{"unifiedSharePanelRenderer":{"trackingParams":"CMkDEI5iIhMIqL7U2pCIkgMVX5BWAR2KQzeP","showLoadingSpinner":true}},"popupType":"DIALOG","beReused":true}}]}},"trackingParams":"CMYDEJQ1GAQiEwiovtTakIiSAxVfkFYBHYpDN48=","hasSeparator":true}}],"trackingParams":"CMYDEJQ1GAQiEwiovtTakIiSAxVfkFYBHYpDN48=","accessibility":{"accessibilityData":{"label":"작업 메뉴"}}}},"thumbnailOverlays":[{"thumbnailOverlayTimeStatusRenderer":{"text":{"accessibility":{"accessibilityData":{"label":"18분 58초"}},"simpleText":"18:58"},"style":"DEFAULT"}},{"thumbnailOverlayToggleButtonRenderer":{"isToggled":false,"untoggledIcon":{"iconType":"WATCH_LATER"},"toggledIcon":{"iconType":"CHECK"},"untoggledTooltip":"나중에 볼 동영상","toggledTooltip":"추가됨","untoggledServiceEndpoint":{"clickTrackingParams":"CMgDEPnnAxgBIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/browse/edit_playlist"}},"playlistEditEndpoint":{"playlistId":"WL","actions":[{"addedVideoId":"rcVSkUgipc0","action":"ACTION_ADD_VIDEO"}]}},"toggledServiceEndpoint":{"clickTrackingParams":"CMgDEPnnAxgBIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/browse/edit_playlist"}},"playlistEditEndpoint":{"playlistId":"WL","actions":[{"action":"ACTION_REMOVE_VIDEO_BY_VIDEO_ID","removedVideoId":"rcVSkUgipc0"}]}},"untoggledAccessibility":{"accessibilityData":{"label":"나중에 볼 동영상"}},"toggledAccessibility":{"accessibilityData":{"label":"추가됨"}},"trackingParams":"CMgDEPnnAxgBIhMIqL7U2pCIkgMVX5BWAR2KQzeP"}},{"thumbnailOverlayToggleButtonRenderer":{"untoggledIcon":{"iconType":"ADD_TO_QUEUE_TAIL"},"toggledIcon":{"iconType":"PLAYLIST_ADD_CHECK"},"untoggledTooltip":"현재 재생목록에 추가","toggledTooltip":"추가됨","untoggledServiceEndpoint":{"clickTrackingParams":"CMcDEMfsBBgCIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true}},"signalServiceEndpoint":{"signal":"CLIENT_SIGNAL","actions":[{"clickTrackingParams":"CMcDEMfsBBgCIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","addToPlaylistCommand":{"openMiniplayer":true,"videoId":"rcVSkUgipc0","listType":"PLAYLIST_EDIT_LIST_TYPE_QUEUE","onCreateListCommand":{"clickTrackingParams":"CMcDEMfsBBgCIhMIqL7U2pCIkgMVX5BWAR2KQzePygEEzbL2sQ==","commandMetadata":{"webCommandMetadata":{"sendPost":true,"apiUrl":"/youtubei/v1/playlist/create"}},"createPlaylistServiceEndpoint":{"videoIds":["rcVSkUgipc0"],"params":"CAQ%3D"}},"videoIds":["rcVSkUgipc0"]}}]}},"untoggledAccessibility":{"accessibilityData":{"label":"현재 재생목록에 추가"}},"toggledAccessibility":{"accessibilityData":{"label":"추가됨"}},"trackingParams":"CMcDEMfsBBgCIhMIqL7U2pCIkgMVX5BWAR2KQzeP"}},{"thumbnailOverlayNowPlayingRenderer":{"text":{"runs":[{"text":"지금 재생 중"}]}}}]}},{"gridVideoRenderer":{"videoId":"uJnzN0Y5MKo","thumbnail":{"thumbnails":[{"url":"https://i.ytimg.com/vi/uJnzN0Y5MKo/hqdefault.jpg?sqp=-oaymwEiCKgBEF5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==\u0026rs=AOn4CLBjbqiftJl_BtmIVCbU1t6vGYOlFg","width":168,"height":94},{"url":"https://i.ytimg.com/vi/uJnzN0Y5MKo/hqdefault.jpg?sqp=-oaymwEiCMQBEG5IWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==\u0026rs=AOn4CLBZXYqoouNbQmaDNsD2_wu3Gvm4Qg","width":196,"height":110},{"url":"https://i.ytimg.com/vi/uJnzN0Y5MKo/hqdefault.jpg?sqp=-oaymwEjCPYBEIoBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=\u0026rs=AOn4CLBqmb87Uf7Zr11ejgdns48e8PmUKw","width":246,"height":138},{"url":"https://i.ytimg.com/vi/uJnzN0Y5MKo/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE
2026-01-13T08:47:43
https://business.x.com/help/account-setup/professional-accounts.html
Professional Accounts Skip to main content Business <path opacity="0" d="M0 0h24v24H0z" /> <path d="M17.207 11.293l-7.5-7.5c-.39-.39-1.023-.39-1.414 0s-.39 1.023 0 1.414L15.086 12l-6.793 6.793c-.39.39-.39 1.023 0 1.414.195.195.45.293.707.293s.512-.098.707-.293l7.5-7.5c.39-.39.39-1.023 0-1.414z" /> </svg>" data-icon-arrow-left="<svg width="28px" height="28px" viewbox="0 0 28 28" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="none" class="twtr-icon u01b__icon-arrow-left"> <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round"> <g transform="translate(-1216.000000, -298.000000)" stroke-width="2.25"> <g transform="translate(1200.000000, 282.000000)"> <g transform="translate(17.000000, 17.000000)"> <path d="M0.756410256,12.8589744 L25.7179487,12.8589744"></path> <path d="M13.2371795,25.3397436 L25.7179487,12.8589744"></path> <path d="M13.2371795,12.4807692 L25.3397436,0.378205128" transform="translate(19.288462, 6.429487) rotate(-90.000000) translate(-19.288462, -6.429487) "></path> </g> </g> </g> </g> </svg>" data-icon-chevron-down="<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" aria-hidden="true" focusable="false" role="none" class="twtr-icon"> <path opacity="0" d="M0 0h24v24H0z" /> <path d="M20.207 7.043c-.39-.39-1.023-.39-1.414 0L12 13.836 5.207 7.043c-.39-.39-1.023-.39-1.414 0s-.39 1.023 0 1.414l7.5 7.5c.195.195.45.293.707.293s.512-.098.707-.293l7.5-7.5c.39-.39.39-1.023 0-1.414z" /> </svg>" data-icon-close="<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewbox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve" aria-hidden="true" focusable="false" role="none" class="twtr-icon--md"> <g> <g> <defs> <rect id="SVGID_1_" x="-468" y="-1360" width="1440" height="3027" /> </defs> <clippath id="SVGID_2_"> <use xlink:href="#SVGID_1_" style="overflow:visible;" /> </clippath> </g> </g> <rect x="-468" y="-1360" class="st0" width="1440" height="3027" style="fill:rgb(0,0,0,0);stroke-width:3;stroke:rgb(0,0,0)" /> <path d="M13.4,12l5.8-5.8c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0L12,10.6L6.2,4.8c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4 l5.8,5.8l-5.8,5.8c-0.4,0.4-0.4,1,0,1.4c0.2,0.2,0.4,0.3,0.7,0.3s0.5-0.1,0.7-0.3l5.8-5.8l5.8,5.8c0.2,0.2,0.5,0.3,0.7,0.3 s0.5-0.1,0.7-0.3c0.4-0.4,0.4-1,0-1.4L13.4,12z" /> </svg>" data-icon-search="<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" aria-hidden="true" focusable="false" role="none" class="twtr-icon"> <path opacity="0" d="M0 0h24v24H0z" /> <path d="M22.06 19.94l-3.73-3.73C19.38 14.737 20 12.942 20 11c0-4.97-4.03-9-9-9s-9 4.03-9 9 4.03 9 9 9c1.943 0 3.738-.622 5.21-1.67l3.73 3.73c.292.294.676.44 1.06.44s.768-.146 1.06-.44c.586-.585.586-1.535 0-2.12zM11 17c-3.308 0-6-2.692-6-6s2.692-6 6-6 6 2.692 6 6-2.692 6-6 6z" /> </svg>" data-icon-search-submit="<svg width="21" height="21" viewbox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="none" class="twtr-icon"> <path fill-rule="evenodd" clip-rule="evenodd" d="M16.33 14.21L20.06 17.94C20.646 18.525 20.646 19.475 20.06 20.06C19.768 20.354 19.384 20.5 19 20.5C18.616 20.5 18.232 20.354 17.94 20.06L14.21 16.33C12.738 17.378 10.943 18 9 18C4.03 18 0 13.97 0 9C0 4.03 4.03 0 9 0C13.97 0 18 4.03 18 9C18 10.942 17.38 12.737 16.33 14.21ZM3 9C3 12.308 5.692 15 9 15C12.308 15 15 12.308 15 9C15 5.692 12.308 3 9 3C5.692 3 3 5.692 3 9Z" fill="white" /> </svg>" data-bg-color="white-neutral" data-root-page-title="Business" data-search-placeholder="Search" data-search-query-key="q" data-search-query-type="?" data-scribe-element="FX4D" data-scribe-section="u01b-navigation" data-profile-enabled="true" data-cta-link-new-tab="false"> Professional Accounts <path opacity="0" d="M0 0h24v24H0z"/> <path d="M20.207 14.543l-7.5-7.5c-.39-.39-1.023-.39-1.414 0l-7.5 7.5c-.39.39-.39 1.023 0 1.414.195.195.45.293.707.293s.512-.098.707-.293L12 9.164l6.793 6.793c.195.195.45.293.707.293s.512-.098.707-.293c.39-.39.39-1.023 0-1.414z"/> </svg> " data-ellipses-svg="<svg width="10" height="2" viewBox="0 0 10 2" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"> <path d="M0.119995 1.77397H1.674V0.219971H0.119995V1.77397Z" fill="#B6C4CE"/> <path d="M4.21648 1.77397H5.77048V0.219971H4.21648V1.77397Z" fill="#B6C4CE"/> <path d="M8.31296 1.77397H9.86696V0.219971H8.31296V1.77397Z" fill="#B6C4CE"/> </svg> " data-theme-color="light" data-page-title="Professional Accounts" data-breadcrumbs-json="[ { "title": "Help Center", "path": "https://business.x.com/en/help" }, { "title": "Get started in your ads account", "path": "https://business.x.com/en/help/account-setup" }, { "title": "Professional Accounts", "path": "https://business.x.com/en/help/account-setup/professional-accounts" } ]"> Unlock a suite of tools available exclusively to Professionals Professional Accounts allow businesses, brands, creators, and publishers to have a unique and clearly defined presence on the platform and the ability to grow and strengthen their presence on X. Professional Accounts are a gateway to a wide range of tools not available to non-professionals, which include: Professional Home , a centralized dashboard that gives professionals the ability to track performance, discover product offerings, tap into additional resources and drive performance. Professional Category , which allows professionals to showcase what kind of professional they identify as directly on their profile. Profile Spotlights , a dedicated space on a professional’s profile to showcase what’s most important to them (more details about Profile Spotlights below).   X Shopping , a suite of products available to professionals who want to sell their goods directly on X. X Ads and Quick Promote And more to come! Above is a depiction of how to convert to a Professional Account. You can get the process started by clicking  here  (Note: you must already be logged into your X account to access this page). Professional Home Profile Spotlights Spotlight Configuration Page FAQ   Professional Home Profile Spotlights Spotlight Configuration Page FAQ   Professional Home Professional Home is a centralized resource hub that gives professionals the ability to view analytics, discover the latest product offerings, drive performance, and tap into additional resources. In its first iteration, Professional Home provides resources and guidance on: Account analytics Profile Spotlights Making more connections Promoting Posts via X Ads products Monetization Additional resources Professional Home FAQ   Profile Spotlights By converting to a Professional Account, you can add legitimacy to your business’ presence on X Professional Accounts currently offers four spotlights: Location Spotlight,  Shop Spotlight , Mobile App Spotlight, and Link Spotlight. To qualify for a Professional Account, your account must adhere to the following requirements: You must not have a history of repeatedly violating the X User Agreement. You must have a complete profile with an account name, a bio, and a profile picture. Your authentic identity must be clear on your profile. Your profile must not feature another person’s identity, brand, or organization, nor does it use a fake identity intended to deceive others. Profiles that feature animals or fictional characters are ineligible unless directly affiliated with your brand or organization. Parody and fan accounts are not eligible for Professional Accounts. Location Spotlight Shop Spotlight Mobile App Spotlight Link Spotlight Location Spotlight Shop Spotlight Mobile App Spotlight Link Spotlight   Location Spotlight The  Location Spotlight  allows you to display your business’ location, hours of operation, and additional contact methods. Features of Location Spotlight include: Business location : Listed and shown on a small map in the profile spotlight. People can tap on the location map/listing to open Google Maps, or their default map app, for easier navigation to the business’ space. Hours of operation : This field is optional but can be customized to showcase the days and times businesses want people to visit their location. Methods of contact information : When the contact button in the spotlight is enabled, it can kick off one or more of the following directly to the business: Phone call  Text message  X Direct Message  Email Location Spotlight FAQ   US Only Shop Spotlight The  Shop Spotlight on your account (currently available to some  qualifying accounts ) is a dedicated space at the top of a profile where businesses can showcase their products. This spotlight is meant to enable serendipitous shopping moments right on X. Features of Shop Spotlight include: A dedicated space to showcase products  at the top of a Professional Account where businesses can showcase their products.When this spotlight is enabled, potential customers can scroll through the carousel of products and tap through on a single product to learn more and purchase – seamlessly in an in-app browser, without having to leave X. Shop Spotlight FAQ   US Only Mobile App Spotlight The Mobile App Spotlight (currently available to US-based professionals) provides mobile developers and professionals the ability to display their associated app at the top of their account to encourage app downloads. By enabling this spotlight: Professionals have the ability to display mobile applications that are available in the iOS AppStore and Android Playstore.  Users on iOS viewing a professional’s Mobile App Spotlight will see the iOS AppStore link to download the app to their phone, while users on Android will see the Android PlayStore link.  Mobile App Spotlight FAQ   US Only Link Spotlight The Link Spotlight (currently available to US-based professionals) allows professionals to display an interactive button on their account to drive potential customers to take the action they care about most. To enable the Link Spotlight, professionals will be prompted to enter the url of their choosing and pair it with one of the Call to Action prompts included in a drop-down menu. Professionals may choose from the following list of CTA options for their Link Spotlight: Listen now See live Watch now Stream live Read now View Menu Book an appointment Make a reservation Note: Only URLs from an allowlist of domains may be added to Link Spotlight (more info visit the FAQ section below). Link Spotlight FAQ   Spotlight Configuration Page (SCP) For professionals who are unsure which spotlight is right for their business, the Spotlight Configuration Page acts as a one-stop-shop for professionals to test out and discover new spotlights that become available and simplify the enablement of a spotlight on their profile.   Frequently Asked Questions Professional Account FAQ Professional Home FAQ Location Spotlight FAQ Mobile App Spotlight FAQ Shop Spotlight FAQ Link Spotlight FAQ Professional Account FAQ Professional Home FAQ Location Spotlight FAQ Mobile App Spotlight FAQ Shop Spotlight FAQ Link Spotlight FAQ   Professional Account FAQs Who are professionals? Professionals are any person or entity who uses X for commercial purposes. X is home to many professionals, ranging from traditional businesses to creators, publishers, and developers. Anyone who uses X for work and their livelihood is a professional. What are the benefits of a Professional Account? Professional Accounts allow users to access advanced professional tools, like Professional Profiles, X Shopping, and Quick Promote. How much do Professional Accounts cost? Converting to a Professional Account is completely free.  Who can use a Professional Account? To qualify for a Professional Account, user accounts must adhere to the following requirements: You must not have a history of repeatedly violating the X User Agreement. You must have a complete profile with an account name, a bio, and a profile picture. Your authentic identity must be clear on your profile. Your profile must not feature the identity of another person, brand, or organization, nor does it use a fake identity that is intended to deceive others. Profiles that feature animals or fictional characters are ineligible unless directly affiliated with your brand or organization. Parody and fan accounts are not eligible for Professional Accounts. How can I get a Professional Account? Follow these steps to switch your existing account to a Professional Account. 1. Go to either your profile settings or swipe open the sidebar when on your Home timeline in the app. If you’re in the sidebar, scroll until you see the “X for Professionals” tab and select it. If you’re in your profile settings, scroll until you see “Switch to Professional” and select it. 2. Once you've entered the conversion flow, select "Get Started". 3. Select a category for your Professional Account and select “Next.”  Remember to search for your most relevant category if you don’t immediately see it in the list. 4. Choose either “Business” or “Creator” and select “Next.”  Remember to select whichever option is closest to how you identify as a professional on X.  5. Congratulations! You are now a Professional on X! After you’ve converted to a Professional Account, select any of the options listed on the final menu to learn more about the tools and features that are now available to you. Customize your profile : This prompt will bring you to your profile settings. From here, you can enable and update your Professional Category and configure the Professional Profile your account qualifies for.  Pick Topics to follow : This prompt will bring you to the Topics selector. We recommend you review the topics lists and follow any relevant to your brand or business.    Promote a post : This prompt will enable you to learn more about Quick Promote and kick off a campaign.  If none of these options interest you, tap “Skip for now”   Remember, you can always revisit the “X for Professionals” menu by swiping the sidebar open from your Home timeline Can I designate my account a Professional Account upon account sign-up? No, at this time, you can only convert an existing X account into a Professional Account. Can I switch my account back to a personal account after converting? Yes, you can convert back to a personal account at any time.  Follow these steps to convert: 1. Go to your profile and select “Edit Profile.” 2. Select “Edit Professional Profile”  3.Select “Switch Account Type” 4. Select the type of account you’d like from the menu of options Can I change my identification as a business or a creator after converting? Yes, you can convert back to a personal account at any time.  Follow these steps to convert: 1. Go to your profile and select “Edit Profile.” 2. Select “Edit Professional Profile”  3. Select “Switch Account Type” 4. Select the type of account you’d like from the menu of options Can I target Professional Accounts in my ad campaigns? No, we do not have any immediate plans to build Professional Account targeting. Can I sync my phone contacts with my X Professional Account? If you didn't sync your phone contacts when you created your X profile, you can do so by visiting the X for Professionals welcome screen. To get here, visit the X for Professionals tab located in the left navigation menu of the app, click on the “make more connections” section of the welcome screen, then follow the prompts on the subsequent pages to sync and follow your contacts who have a presence on X. How do I sync my contacts on X? To add your contacts, visit the X for Professionals tab located in the left navigation menu of the app, click on the “make more connections” section of the welcome screen, then follow the prompts on the subsequent pages to sync and follow your contacts who have a presence on X. Why should I sync my contacts on X? Syncing your contacts is one way to find people to follow and build your timeline.   Professional Home FAQs How can I access Professional Home? Those who have converted to a X Professional Account can access the Professional Home and see information relevant to their account. Professional Home is gated behind a X Professional Account. What does Professional Home do? Professional Home is a centralized resource hub within X for Professionals; designed for Professionals to discover the most relevant tools and information necessary for helping them succeed on X. In its first iteration, Professional Home will provide professionals with resources and guidance on: Account analytics over the past 28 days Leveraging existing Professional tools Making more connections on X Promoting their Posts via our Quick Promote Product Monetizing their X account Accessing additional educational resources Why can’t I see Professional Home? There may be a few reasons why you are unable to see Professional Home: You must have a X Professional Account to access Professional Home You must be logged into your X Professional Account  Professional Home has not yet rolled out to you - keep checking back to see if you have access! What else will be launched within Professional Home? Our plan in future iterations of the product include: providing more granular analytics and insights, information about top posts, top followers, information about new product launches and more personalized experiences based on your professional identity (creator/business). Where is Professional Home available? Today, the first iteration of Professional Home is available globally on desktop. Why don’t I see Professional Home when I’m logged into my Professional Account? Not all users have access to Professional Home while we are still testing the product. We’re working on it and keep checking back to see if you have access.   Location Spotlight Where is Location Spotlight available? The Location spotlight is available to professionals globally. How can I update the information on my Location Spotlight? You can update any of the information in your Location Spotlight, directly in the X app. Follow these steps to make changes: 1. Open the X app and navigate to your X profile 2. Tap “Edit profile” in the top-right corner, then navigate to “Edit professional profile” or “Switch to Professional” 3. From there you can edit the information in your Location Spotlight by tapping “Professional Spotlight” and then “Edit” 4. You can update the information in your Location Spotlight by tapping on the field you’d wish to update.  5. When you’re done updating, tap “Save” and return to your profile to ensure you’re happy with the new information in your Location Spotlight. How can I remove Location Spotlight from my profile? You can remove your Location Spotlight at anytime by following these steps:  1. Open the X app and navigate to your X profile. 2. Click “Edit profile” in the top-right corner, then navigate to “Edit professional profile” > “Profile Spotlight”. 3. From there you can toggle your Location Spotlight on or off at anytime.     Mobile App Spotlight What is Mobile App Spotlight? The Mobile App Spotlight provides mobile developers and professionals the ability to display their associated app at the top of their account to encourage app downloads. Developers will have the ability to display apps that are available in the iOS AppStore and Android PlayStore. How many applications can I display on my Professional Account at one time? You can display one app from the iOS AppStore and one app from the Android Playstore at a time.  These apps may be for the same service or product. If someone visits my page on their desktop, how will they be directed to download the app(s) I have chosen to display? The Mobile App Spotlight is available only on iOS and Android at this time. It is not currently available on desktop. How do I enable Mobile App Spotlight on my X Professional Account? To enable the Mobile App Spotlight, professionals will need to: Select “Edit Profile” button on their Professional Account  Select “Edit Professional profile” on the following screen Select “Profile Spotlight” Toggle on the ‘Mobile App’ spotlight from the list of available Profile Spotlights  Follow the subsequent prompts to link an app from the iOS and/or Android store.  Confirm and save the app preview that was retrieved from the AppStore or PlayStore.  Why can’t I access the Mobile App Spotlight? There may be a few reasons why you are unable to access the Mobile App Spotlight: You must have a X Professional Account to access the Mobile App Spotlight You must be logged into your X Professional Account to enable a spotlight on your account Mobile App Spotlight has not yet rolled out to you - it is currently available to Professionals in the United States. Why doesn’t the application I want to display in my Mobile App Spotlight work? This could be happening for a few reasons: The app store link that was entered may be incorrect. Go to the app store, copy and paste the entire link to the mobile app into the app store field in the Mobile App Spotlight set up flow. The app store link may be for the wrong app store. Make sure the iOS app store link is in the iOS app store field and the Android app store link is in the Android app store field. Our service may not be able to find the app in the app store. Try accessing the app from the official app store to make sure it is available for download. Our service may not have stored the app’s information if it is a new app. Please wait 5 minutes while we fetch the information and try again. Where is Mobile App Spotlight available? Today, the Mobile App Spotlight is available to Professionals located in the United States on iOS and Android. Why don’t I see Mobile App Spotlight when I’m logged into my Professional Account? Not all users have access to Mobile App Spotlight at this time. We are currently testing this product with professionals in the United States, but we have plans to expand access to more professionals in the coming months. How will the Mobile App Spotlight appear to users who are on an Android or iPhone if I include links to my applications from both stores? iOS users will see the iOS application and Android users will see the Android version. Can I display the same application on different X Professional Accounts that I manage? Yes, mobile developers will be able to display the same app link on multiple X Professional Accounts. If my app is only available in the iOS AppStore and a user visits my account on Android, does my app still appear for them? Yes, The Mobile App Spotlight will display, but will notify the user that the app is only available on iOS (or Android, depending on the scenario being reversed). Can I display my desktop app in the Mobile App Spotlight? No. The Mobile Application Spotlight is only intended for mobile applications in the iOS and Android app stores.   Shop Spotlight What is X Shopping? To learn more about X Shopping, check out our  policy page.   Link Spotlight What is Link Spotlight? Link Spotlight allows professionals to display a call to action button of their choosing on their Professional Account to drive potential customers to take the action they care about most. How do I enable Link Spotlight on my Twitter Professional Account? To enable the Link Spotlight, professionals will be prompted to add the url of their choosing from the supported list of URLs and pair it with one of the Call to Action prompts included in a drop-down menu. To enable Link Spotlight: Select Edit Profile on the X Professional Account Click Edit professional profile Select Profile Spotlight Locate the Link Spotlight from the menu of spotlight options and toggle it on  Enter a URL that has a domain in the supported list (see list of supported domains below) Select a label, or Call to Action, that you wish to appear on your account Click Save Why can’t I access the Link Spotlight?  There may be a few reasons why you are unable to access Link Spotlight: You must have a X Professional Account to access the Link Spotlight You must be logged into your X Professional Account to enable a spotlight on your account Link Spotlight has not yet rolled out to you - it is currently available to a select number of Professionals in the United States. Will you be updating the list of Call To Action options available in the drop-down? The list of Call to Action options is limited while we test the Link Spotlight. We will consider expanding the list in response to requests from professionals and how they use the spotlight. Will I be able to create custom text for my Link Spotlight button in the future? The goal of the Link Spotlight is simplicity (for professionals to use and for the team to maintain), so custom text is not part of the plan for Link Spotlight. As with any customer input, free text fields introduce additional complexity and trust and safety considerations. If a professional wants to pair custom text with a link, they can still use existing fields on the profile like the bio. Why doesn’t the url I want to use for my Link Spotlight work? In order to address technical complexity and trust and safety concerns, we are limiting URLs that can be used with the Link Spotlight to an allowlist. We will consider expanding this list in response to requests from professionals and how the spotlight is being used. The domains that are currently allowed to be used with Link Spotlight are: open.spotify.com music.apple.com pandora.com music.amazon.com listen.tidal.com deezer.com music.youtube.com boomplay.com play.anghami.com napster.com soundcloud.com bandcamp.com mixcloud.com toneden.io odesli.co ticketmaster.com bandsintown.com substack.com youtube.com twitch.tv vimeo.com podcasts.google.com podcasts.apple.com open.spotify.com/show menupages.com styleseat.com opentable.com calendly.com etsy.com github.com kickstarter.com indiegogo.com grubhub.com chownow.com Where is Link Spotlight available? Today, Link Spotlight is available in the US on iOS and Android. Why don’t I see Link Spotlight when I’m logged into my Professional Account? Not all users have access to Link Spotlight at this time. We are currently piloting this product with a select number of professionals in the United States, but we have plans to expand access to more professionals in the coming months. Additional reading Quick Promote Professionals on X Policies Ready to get started? Create your ad © 2026 X Corp. English Business English Deutsch English Français Português English العربية English 简体中文 English Did someone say … cookies? X and its partners use cookies to provide you with a better, safer and faster service and to support our business. Some cookies are necessary to use our services, improve our services, and make sure they work properly. Show more about your choices . Accept all cookies Refuse non-essential cookies
2026-01-13T08:47:43
https://golf.forem.com/t/newgolfer
Newgolfer - Golf Forem Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account Golf Forem Close # newgolfer Follow Hide A welcoming space for beginners and those new to the game Create Post Posts Left menu 👋 Sign in for the ability to sort posts by relevant , latest , or top . Right menu October 2025 Golf Buzz: Tour Wins, Tech Drops, and Woods' Latest Hurdle Om Shree Om Shree Om Shree Follow Oct 12 '25 October 2025 Golf Buzz: Tour Wins, Tech Drops, and Woods' Latest Hurdle # golf # newgolfer # womensgolf # juniorgolf 22  reactions Comments 4  comments 4 min read loading... 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV Golf Forem — A community of golfers and golfing enthusiasts Home About Contact Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . Golf Forem © 2016 - 2026. Where hackers, sticks, weekend warriors, pros, architects and wannabes come together Log in Create account
2026-01-13T08:47:43
https://dev.to/codemouse92/updated-opensource-tag-guidelines-55m5
Updated #opensource Tag Guidelines - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Add reaction Like Unicorn Exploding Head Raised Hands Fire Jump to Comments Save Boost More... Copy link Copy link Copied to Clipboard Share to X Share to LinkedIn Share to Facebook Share to Mastodon Share Post via... Report Abuse Jason C. McDonald Posted on Jul 17, 2019 • Edited on Apr 8, 2020           Updated #opensource Tag Guidelines # opensource # meta Updated 8 April 2020 The #opensource tag is awesome, but it's also been lacking a lot of focus. Is it for promoting projects? Talking about open source? Posting lists of the top 20 open source Javascript modules? It's hard to tell. In a way, because the lion's share of our technologies, libraries, tools, and projects are open source, nearly everything qualified for this tag before. It was becoming our site's junk drawer as it were - lots of nifty and useful stuff, but no semblance of organization to any of it. Since DEV.to rolled out Listings , I'm taking the opportunity to narrow the tag focus a bit. The goal is to give the #opensource tag clear topic boundaries, so Following it doesn't lead to a bunch of irrelevant posts leaking into your feed. New Guidelines I've updated the tag guidelines, but I wanted to lay out the changes here. Posts promoting a single project should go on Listings , or on #showdev or #news if it qualifies. Posts using or mentioning one or more open source projects should go on the appropriate tags for the relevant languages and technologies. This includes tutorials, "round ups", guides, comparisons, reviews, and the like. These typically land in #opensource, and are the main reason for the tag clutter. Announcements relating to your awesome project, including new features, releases, versions, and the like, should go on #news or Listings , or should be expanded out into a proper article (tutorial, maybe?) and posted on the appropriate technology tags. Open source contributor requests should go on #contributorswanted or Listings . If you're just bursting with pride at something you built, use the #showdev tag instead. "Roundups" and other lists of cool open source projects belong on #githunt . What Changed? All this mainly means the #opensource tag is no longer valid merely if the project(s) being discusses happen to be open source! To put that another way, here's a few theoretical topics which would have been #opensource material before, but aren't now. "Top 10 Open Source Python Data Modules" ( #python ) "My Awesome Data Visualizer in Go" ( #go , #showdev ) "Looking for contributors to Supercoolproject" (Listings or #contributorswanted ) "What I did on my Perl project this week" ( #perl , #devjournal , possibly #showdev ) "Installing Epictool on Ubuntu" ( #ubuntu ) "5 Open Source Alternatives to AWS" ( #cloud ) What SHOULD It Be? Articles in this tag should be about at least one of these three broad topics: Organizing, managing, running, contributing to, or working in an Open Source project. Open Source philosophy, licensing, and/or practical and legal topics thereof. Advocacy and adoption of Open Source philosophy . Aliases #foss and #freesoftware have been aliased over to #opensource (thanks @michaeltharrington !) and the tag info updated to account for that. I know that Free Software is culturally distinct from Open Source, but as the former is always compliant to a subset of the latter, having one tag for all just makes sense. Guideline Enforcement I won't be applying this to any posts before July 17th 2019 (retroactive guidelines just aren't fair). If the #opensource tag is used incorrectly in new posts, I'll remove it and provide a friendly reminder, along with suggestions on better tags to use. I know it'll take a while to get used to the updated rules, so don't worry if you miss it a few dozen times. Top comments (8) Subscribe Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Collapse Expand   Ben Halpern Ben Halpern Ben Halpern Follow A Canadian software developer who thinks he’s funny. Email ben@forem.com Location NY Education Mount Allison University Pronouns He/him Work Co-founder at Forem Joined Dec 27, 2015 • Jul 17 '19 Dropdown menu Copy link Hide Well thought out Jason. I'll be following along. We'll have some more easily accessible tag guidelines adjacent to the editor coming soon so folks can understand the instructions without being caught off guard by doing it wrong. As more folks define their guidelines, my biggest worry is what a lot of forums become when mods are overbearing. So I'm glad this is well thought out and well described. @michaeltharrington let's Jason well with this and we'll coordinate on functionality that needs to ship. Like comment: Like comment: 5  likes Like Comment button Reply Collapse Expand   Michael Tharrington Michael Tharrington Michael Tharrington Follow I'm a friendly, non-dev, cisgender guy from NC who enjoys playing music/making noise, hiking, eating veggies, and hanging out with my best friend/wife + our 3 kitties + 1 greyhound. Email mct3545@gmail.com Location North Carolina Education BFA in Creative Writing Pronouns he/him Work Senior Community Manager at DEV Joined Oct 24, 2017 • Jul 17 '19 Dropdown menu Copy link Hide Agreed! This is very well thought out. I think this tag will definitely benefit from more focus. Jason, feel free to hit me up if you need a hand with anything. I'm happy to help! Like comment: Like comment: 2  likes Like Comment button Reply Collapse Expand   Jason C. McDonald Jason C. McDonald Jason C. McDonald Follow Author. Speaker. Time Lord. (Views are my own) Email codemouse92@outlook.com Location Time Vortex Pronouns he/him Work Author of "Dead Simple Python" (No Starch Press) Joined Jan 31, 2017 • Jul 17 '19 Dropdown menu Copy link Hide Thanks, Michael and Ben! Like comment: Like comment: 3  likes Like Comment button Reply Collapse Expand   William Antonelli William Antonelli William Antonelli Follow Joined Mar 7, 2019 • Jul 18 '19 Dropdown menu Copy link Hide This is a list of what not to use the tag for. Can you give some examples of what we would use it for? I think that would be easier to understand. Like comment: Like comment: 1  like Like Comment button Reply Collapse Expand   Jason C. McDonald Jason C. McDonald Jason C. McDonald Follow Author. Speaker. Time Lord. (Views are my own) Email codemouse92@outlook.com Location Time Vortex Pronouns he/him Work Author of "Dead Simple Python" (No Starch Press) Joined Jan 31, 2017 • Jul 18 '19 Dropdown menu Copy link Hide No problem. From the tag info: To keep this tag clean and meaningful, please ensure your post fits into at least one of the following categories: * Organizing, managing, running, or working in an Open Source project. * Open Source philosophy, licensing, and/or practical and legal topics thereof. * Advocacy and adoption of Open Source technology. I'll add that to the post. Like comment: Like comment: 2  likes Like Comment button Reply Collapse Expand   Frederik 👨‍💻➡️🌐 Creemers Frederik 👨‍💻➡️🌐 Creemers Frederik 👨‍💻➡️🌐 Creemers Follow I'm never sure what to put in a bio. If there's anything you want to know, don't be afraid to ask! Email frederikcreemers@gmail.com Location Maastricht, the Netherlands Education Knowledge Engineering & Data Science at Maastricht University Pronouns he/him Work Developer at TalkJS Joined Mar 22, 2017 • Jul 17 '19 Dropdown menu Copy link Hide I think the #githunt tag is also relevant here. Looking at some of its recent posts, it could also use some enforcement of its guidelines. Like comment: Like comment: 1  like Like Comment button Reply Collapse Expand   Jason C. McDonald Jason C. McDonald Jason C. McDonald Follow Author. Speaker. Time Lord. (Views are my own) Email codemouse92@outlook.com Location Time Vortex Pronouns he/him Work Author of "Dead Simple Python" (No Starch Press) Joined Jan 31, 2017 • Aug 3 '19 • Edited on Aug 3 • Edited Dropdown menu Copy link Hide Y'know, they're always looking for more tag moderators, and I agree that #githunt needs some love. Maybe that'd be something you'd be good at? (Contact yo@dev.to if you're interested.) Like comment: Like comment: 1  like Like Comment button Reply Some comments may only be visible to logged-in visitors. Sign in to view all comments. Some comments have been hidden by the post's author - find out more Code of Conduct • Report abuse Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink . Hide child comments as well Confirm For further actions, you may consider blocking this person and/or reporting abuse Jason C. McDonald Follow Author. Speaker. Time Lord. (Views are my own) Location Time Vortex Pronouns he/him Work Author of "Dead Simple Python" (No Starch Press) Joined Jan 31, 2017 More from Jason C. McDonald 5 Ways to Retain Open Source Contributors # opensource # culture # projectmanagement Social Lifespan of Posts # meta # discuss Introducing #devjournal # devjournal # meta 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV Forem — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . Forem © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://docs.sui.io/guides/developer/getting-started/connect
Hello, World! | Sui Documentation Skip to main content Sui Documentation Guides Concepts Standards References Search Overview Getting Started Install Sui Install from Source Install from Binaries Configure a Sui Client Create a Sui Address Get SUI from Faucet Hello, World! Connect a Frontend Next Steps Sui Essentials Objects Packages Currencies and Tokens NFTs Cryptography Nautilus Advanced App Examples Dev Cheat Sheet Operator Guides SuiPlay0X1 🗳️ Book Office Hours → 💬 Join Discord → Getting Started Hello, World! On this page Hello, World! You'll build a "Hello, World!" program to learn the fundamentals of programming on Sui. You create programs on Sui by writing and deploying smart contracts to the network. The most basic unit of storage on Sui is an object . Other blockchains typically structure storage using key-value stores. Sui centers storage around objects with unique ID addresses on-chain. Every Sui smart contract is an object that manipulates other objects. Objects can be immutable or mutable: Immutable objects cannot be transferred, changed, or deleted. No one owns them and anyone can access them publicly. Mutable objects can be transferred, changed, and deleted. A Sui address can own them, or they can be shared for public access. Every object's unique ID and version number references it on-chain. Every transaction on the network takes objects as input, then reads, writes, and mutates the inputs to produce new or altered objects as output. Every object knows the hash of the transaction that produced it. When an object is modified by a transaction, the transaction's output writes the object's mutated contents to the same object ID but with a new version number. Sui has limits on the maximum transaction size (128KB) and number of objects (2,048) used in a transaction. For more information on limits, see Building Against Limits in The Move Book. What is Move? ​ Move is the programming language Sui uses to create smart contracts. It is platform agnostic and enables common libraries, tooling, and developer communities across blockchains with vastly different data and execution models. There are three ways to use Move in the context of Sui: Move packages, Move modules, and Move objects. A Sui Move package is also referred to as a Move smart contract. It is a set of Move bytecode published to the Sui network. It is immutable and cannot be changed or removed, however you can upgrade it. Upgrading creates a new version of the package object on-chain, leaving the original intact. All prior versions of a package still exist on-chain. Once you publish it, other packages can import and use the modules it provides. Anyone can view a package's contents and use a Sui Explorer to see how its logic manipulates other objects. Every Move package on Sui includes one or more Sui Move modules that define the package's interaction with on-chain objects. A module's name is always unique within the package that contains it. A Sui Move module governs a Sui Move object , which is typed data from a Sui Move package. Each Move object value is a struct with fields that can contain primitive types, such as integers and addresses, other objects, and non-object structs. Clone "Hello, World!" ​ Prerequisites Install the latest version of Sui . Configure the Sui client . Create a Sui address . Get SUI Testnet tokens . Download and install an IDE. The following are recommended, as they offer Move extensions: VSCode , corresponding Move extension Emacs , corresponding Move extension Vim , corresponding Move extension Zed , corresponding Move extension Alternatively, you can use the Move web IDE , which does not require a download. It does not support all functions necessary for this guide, however. Download and install Git . To demonstrate creating objects, packages, and how to build your first Sui application, start by cloning the "Hello, World!" example: $ git clone \ https://github.com/MystenLabs/sui-stack-hello-world.git $ cd sui-stack-hello-world/move/hello-world In this project, there are two important files that define the package's logic, information, and its dependencies: move/hello-world/sources/greeting.move : Defines the package's logic. In this example, it defines a basic shared greeting object and public functions to interact with it. move/hello-world/Move.toml : The package's configuration file that defines the package name, dependencies, and addresses. Click to open move/hello-world/Move.toml File not found in manifest: move/hello-world/Move.toml . You probably need to run `pnpm prebuild` and restart the site. View the smart contract code ​ Open the greeting.move file in your IDE of choice. You can see the following Move code: File not found in manifest: move/hello-world/sources/greeting.move . You probably need to run `pnpm prebuild` and restart the site. Code explanation ​ First, this code defines a module called greeting : module hello_world :: greeting { use std :: string ; ... } Then, it defines a public struct called Greeting that contains a unique object ID and text. A struct is a type of resource : File not found in manifest: move/hello-world/sources/greeting.move . You probably need to run `pnpm prebuild` and restart the site. Then, it defines the function new that makes an API call to the Greeting struct and initializes it with the text "Hello world!" , storing it in a new shared object: File not found in manifest: move/hello-world/sources/greeting.move . You probably need to run `pnpm prebuild` and restart the site. Lastly, the package defines a function called update_text that can be called to update the text stored in Greeting : File not found in manifest: move/hello-world/sources/greeting.move . You probably need to run `pnpm prebuild` and restart the site. Resource safety ​ A unique aspect of programming applications on Sui is the resource safety enforced by the Move Bytecode Verifier. Move packages must satisfy the following resource safety parameters: All resources must be either moved into global storage or destroyed by the end of a transaction. Resources cannot be copied. In the "Hello, World!" example, the struct Greeting is a resource type. To satisfy the requirement that all resources must be moved or destroyed by the end of a transaction, Greeting is assigned to new_greeting , which the call to transfer::share_object(new_greeting) then moves into global storage. To mutate Greeting , the function update_text takes the input (&mut Greeting) rather than the resource itself. This function satisfies resource safety as the function does not copy the resource and mutates it via a reference. Learn more about the Move Bytecode Verifier. How does this differ from EVM applications? ​ The Ethereum Virtual Machine adopts a gas-based resource safety strategy. Every opcode on an EVM chain has an associated gas price that makes transactions costly, preventing the network from running a single transaction indefinitely. Build the Move package ​ Before you can publish a Move package to the network, you must first build it. Building your package is necessary because the .move source file is a human-readable piece of code, while the network can only understand bytecode. To build your "Hello, World!" package, first confirm your working directory is ~/sui-stack-hello-world/move/hello-world , then run the following command: $ sui move build The build process fetches and compiles the dependencies defined in the Move.toml file. The Move compiler checks your .move code for type errors, syntax errors, and enforces resource safety , then translates your .move code into bytecode that Sui can execute. info You must build your package before you can publish it, but also before you test it. You cannot run tests ( sui move test ) on your code until it has been built. Publish the Move package ​ Now that your package has been built, you need to publish it. After you publish it, other packages and users can use the package's modules and functions by making calls to the package ID. First, confirm your client is configured to use Testnet as the active environment: $ sui client active-env This should return testnet . If it does not return testnet , follow the client configuration instructions before continuing. Then, check your balance of SUI tokens to confirm you have enough to publish to Testnet: $ sui client balance You should have a balance of SUI tokens: ╭────────────────────────────────────────────╮ │ Balance of coins owned by this address │ ├────────────────────────────────────────────┤ │ ╭────────────────────────────────────────╮ │ │ │ coin balance (raw) balance │ │ │ ├────────────────────────────────────────┤ │ │ │ Sui 56804696124 0.50 SUI │ │ │ ╰────────────────────────────────────────╯ │ ╰────────────────────────────────────────────╯ If you do not have a balance, follow the SUI faucet instructions . Now, publish the package to Testnet with the command: $ sui client publish Click to open Output Transaction Digest: 8R39iKKLGPDG3QkW2SrRW3QX71csRP2BLhK9H7oz9SwW ╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │ Transaction Data │ ├──────────────────────────────────────────────────────────────────────────────────────────────────────────────┤ │ Sender: 0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803 │ │ Gas Owner: 0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803 │ │ Gas Budget: 9843200 MIST │ │ Gas Price: 1000 MIST │ │ Gas Payment: │ │ ┌── │ │ │ ID: 0x816e5ec6ff457f18232498b57af8a0e1e219307a3a43fb5df5a4c2198296510c │ │ │ Version: 591332925 │ │ │ Digest: FLC4NXntT7WiHcqCkpDuBUq14DFTfi3EFeUiJcSNHdPu │ │ └── │ │ │ │ Transaction Kind: Programmable │ │ ╭──────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │ │ │ Input Objects │ │ │ ├──────────────────────────────────────────────────────────────────────────────────────────────────────────┤ │ │ │ 0 Pure Arg: Type: address, Value: "0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803" │ │ │ ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────╯ │ │ ╭─────────────────────────────────────────────────────────────────────────╮ │ │ │ Commands │ │ │ ├─────────────────────────────────────────────────────────────────────────┤ │ │ │ 0 Publish: │ │ │ │ ┌ │ │ │ │ │ Dependencies: │ │ │ │ │ 0x0000000000000000000000000000000000000000000000000000000000000001 │ │ │ │ │ 0x0000000000000000000000000000000000000000000000000000000000000002 │ │ │ │ └ │ │ │ │ │ │ │ │ 1 TransferObjects: │ │ │ │ ┌ │ │ │ │ │ Arguments: │ │ │ │ │ Result 0 │ │ │ │ │ Address: Input 0 │ │ │ │ └ │ │ │ ╰─────────────────────────────────────────────────────────────────────────╯ │ │ │ │ Signatures: │ │ mUxqMIofPq+yIzPxxYM+2mSIPTFneDxhWGGxJ7tM02hnRBRy5/FosnnWKxd4OSAjmaw6FNylwVdqUoUlJSxWCQ== │ │ │ ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────╯ ╭───────────────────────────────────────────────────────────────────────────────────────────────────╮ │ Transaction Effects │ ├───────────────────────────────────────────────────────────────────────────────────────────────────┤ │ Digest: 8R39iKKLGPDG3QkW2SrRW3QX71csRP2BLhK9H7oz9SwW │ │ Status: Success │ │ Executed Epoch: 875 │ │ │ │ Created Objects: │ │ ┌── │ │ │ ID: 0x136e41f505888066f189fb823d710ec96ab4fd75144b3d8008b91d58de85fd12 │ │ │ Owner: Account Address ( 0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803 ) │ │ │ Version: 591332926 │ │ │ Digest: BGfc1tihsYPTLLozrj58HmRkDeQ1DWZfqeaR4SZDb1cX │ │ └── │ │ ┌── │ │ │ ID: 0xa7ed855d30500c485a94c0849f70b508d6b6adf6b0767ab93cc0756c075ecbb1 │ │ │ Owner: Immutable │ │ │ Version: 1 │ │ │ Digest: EtGAG9RHHCsguX4iuX1cbRDvW4QAkJXgDCMJjiufHtxB │ │ └── │ │ Mutated Objects: │ │ ┌── │ │ │ ID: 0x816e5ec6ff457f18232498b57af8a0e1e219307a3a43fb5df5a4c2198296510c │ │ │ Owner: Account Address ( 0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803 ) │ │ │ Version: 591332926 │ │ │ Digest: CiU5KNZALUmuckc2YUFmJq5YXgbB8oG3rs4cnh2rdDXd │ │ └── │ │ Gas Object: │ │ ┌── │ │ │ ID: 0x816e5ec6ff457f18232498b57af8a0e1e219307a3a43fb5df5a4c2198296510c │ │ │ Owner: Account Address ( 0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803 ) │ │ │ Version: 591332926 │ │ │ Digest: CiU5KNZALUmuckc2YUFmJq5YXgbB8oG3rs4cnh2rdDXd │ │ └── │ │ Gas Cost Summary: │ │ Storage Cost: 7843200 MIST │ │ Computation Cost: 1000000 MIST │ │ Storage Rebate: 978120 MIST │ │ Non-refundable Storage Fee: 9880 MIST │ │ │ │ Transaction Dependencies: │ │ 2dkJtqsoQcyCZJvjZnskNVPQeynwVtwCcA9goAru6tTi │ │ 7PStztXyh92keJmrDD1aghHaKVdgCoVkVx4ZmLUfmQeK │ │ Dd9pn1zFcSJjinxQewFd2gQdR4XKsHxFioD5MYnwLZQz │ ╰───────────────────────────────────────────────────────────────────────────────────────────────────╯ ╭─────────────────────────────╮ │ No transaction block events │ ╰─────────────────────────────╯ ╭──────────────────────────────────────────────────────────────────────────────────────────────────╮ │ Object Changes │ ├──────────────────────────────────────────────────────────────────────────────────────────────────┤ │ Created Objects: │ │ ┌── │ │ │ ObjectID: 0x136e41f505888066f189fb823d710ec96ab4fd75144b3d8008b91d58de85fd12 │ │ │ Sender: 0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803 │ │ │ Owner: Account Address ( 0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803 ) │ │ │ ObjectType: 0x2::package::UpgradeCap │ │ │ Version: 591332926 │ │ │ Digest: BGfc1tihsYPTLLozrj58HmRkDeQ1DWZfqeaR4SZDb1cX │ │ └── │ │ Mutated Objects: │ │ ┌── │ │ │ ObjectID: 0x816e5ec6ff457f18232498b57af8a0e1e219307a3a43fb5df5a4c2198296510c │ │ │ Sender: 0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803 │ │ │ Owner: Account Address ( 0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803 ) │ │ │ ObjectType: 0x2::coin::Coin<0x2::sui::SUI> │ │ │ Version: 591332926 │ │ │ Digest: CiU5KNZALUmuckc2YUFmJq5YXgbB8oG3rs4cnh2rdDXd │ │ └── │ │ Published Objects: │ │ ┌── │ │ │ PackageID: 0xa7ed855d30500c485a94c0849f70b508d6b6adf6b0767ab93cc0756c075ecbb1 │ │ │ Version: 1 │ │ │ Digest: EtGAG9RHHCsguX4iuX1cbRDvW4QAkJXgDCMJjiufHtxB │ │ │ Modules: greeting │ │ └── │ ╰──────────────────────────────────────────────────────────────────────────────────────────────────╯ ╭───────────────────────────────────────────────────────────────────────────────────────────────────╮ │ Balance Changes │ ├───────────────────────────────────────────────────────────────────────────────────────────────────┤ │ ┌── │ │ │ Owner: Account Address ( 0x9ac241b2b3cb87ecd2a58724d4d182b5cd897ad307df62be2ae84beddc9d9803 ) │ │ │ CoinType: 0x2::sui::SUI │ │ │ Amount: -7865080 │ │ └── │ ╰───────────────────────────────────────────────────────────────────────────────────────────────────╯ When you publish a Move package to the network, the network uploads and stores the bytecode as a Move package with a unique package ID and version number. The network consumes SUI tokens as gas and processes the transaction on-chain. After successfully executing, the output provides details about the transaction used to publish the package, including the gas cost, transaction digest, dependencies, owner, and sender. For this guide, the most important section is Published Objects , which includes the package's ID, version, and its modules: │ Published Objects: │ │ ┌── │ │ │ PackageID: 0xa7ed855d30500c485a94c0849f70b508d6b6adf6b0767ab93cc0756c075ecbb1 │ │ │ Version: 1 │ │ │ Digest: EtGAG9RHHCsguX4iuX1cbRDvW4QAkJXgDCMJjiufHtxB │ │ │ Modules: greeting │ │ └── Both the package ID and module are required to interact with the package from the command line. Take note of both values for future use in the Connecting a Frontend guide. Interact with the Move package ​ Interact with the newly published package by first making a call to the new function that creates a new Greeting object and initialize it with the text "Hello world!" : $ sui client call --package <PACKAGE_ID> --module greeting --function new Replace <PACKAGE_ID> with the package ID the output of the sui client publish command returned. You must include the --package , --module , and --function flags. The output of this call includes a newly created object: ╭───────────────────────────────────────────────────────────────────────────────────────────────────╮ │ Transaction Effects │ ├───────────────────────────────────────────────────────────────────────────────────────────────────┤ │ Digest: 6xB9Foy5vyhXG99xppaCxrNvpPTV3UZsH39zqUKNoGsD │ │ Status: Success │ │ Executed Epoch: 875 │ │ │ │ Created Objects: │ │ ┌── │ │ │ ID: 0x2834aa3d2ed1b5060f4e5d400092544fa9c95430fd894b139b7dfb0312501594 │ │ │ Owner: Shared( 591332927 ) │ │ │ Version: 591332927 │ │ │ Digest: 8xJRijHHp3gNXLExTG98KX5jYAQDVKqsBD8ATFMJXCbA │ │ └── ... To verify that the object contains the text "Hello world!" , make a call to query the object's information: $ sui client object <OBJECT_ID> Replace <OBJECT_ID> with the value under Created Objects, ID: . You should see the object's details, including a value of text: Hello world! : ╭───────────────┬──────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │ objectId │ 0x2834aa3d2ed1b5060f4e5d400092544fa9c95430fd894b139b7dfb0312501594 │ │ version │ 591332927 │ │ digest │ 8xJRijHHp3gNXLExTG98KX5jYAQDVKqsBD8ATFMJXCbA │ │ objType │ 0xa7ed855d30500c485a94c0849f70b508d6b6adf6b0767ab93cc0756c075ecbb1::greeting::Greeting │ │ owner │ ╭────────┬──────────────────────────────────────────╮ │ │ │ │ Shared │ ╭────────────────────────┬─────────────╮ │ │ │ │ │ │ │ initial_shared_version │ 591332927 │ │ │ │ │ │ │ ╰────────────────────────┴─────────────╯ │ │ │ │ ╰────────┴──────────────────────────────────────────╯ │ │ prevTx │ 6xB9Foy5vyhXG99xppaCxrNvpPTV3UZsH39zqUKNoGsD │ │ storageRebate │ 1413600 │ │ content │ ╭───────────────────┬──────────────────────────────────────────────────────────────────────────────────────────╮ │ │ │ │ dataType │ moveObject │ │ │ │ │ type │ 0xa7ed855d30500c485a94c0849f70b508d6b6adf6b0767ab93cc0756c075ecbb1::greeting::Greeting │ │ │ │ │ hasPublicTransfer │ false │ │ │ │ │ fields │ ╭──────┬───────────────────────────────────────────────────────────────────────────────╮ │ │ │ │ │ │ │ id │ ╭────┬──────────────────────────────────────────────────────────────────────╮ │ │ │ │ │ │ │ │ │ │ id │ 0x2834aa3d2ed1b5060f4e5d400092544fa9c95430fd894b139b7dfb0312501594 │ │ │ │ │ │ │ │ │ │ ╰────┴──────────────────────────────────────────────────────────────────────╯ │ │ │ │ │ │ │ │ text │ Hello world! │ │ │ │ │ │ │ ╰──────┴───────────────────────────────────────────────────────────────────────────────╯ │ │ │ │ ╰───────────────────┴──────────────────────────────────────────────────────────────────────────────────────────╯ │ ╰───────────────┴──────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯ Important transaction considerations ​ You cannot send 2 or more transactions simultaneously, otherwise you encounter an error such as: Failed to sign transaction by a quorum of validators because one or more of its objects is reserved for another transaction. If you receive this error, you must wait until the current epoch is over before submitting your transaction again. You can see how long is left in the current epoch using Sui Explorer or another network explorer like SuiScan . To prevent the same object from being modified by multiple transactions at once, your address 'locks' the object to prevent conflicting modifications. If you'd like to batch multiple transaction commands together, you can use programmable transaction blocks . Transactions also have limitations regarding total size, number of objects, and number of inputs. Learn more about limitations in Building Against Limits in The Move Book. Next steps Create a Full Stack dApp Connect a frontend interface to your "Hello, World!" smart contract. Access Sui Data Learn more about accessing data on Sui. Join the Community Join the Sui developer community, try out other example projects, or read more documentation. Edit this page What is Move? Clone "Hello, World!" View the smart contract code Code explanation Resource safety Build the Move package Publish the Move package Interact with the Move package Important transaction considerations © 2026 Sui Foundation | Documentation distributed under CC BY 4.0
2026-01-13T08:47:43
https://dev.to/help/community-resources#Recommended-reads-from-the-Community
Community Resources - DEV Help - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close DEV Help The latest help documentation, tips and tricks from the DEV Community. Help > Community Resources Community Resources In this article Recommended reads from the Community Both the DEV Team and DEV community members often share guides and resources for using DEV under the tag #howtodevto . Please browse these posts and if you have any tips for using DEV, write a post and share it with us under the tag! Recommended reads from the Community Finally a clean and easy way to add Table of Contents to dev.to articles 🤩 Lucy Linder ・ Jan 2 '23 #howtodevto #writing #beginners #showdev How to write a high quality post on DEV Ella (she/her/elle) ・ Aug 20 '21 #writing #howtodevto Lesser Known Features of DEV — Using Comment Templates Michael Tharrington ・ Jan 4 '23 #meta #documentation #community #howtodevto 😁12 things you didn't know you could do with DEV Anmol Baranwal ・ Jan 30 '24 #writing #tutorial #beginners #howtodevto How to write a VERY HIGH quality post on DEV [13 top tips + a bonus 🤯!] GrahamTheDev ・ Aug 20 '21 #a11y #writing #beginners #howtodevto 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://dev.to/apisyouwonthatepodcast/stoplight-and-developer-mental-health#main-content
Stoplight and Developer Mental Health - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close APIs You Won't Hate Follow Stoplight and Developer Mental Health Aug 24 '20 play Phil, Mike and Matt get together before Phil leaves the UK in search of roads he can bike on. We talk about what is coming up for new Stoplight releases and then we take a sharp pivot to talk about mental health and how it affects Matt and what he is doing to take care of himself.  Sponsors: https://stoplight.io ★ Support this podcast on Patreon ★ Episode source Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Your browser does not support the audio element. 1x initializing... × 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://dev.to/action-in-action/using-metrics-to-drive-value-delivery#main-content
Using metrics to drive value delivery - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Agile in Action with Bill Raymond Follow Using metrics to drive value delivery May 9 '23 play It is time to measure 👏🏽 team success with customer-focused, value-driven 📈 metrics In today's podcast, we are thrilled to have Dave Witkin, Founder, and Managing Principal at Packaged Agile, join us for a lively discussion on metrics that matter for team success. If your primary measure of team success is velocity and story points, I propose you shift that to customer-focused, value-driven metrics. In today's podcast, Bill and Dave share stories and examples of metrics that can help you drive customer success. In this podcast, you will learn: ✅ The definition of value-based delivery ✅ A case study on how the wrong metrics can lead to flawed outcomes ✅ Important agile metrics that matter less ✅ Important team metrics that matter more and focus on the customer 🎉 How to make the shift from agile metrics to customer-driven value-based metrics Transcript (transcripts are auto-generated, so please excuse the brevity)   [00:00:00] Intro spot ---   Bill Raymond: I was talking to someone who was frustrated with SCRUM and agile, and I said, why? And they said, we're working on these very advanced algorithms and we just can't seem to get them out,   And I said, well, show me how you're measuring the success of the project. And it was around velocity.    Yeah. And I would call those metrics that matter less, right?    Dave Witkin: That takes away time that we could be spending on things that matter more. And I think that's a key part of the challenge.   Bill Raymond: Bill, we have no illusion, there's no such thing as a perfect metric. this is why, for every metric, I thinkcontext does matter.   Dave Witkin: That's that. I'm going to give you some. I'm not going to cop out here and give you the old consulting line that, it depends.     [00:00:44] Intro ---   Speaker: Welcome to the Agile in Action Podcast with Bill Raymond. Bill will explore how business disruptors are adopting agile techniques to gain a competitive advantage in this fast-paced technology driven market.   Bill Raymond: Hi and welcome to the podcast. Today, I'm joined by Dave Witkin, founder and managing principal at Packaged Agile.   Hi Dave. How are you today?   Dave Witkin: Hey Bill. Great. And thanks for having me.     [00:01:15] Today's Topic - Using Metrics to Drive Value Delivery ---   Bill Raymond: I'm looking forward to our conversation. Today, we're going to be talking about Using Metrics to Drive Value Delivery. I think this is going to be a good topic. Before we get started, could you introduce yourself?   Dave Witkin: Yeah. And if it's okay, I'll do that by way of a, a short story about history of my career. I actually started in IT back in the late 1980s. And I remember I was involved in software development, generally giving requirements and we were developing an inventory management system, was one of the big ones we worked on.   And I recall it because one of the things that we did was I would sit side by side with the developer. He was building the tool. I would give him immediate feedback, he'd ask me questions. And within a day, he would build something and I'd give him immediate feedback, so on and so forth. When a cycle worked, great. Then in the mid 1990s I went to work for one of the Big 5 consulting firms. I don't know if there's five anymore, but one of those big consulting firms still around today. And I started working on really big systems. Sometimes these required 50, 100, even 500 people to build. And this is still largely what I focus on. But in the 90s I figured out that at least for these big 5 consulting firms, they built software very differently than I had in the 80s.   So instead of sitting side by side with developers, we created these huge documents, months, even years, strategy documents, requirements documents, design documents, test approach documents, you name it. And I would guess looking back, probably 80, maybe even 90% of our effort went into building documents and perfecting them, right?   Dotting the Is, crossing the Ts, making sure the formatting was right. And each document got handed off to somebody else. And when we did that, massive information was lost in the process. So, as most of us agilists know, humans don't communicate very well through documents. Right? But I thought, I'm just a junior person, this must be the right way to build software. Here's this Big 5 firm, they're making billions of dollars every year. They hire people from these top-notch universities, smarter than me. But you know, when I got my sea legs and started getting more confident, I realized we failed much more often than we succeeded.   And when I say failure, I mean it could be complete failure where we delivered absolutely nothing. More often than not though, we would miss things by years or deliver half of what was originally envisioned. And then there it was riddled with bugs.    So anyway, I knew there had to be a better way and that's when I came to agile. And I read something in the early 2000s by Ken Schwaber, one of the co-creators of SCRUM. I'm guessing many of your listeners probably know that. And I immediately saw how SCRUM could change the game completely, and I loved it.    So 2004, almost 20 years ago now, I left the Big 5 firm. I created a new company Packaged Agile, and over time we focused more and more on agile methods.    So bringing us to where we are now, we are 80-90% government-focused, US government focused and we really pride ourselves on, as I say, real agile, avoiding the zombie agile, trying to get the real quote value that most people feel they were promised when they were led to believe agile was a better way. So we try to make that a reality.     [00:04:30] What does Agile mean to you? ---   Bill Raymond: That's great. Thank you. And I guess this is interesting. This leads into my next conversation, which I ask everyone, what does agile mean to you? You already shared a bit of a story there, but I'mcurious from your perspective, if you're sharing with someone what agile means, how would you define it?   And also, follow up question to that, I don't think anyone's used the term zombie agile on the podcast,shockingly in 80+ podcasts, and you're the first to use it. So maybe what you could do is explain what agile means to you and what zombie agile is.   Dave Witkin: Sure. Well, so that's actually, it's interesting. Part of how I was going to propose the answer was let me tell you what it's not for me, and then I'll move into what it is. Because you've probably got a lot of affirmative answers and I'll give you that as well. But let me start with zombie agile, which is a term, I think there's a group called, The Liberator.   For your audience, they were worth reading, they put out some great content. You could probably search for them, The Liberator's Agile, and it's a term I first saw with them, but you know, even work with SCRUM and Dr. Sutherland, those folks, *we talk about fake agile or really, it's just agile that delivers none of the intended value.*   *Sometimes it's worse than waterfall. Sometimes you get mild improvements, but nothing like the types of results that we know we get when we apply the values and principles effectively. So any time you are in, let's take SCRUM, you're insprint planning, you're in daily standups, daily SCRUMs and it feels like a waste of time.*   *People are not communicating, they're just going through the motions, they don't want to be there, zombie agile, not what I consider what we're really about. That's not agile that's going to deliver value. *   So from a more affirmative way, I'd say agile is really first and foremost, figure out what the customer really needs and wants and force ranking it.   We've got some studies showing, there is a tremendous amount of waste in what we build because we, at least in the software development world building those types of products, we often build things that are rarely or never used. Huge problem. So what do our customers really see value in? And we force rank them.   So everything is not a top priority, often a problem. We deliver things in increments, right? Working products quickly or at least partial working products, hours to days, not weeks to months. We get fast feedback on those products from people who will actually use them. We don't give them to testers who have neverused the actual application, will never use them in production.   You can put things by testers as well, don't get me wrong, but that's not the number one litmus test. It's people who will use them. And then we inspect, we improve both the product and the process in short cycles. SCRUM is very big on that, as is LEAN. And finally I'd say, I've given a lot in there, but maybe one of the last ones, *it's not specific to agile, but I think it's a key component of success. We create an environment that fosters a high performing team. And when I think of something like SCRUM, to me that's really what the intention is. It doesn't have to be about software. If you look at it, the framework itself for SCRUM, it's very little about software. It's about creating a structure where you get a team of people and how do we overcome their biases and get them to work effectively together.*   *And I think that's really the heart of it.*   Bill Raymond: Thank you. And if anyone's listening to this podcast right now for the first time and you're just jumping into this world of agile and you want to know what SCRUM is, we do have a number of podcasts specifically talking about SCRUM. We have a season of SCRUM through 2022 and 2023. And the best one to look up is our intro to SCRUM, which is Predictive Versus Adaptive Project Management and,I don't even want to use the word product project management because we are often talking about products and not projects. But that would be a good way to get started.      [00:08:26] Defining the term "value" ---   Bill Raymond: And I do think though, that you've mentioned the word value quite a few times now, and I think it would probably be good if you kind of give a definition of what that means because the rest of this podcast, we're going to be talking about measuring agile.   Dave Witkin: Yeah. And Bill, I would say, this is where unfortunately, I think a lot of people go off base from the start is that we don't define it. And that causes lots of downstream problems. So if you'll bear it with me, I'll define it through a little bit of a story, this is actually a true story of one of our clients.   I won't give the actual names to protect well-meaning people. But this has actually happened and I'll mention at the end, I think it happens a ton in one form or another, but so there was a senior company executive we worked with a few years ago. Let's call her Tasha. And Tasha really wanted to be a hero at her company.   She didn't use that term, but you could tell she was very driven. She really wanted to improve the company. And she thought the best way to do that was, hey, to find a big juicy problem and be one of the people to solve it. And her leadership saw a lot of value in that. One of those problems they asked her to solve, there was a software application,I think universally, people said they hated it.   It was just super old, it might have even been old green screen, mainframe kind of stuff, it's hard to remember. But it wasn't easy to sustain. So she campaigned, she did some estimates, campaigned, got a hundred million dollars, basically budget to address this problem over the next couple years.    She hires consultants, she engages internal employees and they start work on rebuilding this existing application piece by piece.   So it already existed, they didn't have to start from scratch, but basically re-platforming and designing. And Tasha did believe in really good design. She got some great feedback on that. The team made sure every screen was beautiful. It was rebuilt, it was tested, it looked great, it was modern technology and she got a lot of advice.   And she also understood a little bit about agile development from where she was before. So every part of the application was rebuilt and tested in short cycles. I think they used three weeks. So our team's super efficient, right? They got all the efficiencies that you would hope from an agile approach.   And they actually, they had three years. They finished in about two and a half years. Okay? So they're six months ahead of schedule, at least their schedule. Company's proud, everyone's excited. And then they release the software. And that's always where the rubber hits the road, isn't it? And it wasn't horrible, but the reaction was very mixed.   And what I want to get across, I guess is the mix, right, was based on different roles. Who used the software? So we had internal users of the software. Internal users who looked at it and they loved these new screens. Much more efficient, they were easy to use, you could get from tab from field to field.   It worked well. And they had a pretty good set of, we call them edits to make sure that the data that they entered was clean. But there were even more external users, people outside the company. And the screens were still pretty, right? They were consistent. It really didn't solve the problems with the old system.   And the problems with the old system were poor data quality, checks right at the point of entry. So what would happen is you'd enter some data and then it would be 10 steps later where you would figure out that you didn't qualify for something. And thenyou had to go back and basically start again.   You lost some of the state, it wasn't well saved. So because with sort of a different product line or something, if you didn'tqualify. Her team was also pretty smart. They built some, your, your listeners may have heard of this telemetry. If you don't know, telemetry is sort of how do we look at the actual application, get some data on it to figure out how it's used, what's the uptime? Is it performing well? Right? When you hit save, how quickly do you get control back?    And one of the pieces of telemetry that they used helped them evaluate what's called the abandonment rate. And the abandonment rate basically says, for every person who starts filling out this loan application, how many people actually complete the application?   And you want low abandonment rates, right? Low is good. You want people who start the process to finish. Because if they don't, it tells you you know, there's some problems here. The abandonment rate on the new application was over 70%. So seven out of 10 people in this brand new, beautiful system who started filling out a loan application quit before they submit it.    And worse, at least for one other stakeholder group, it turned out, some of that telemetry told them that 75% of the functions the team rebuilt, really replatformed in the old application, were either never used or almost never used. So some of the executives took that to mean, and it's reasonable, that they put a hundred million dollars into this, literally 75% of those million dollars were completely wasted, forgetting about the external users who were not happy and were abandoning it.    The end result basically was the company's competition, they continued to take market share. Tasha was smart enough to find another job before she could be let go.   And so, to sum it up, I'll say the moral of this story in terms of value is that there, I think you can see there isn't just one view of value on most, especially large initiatives. We had the internal user's view of value, which was how quickly can I complete activities I need to do my day-to-day job?   Right? So that's one. And frankly, they were pretty well satisfied. The external customers or potential customers saw value in some things that were not delivered. Good edits, making sure data was clean, early identification of when they were not eligible for certain products, and maybe the ability if you weren't eligible for one product to save the data and then move it to another product.   So they were unhappy, a very different view of value. And then finally, and this gets overlooked a lot, not everywhere, but we have the senior executives' view of value. And what was their value, right? Their value was, I don't want to spend one dime more than is necessary to solve the problems with the application.   And so they saw 75% of these functions were rarely or never used. So they took that to mean out of their a hundred million dollars, Tasha was partially responsible for wasting 75% of them. And this is a story, this is one client, butI've probably been at, who knows, 30, 40 clients at this point in my career.   And I will tell you, I thinkand maybe your listeners can confirm this, at most organizations, something like this maybe less dramatically, happens pretty much every day when we're building software products. And the results are mixed at best because there is not one view of value. And I think, maybe we can get into this later, value sometimes is also defined, not by what we say, but by what some of our leaders do and what they pay attention to.   Bill Raymond: This was a great story because there are different levels of value, if you will. Different stakeholders had different concepts as to how they were defining the success of this particular effort. What are some of the other challenges that you might see when people are trying to use metrics to drive success?   Dave Witkin: One I would say is, and there's a phrase in metrics you hear a lot, which is, you get what you measure. And we do a lot of government work as I mentioned, and government, and this happens I think in the private sector too still, often, especially for large programs, they want baseline project schedule.   They get uncomfortable when those schedules change, which is what the baselining is all about. It's a subtle way of saying you should really know where you're going from the start of the project before you go spend my money, right? So as soon as you say that, sticking to that detailed schedule is a requirement, that you've baselined it, you need this change control process to change it. The focus of many of the people, at least partially becomes how do we stick to the schedule?   Bill Raymond: And so you start getting people adapting what they do, how they report status, lots of things just to comply with the schedule.   Dave Witkin: And I'm not saying schedules aren't important, right? Schedules may be very important. What I want to get across though is unintentionally for some leaders, and I'll give an example of a program I'm on right now where the leader has now made schedule adherence, the most important metric on the program.   The most important, and I would say, this is sort of an insidious, often overlooked reason why projects run into problems, maybe even sources of failure. Because we start paying attention to things that matter less. Again, I'm not saying schedules don't matter at all. I think they do, but they only matter to the extent that whatever your building delivers value for the consumers that it's for.   Anyway, so I think part of the challenge here is we finish these large projects and very rarely you got lessons learned after big phases or maybe after a large waterfall program. And very rarely do you hear anybody say, you know what the root cause of our problems was? It was the fact we focused so much on sticking to the schedule.   People don't say that, but at the same time I watch and I see the machinations, I see everything they try to do to stick to that schedule. The little, maybe bending of the truth a little bit about, we started this and we finished it on time even though it wasn't really validated, right? What does finished mean? So what's happened is we have just unknowingly picked our top metric.    So you get what you measure for better, for worse. And as I mentioned, this is happening on one large program I'm on today and it's as simple as the person at the top that the hippo, sometimes called, the Highest Paid Person's Opinion.   That person makes the most important meeting. Well, one of the meetings she does not miss and she makes clear everyone needs to attend, is where she gets a status update that is largely focused on the schedule. Are we adhering to the schedule and some other risks and red, yellow, green? But frankly,those risks are often overlooked.   So I think what people will do then is they're going to pay attention to what their leaders actually do, not what they say the key metrics are. So one of the big challenges is when we do define some value-based metrics, we need to help make sure our leaders believe in them and what they do supports and shows everybody else on the program that's really what matters.     [00:19:25] Similar challenges in agile  ---   Bill Raymond: And that example was a waterfall example but we have some of the similar challenges in agile too, don't we?   Dave Witkin: 100% right. Yeah. Do you want me to give a couple examples?   Bill Raymond: Sure.     [00:19:38]  ---   Dave Witkin: that's that. I'm going to give you some. I'm not going to cop out here and give you the old consulting line that, it depends. Let me actually start with, I think the best one it's actually a class of metrics, and you may have had some people on to talk about this already. But something called objectives and key results.   And for the listeners who don't know, it's often called an OKR. It got popularized in the 1990s by Intel, the chip company. And they wanted a way to keep people focused on those things that matter more. So they said, here's what we'll do. We'll kind of build a framework, and that framework has three pieces.   The number one piece is, what's our big rock objective, right? Little Stephen Covey is in there. What are we trying to achieve? And so for Tasha's program we might say, what we were trying to achieve, at least from the external user perspective, was to reduce the abandonment rate. Okay? So our big level goal is how do we reduce the abandonment rate? And how are we going to measure if we've done that?   So then you get to what are those key results? How do I measure if we're successful? And so we might break that down into a couple different key results. One might simply be okay, we have succeeded if at the end of a certain timeframe, let's say six months, we have reduced the abandonment rate by 30%.   Now you have a key result. You have something specific, it's measurable, we might say it's binary, right? There's not a lot of wiggle room either you did decrease that rate by 30% or you didn't. It's very business-focused, right? Very customer value focused. It makes you really think about what they want and need.   So often you want to talk to them and run this by them. After that, so now you've got your objective, you've broken that down into key results, you take that one step further and now you build initiatives. And those initiatives are designed to address those key results.    So if we go back to the story with Tasha, she didn't do this at all. She completely overlooked this. She said, I know what the problem is and I'm just going to start working to solve it, because of a lot of, there's a ton of anecdotal data. And look, maybe she looked at the system and said, this is terrible, she tried it, green screens and it was bad. But there were multiple stakeholder groups, there were multiple customers, all with different views of value.    So if you're going to build an application, one of the beauties of something like an OKR, OKRs is you can define OKRs for each of your key constituent groups. Could be, you might have an OKR even for executives about how much of what we're going to rebuild, going back to the Tasha story, is actually used on 80% of business days and how much is only used less than 20% of the time.   And we want to focus on those items that provide more value to more people. And that might even become an OKR for them. So it really helps avoid the types of problems that we talked about in Tasha's story. So that's number one. Again, it's a little cheating, it's a classof things, but the reality is you do need to, if you're going to talk about business value, you have to tailor it to the context.   Bill Raymond: That's an excellent example. And are there any others?     [00:22:48] Net Promoter Score ---   Dave Witkin: There are. So, we got time? I'll hit maybe two more.    One I like, again, imperfect, but there's a lot of positives about it. It's called Net Promoter Score. And you may have seen this or your listeners may, without even knowing it. You ever go to a website Bill, where at the end, you're just about to leave, and at the bottom pops up this little scale. It says, would you recommend this software product to your friends or family? And it's a scale, it says 0 to 10, that's all it is. You just pick one of those items from 0 to 10.    Bill Raymond: The 0 to 10 scale, anyway, got popularized and it's part of what's, I can't remember if it was Boston Consulting Group who popularized it, but Net Promoter Score it's very tough, meaning that if the people who score you 0 to 6 they're considered detractors, counts against you, right?   Dave Witkin: Then the people who score 7 or 8, they're neutrals. They don't count for you or against you. And then only two of the scores, 9 and 10 are considered your promoters. These are people who are likely to sing your praises across the globe. They're your tribe, if you will, they're going to help you probably get more customers. It's difficult to get good scores by design and the way it's designed, it's usually measured on a negative 100 to positive 100 scale, where it's considered at least pretty good if you get anything above zero, right? Because again, 70% of the scores are just under 70, counts against you.   It's tough. Part of what I like about it, it's a little bit of a broad sword, right? It doesn't give you an incision on exactly where the problem is. But ultimately, we are trying to keep audiences happy, right? Keep our customers happy. Now we need to dig in and figure out if they give us a 3 on a scale 0 to 10, they're detractors. Why do they give us a three? But just getting that Net Promoter Score, it's sort of a very broad thing and you can measure it over time. What's our trend? So a trend of that Net Promoter Score, very important. We can even use that during longer development cycles, which I don't promote.   But if you have to for your stakeholders to say, look, are we happy with how this is going? Are we getting enough feedback? And you can change the question. So we often do this for stakeholders, right? Maybe those executives, we do it for what we term consumers, people who are actually day-to-day using the products we're building.   And then for team members, which often surprises people. And by team members, I mean people on the agile team who are building the product. And people will say, well, why do you get their Net Promoter Score? Well, many of us coaches,and again, some of the, I don't want to say elite, but even I know some of the signers of the Agile Manifesto are big proponents that people who are working on software products really want to do a good job. And they are often your first line to be able to tell you, look, we're not really headed in the right direction. So people see the team member, sometimes called employee or ENPS, as possibly a leading indicator of problems that may come up later.   Bill Raymond: So you have a number of different approaches to measuring value and delivering value, and I think these are great examples, and I know you have a few more. But I think it would be nice if we could wrap up by just talking a little bit about how, if you're not tracking these metrics, what might it look like if you started to focus on them?   What would happen if you switched gears and said, we're not focusing as much on performance, which is still important, but we're focusing on value and looking at that instead and we're going to really shift directions. What might it look like if you do that?   Dave Witkin: Well first I'd say, one of the things that we want to look at is starting small. So great for us agilists, right? We want these small batches, small things. And again, because if we try to focus on too much, we get lost. Sometimes we'll talk aboutWIP or work in progress. And there's lots of evidence that trying to do too many things at once, really not only hurts you productivity-wise, but hurts you quality-wise. So pick one or two, right? And you can probably find a good coach, there's plenty of people who just focus on OKRs out there and good literature.    And maybe brainstorming it with a team and say, look, if we were going to pick one OKR that we might put in place, just one to start, what would it be? Where would we want to focus? And maybe that even leads to a survey or some conversations or some focus groups with different customers, which are things, again, as great agilists we know we want to be doing anyway. So it kind of forces you to do that, if you will, to do it well.    Once you do that, then I'd say, assuming you do not have the authority to put this measure in place yourself. So let's assume that's the case at least to start, I would say talk to your colleagues. Do you have a community of practice? Or maybe it's your whole team that you have all agreed you want to do this and you have a good rationale why.   Because these leaders, what I often see is somebody, a very passionate agilist, they go to a leader and they say, I want to do this because of X, Y, Z. And there's nothing wrong with that, but there's power in groups. These leaders, if you come with 10 people saying the same thing, we've talked about it. There was a lot of brain power that went into that, right? And they are far more likely to listen to you if you come with a little bit more ammo, if you will, meaning a lot of other people who have agreed, hey, this is a pretty good idea to try. So once you do that and maybe even before you come, you're going to try to put some specific steps in place.   So for example, with Net Promoter Score, and let's say you are going to go outside the organization and to your customers. Well, to do that, what I've run into before is we've got to go to the legal department before we were allowed to measure those external customers or to marketing or to some other stakeholders.   So you need to come up with some of those, what are my steps to actually get there? And then for NPSs, as a great example, we talked about something popping up on the screen. You need to think about those logistics. Do you have a tool, a widget already available to you that's going to integrate with what you do and allow you to collect the data? It doesn't have to be hard, right? So for us with the EMPS or team that promoter score, we simply use Google Forms or Microsoft Forms, it does fine.It doesn't have to be complicated. And I'd say to keep it relatively simple, that's generally enough to get started.   That's a good idea. Just get started internally. You can always look at this external element. It takes baby steps sometimes, I agree, especially when you have to work with legal, but you can get it done. Yes, agreed. And there's plenty of widgets that'll do that, right? For web-based software that you just put and it'll put it on there. Or again, it doesn't have to be that complicated. Google Forms, Microsoft Documents, SurveyMonkey, you know, and you work with some of your constituents to say, hey, is it okay if I send this to a hundred people? Would you mind? And then you need to get people to respond. Would you mind telling them this is important and asking them to take 10 minutes to do it? And I will tell you, at least on some of the larger programs, people say, I don't want to fill out a survey. There are pieces of the constituency, especially if the leaders say, I'd really like you to do this, can you please take five minutes? Put it on your calendar. We sometimes get 50, 70, even 80% response rates. Not all the time, but occasionally because these leaders make it important to respond.   Bill Raymond: I think there's some great ideas right there.    Dave Witkin, it's been a pleasure talking to you today. Thank you so much for sharing your thoughts and ideas. Is there any way someone can reach you?   Dave Witkin: Yeah. I'm passionate about this, so please feel free to reach out. The best way I think Bill, is through Linkedin. There's only a couple Dave Witkins on there, so if you search for Dave Witkin and maybe agile, you are likely to find me.   Bill Raymond: Yeah, that's great. And you have so many things that you've shared with me over the last few days and I really appreciate the time that you've spent to share these stories and kind of bring it home with some case studies. And yeah, absolutely, we'll make sure that your Linkedin address is on the https://agileinaction.com website.   Just look up the Dave Witkin interview, and also if you're listening to this in a podcast app, just scroll down to the show notes, the description, and you'll see the links there as well. Thank you so much for your time today, Dave.   Dave Witkin: Wonderful. Again, appreciate you having me.     [00:30:55] Outro ---   Bill Raymond: Thank you for listening to the Agile and Action Podcast with Bill Raymond. Subscribe now to stay current on the latest trends in team, organization, and agile techniques. Please take a moment to rate and comment to help us grow our community. This podcast is produced in affiliation with Cambermast LLC, and our executive producer is Reama Dagasan.   Speaker: If there is a topic you would like Bill to cover, contact him directly at bill.Raymond@agileinaction.com.   Episode source Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Your browser does not support the audio element. 1x initializing... × 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://devblogs.microsoft.com/dotnet/net-framework-february-2020-security-and-quality-rollup/
.NET Framework February 2020 Security and Quality Rollup - .NET Blog Skip to main content Microsoft Dev Blogs Dev Blogs Dev Blogs Home Developer Microsoft for Developers Visual Studio Visual Studio Code Develop from the cloud All things Azure Xcode DevOps Windows Developer ISE Developer Azure SDK Command Line Aspire Technology DirectX Semantic Kernel Languages C++ C# F# TypeScript PowerShell Team Python Java Java Blog in Chinese Go .NET All .NET posts .NET Aspire .NET MAUI AI ASP.NET Core Blazor Entity Framework NuGet Servicing .NET Blog in Chinese Platform Development #ifdef Windows Microsoft Foundry Azure Government Azure VM Runtime Team Bing Dev Center Microsoft Edge Dev Microsoft Azure Microsoft 365 Developer Microsoft Entra Identity Developer Old New Thing Power Platform Data Development Azure Cosmos DB Azure Data Studio Azure SQL OData Revolutions R Unified Data Model (IDEAs) Microsoft Entra PowerShell More Search Search No results Cancel Dev Blogs .NET Blog .NET Framework February 2020 Security and Quality Rollup .NET 10 is here! .NET 10 is now available: the most productive, modern, secure, intelligent, and performant release of .NET yet. Learn More Download Now February 11th, 2020 0 reactions .NET Framework February 2020 Security and Quality Rollup Tara Overfield Senior Software Engineer Show more Today, we are releasing the February 2020 Security and Quality Rollup Updates for .NET Framework. Security The February Security and Quality Rollup Update does not contain any new security fixes. See January 2020 Security and Quality Rollup for the latest security updates. Quality and Reliability This release contains the following quality and reliability improvements. Some improvements included in the Security and Quality Rollup and were previously released in the Security and Quality Rollup that was dated January 23, 2020. Acquistion & Deployment Addresses an issue where the installation of .NET 4.8 on Windows machines prior to 1809 build prevents .NET-specific settings to be migrated during Windows upgrade to build 1809. Note: to prevent this issue, this update must be applied before the upgrade to a newer version of Windows. CLR 1 A change in .NET Framework 4.8 regressed certain EnterpriseServices scenarios where an single-thread apartment object may be treated as an multi-thread apartment and lead to a blocking failure. This change now correctly identifies single-thread apartment objects as such and avoids this failure. There is a race condition in the portable PDB metadata provider cache that leaked providers and caused crashes in the diagnostic StackTrace API. To fix the race, detect the cause where the provider wasn’t being disposed and dispose it. Addresses an issue when in Server GC, if you are truly out of memory when doing SOH allocations (ie, there has been a full blocking GC and still no space to accommodate your SOH allocation), you will see full blocking GCs getting triggered over and over again with the trigger reason OutOfSpaceSOH. This fix is to throw OOM when we have detected this situation instead of triggering GCs in a loop. Addresses an issue caused by changing process affinity from 1 to N cores. Net Libraries Strengthens UdpClient against incorrect usage in network configurations with an exceptionally large MTU. SQL Addresses an issue with SqlClient Bid traces where information wasn’t being printed due to incorrectly formatted strings. WCF 2 There’s a race condition when listening paths are being closed down because of an IIS worker process crash and the same endpoints being reconfigured as listening but pending activation. When a conflict is found, this change allows for retrying with the assumption the conflict was transient due to this race condition. The retry count and wait duration are configurable via app settings.​ Added opt-in retry mechanism when configuring listening endpoints on the WCF Activation service to address potential race condition when rapidly restarting an IIS application multiple times while under high CPU load which resulted in an endpoint being inaccessible. Customers can opt in to the fix by adding the following AppSetting to SMSvcHost.exe.config under the %windir%\Microsoft.NET\Framework\v4.0.30319 and %windir%\Microsoft.NET\Framework64\v4.0.30319 folders as appropriate. This will retry registering an endpoint 10 times with a 1 second delay between each attempt before placing the endpoint in a failure state.       <appsettings>       <add key=”wcf:SMSvcHost:listenerRegistrationRetryCount” value=”10″>       <add key=”wcf:SMSvcHost:listenerRegistrationRetryDelayms” value=”1000″>       </add></appsettings> Windows Forms Addresses an issue in System.Windows.Forms.TextBox controls with ImeMode property set to NoControl. These controls now retain IME setting consistent with the OS setting regardles of the order of navigation on the page. Fix applies to CHS with pinyin keyboard. Addresses an issue with System.Windows.Forms.ComboBox control with ImeMode set to ImeMode.NoControl on CHS with Pinyin keyboard to retain input mode of the parent container control instead of switching to disabled IME when navigating using mouse clicks and when focus moves from a control with disabled IME to this ComboBox control. An accessibility change in .NET Framework 4.8 regressed editing IP address UI in the DataGridView in Create Cluster Wizard in Failover Cluster Services: users can’t enter the IP value after control UIA tree restructuring related to editing control movement to another editing cell. Such custom DataGridView cells (IP address cell) and their inner controls are currently not processed in default UIA tree restructuring to prevent this issue. WPF 3 Addresses an issue where under some circumstances, Popup’s in high-DPI WPF applications are not shown, are shown at the top-left corner of the screen, or are shown/rendered incompletely. Addresses an issue when creating an XPS document in WPF, font subsetting may result in a FileFormatException of the process of subsetting would grow the font. Addresses incorrect width of the text-insertion caret in TextBox et al., when the system DPI exceeds 96. In particular, the caret rendered nothing on a monitor with lower DPI than the primary, in some DPI-aware situations. Addresses a hang arising during layout of Grids with columns belonging to a SharedSizeGroup. Addresses a hang and eventual StackOverflowException arising when opening a RibbonSplitButton, if the app programmatically disables the button and replaces its menu items before the user releases the mouse button. Addresses certain hangs that can arise while scrolling a TreeView. 1 Common Language Runtime (CLR) 2 Windows Communication Foundation (WCF) 3 Windows Presentation Foundation (WPF) Getting the Update The Security and Quality Rollup is available via Windows Update, Windows Server Update Services, and Microsoft Update Catalog. Microsoft Update Catalog You can get the update via the Microsoft Update Catalog. For Windows 10, NET Framework 4.8 updates are available via Windows Update, Windows Server Update Services, Microsoft Update Catalog. Updates for other versions of .NET Framework are part of the Windows 10 Monthly Cumulative Update. Note : Customers that rely on Windows Update and Windows Server Update Services will automatically receive the .NET Framework version-specific updates. Advanced system administrators can also take use of the below direct Microsoft Update Catalog download links to .NET Framework-specific updates. Before applying these updates, please ensure that you carefully review the .NET Framework version applicability, to ensure that you only install updates on systems where they apply. The following table is for Windows 10 and Windows Server 2016+ versions. Product Version Cumulative Update Windows 10 1909 and Windows Server, version 1909 .NET Framework 3.5, 4.8 Catalog 4534132 Windows 10 1903 and Windows Server, version 1903 .NET Framework 3.5, 4.8 Catalog 4534132 Windows 10 1809 (October 2018 Update) and Windows Server 2019 4538122 .NET Framework 3.5, 4.7.2 Catalog 4534119 .NET Framework 3.5, 4.8 Catalog 4534131 Windows 10 1803 (April 2018 Update) .NET Framework 3.5, 4.7.2 Catalog 4537762 .NET Framework 4.8 Catalog 4534130 Windows 10 1709 (Fall Creators Update) .NET Framework 3.5, 4.7.1, 4.7.2 Catalog 4537789 .NET Framework 4.8 Catalog 4534129 Windows 10 1703 (Creators Update) .NET Framework 3.5, 4.7, 4.7.1, 4.7.2 Catalog 4537765 .NET Framework 4.8 Catalog 4537557 Windows 10 1607 (Anniversary Update) and Windows Server 2016 .NET Framework 3.5, 4.6.2, 4.7, 4.7.1, 4.7.2 Catalog 4537764 .NET Framework 4.8 Catalog 4534126 Windows 10 1507 .NET Framework 3.5, 4.6, 4.6.1, 4.6.2 Catalog 4537776 The following table is for earlier Windows and Windows Server versions. Product Version Security and Quality Rollup Windows 8.1, Windows RT 8.1 and Windows Server 2012 R2 4538124 .NET Framework 3.5 Catalog 4532946 .NET Framework 4.5.2 Catalog 4534120 .NET Framework 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2 Catalog 4534117 .NET Framework 4.8 Catalog 4534134 Windows Server 2012 4538123 .NET Framework 3.5 Catalog 4532943 .NET Framework 4.5.2 Catalog 4534121 .NET Framework 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2 Catalog 4534116 .NET Framework 4.8 Catalog 4534133 Note: Windows 7 support ended on January 14, 2020 Previous Monthly Rollups The last few .NET Framework Monthly updates are listed below for your convenience: January 2020 Preview of Quality Rollup January 2020 Security and Quality Rollup December 2019 Security and Quality Rollup November 2019 Preview of Quality Rollup 0 3 0 Share on Facebook Share on X Share on Linkedin Copy Link --> Category .NET .NET Framework WPF Share Author Tara Overfield Senior Software Engineer Tara is a Software Engineer on the .NET team. She works on releasing .NET Framework updates. 3 comments Discussion is closed. Login to edit/delete existing comments. Code of Conduct Sort by : Newest Newest Popular Oldest Krejčí Pavel --> Krejčí Pavel --> February 19, 2020 0 --> Collapse this comment --> Copy link --> --> --> --> Hi, Are from now on for Windows 7SP1 ESU .NET 4.8 updates part of Security-only update or Monthly Rollup one? Or there is another way? Reg., Paul Terence Teng --> Terence Teng --> March 15, 2020 0 --> Collapse this comment --> Copy link --> --> --> --> Same question. @Tara SuperCocoLoco . --> SuperCocoLoco . --> February 14, 2020 0 --> Collapse this comment --> Copy link --> --> --> --> No .NET framework updates for Windows 7 and Windows 10 is an ugly (very ugly) mobile OS unuseable on a desktop computer. I prefer an unsupported Windows 7 than a bad supported Windows 10 (Mobile Only, Cloud Only, Touch Only and local On-Premises Desktop never again). Read next February 12, 2020 Deprecating TLS 1.0 and 1.1 on NuGet.org – Stage 1 The NuGet Team February 18, 2020 .NET Core February 2020 Updates – 2.1.16, 3.0.3, and 3.1.2 Rahul Bhandari (MSFT) Stay informed Get notified when new posts are published. Email * Country/Region * Select... United States Afghanistan Åland Islands Albania Algeria American Samoa Andorra Angola Anguilla Antarctica Antigua and Barbuda Argentina Armenia Aruba Australia Austria Azerbaijan Bahamas Bahrain Bangladesh Barbados Belarus Belgium Belize Benin Bermuda Bhutan Bolivia Bonaire Bosnia and Herzegovina Botswana Bouvet Island Brazil British Indian Ocean Territory British Virgin Islands Brunei Bulgaria Burkina Faso Burundi Cabo Verde Cambodia Cameroon Canada Cayman Islands Central African Republic Chad Chile China Christmas Island Cocos (Keeling) Islands Colombia Comoros Congo Congo (DRC) Cook Islands Costa Rica Côte dIvoire Croatia Curaçao Cyprus Czechia Denmark Djibouti Dominica Dominican Republic Ecuador Egypt El Salvador Equatorial Guinea Eritrea Estonia Eswatini Ethiopia Falkland Islands Faroe Islands Fiji Finland France French Guiana French Polynesia French Southern Territories Gabon Gambia Georgia Germany Ghana Gibraltar Greece Greenland Grenada Guadeloupe Guam Guatemala Guernsey Guinea Guinea-Bissau Guyana Haiti Heard Island and McDonald Islands Honduras Hong Kong SAR Hungary Iceland India Indonesia Iraq Ireland Isle of Man Israel Italy Jamaica Jan Mayen Japan Jersey Jordan Kazakhstan Kenya Kiribati Korea Kosovo Kuwait Kyrgyzstan Laos Latvia Lebanon Lesotho Liberia Libya Liechtenstein Lithuania Luxembourg Macau SAR Madagascar Malawi Malaysia Maldives Mali Malta Marshall Islands Martinique Mauritania Mauritius Mayotte Mexico Micronesia Moldova Monaco Mongolia Montenegro Montserrat Morocco Mozambique Myanmar Namibia Nauru Nepal Netherlands New Caledonia New Zealand Nicaragua Niger Nigeria Niue Norfolk Island North Macedonia Northern Mariana Islands Norway Oman Pakistan Palau Palestinian Authority Panama Papua New Guinea Paraguay Peru Philippines Pitcairn Islands Poland Portugal Puerto Rico Qatar Réunion Romania Rwanda Saba Saint Barthélemy Saint Kitts and Nevis Saint Lucia Saint Martin Saint Pierre and Miquelon Saint Vincent and the Grenadines Samoa San Marino São Tomé and Príncipe Saudi Arabia Senegal Serbia Seychelles Sierra Leone Singapore Sint Eustatius Sint Maarten Slovakia Slovenia Solomon Islands Somalia South Africa South Georgia and South Sandwich Islands South Sudan Spain Sri Lanka St Helena Ascension Tristan da Cunha Suriname Svalbard Sweden Switzerland Taiwan Tajikistan Tanzania Thailand Timor-Leste Togo Tokelau Tonga Trinidad and Tobago Tunisia Turkey Turkmenistan Turks and Caicos Islands Tuvalu U.S. Outlying Islands U.S. Virgin Islands Uganda Ukraine United Arab Emirates United Kingdom Uruguay Uzbekistan Vanuatu Vatican City Venezuela Vietnam Wallis and Futuna Yemen Zambia Zimbabwe I would like to receive the .NET Blog Newsletter. Privacy Statement. Subscribe Follow this blog Are you sure you wish to delete this comment? × --> OK Cancel Sign in Theme Insert/edit link Close Enter the destination URL URL Link Text Open link in a new tab Or link to existing content Search No search term specified. Showing recent items. Search or use up and down arrow keys to select an item. Cancel Code Block × Paste your code snippet Ok Cancel What's new Surface Pro Surface Laptop Surface Laptop Studio 2 Copilot for organizations Copilot for personal use AI in Windows Explore Microsoft products Windows 11 apps Microsoft Store Account profile Download Center Microsoft Store support Returns Order tracking Certified Refurbished Microsoft Store Promise Flexible Payments Education Microsoft in education Devices for education Microsoft Teams for Education Microsoft 365 Education How to buy for your school Educator training and development Deals for students and parents AI for education Business Microsoft Cloud Microsoft Security Dynamics 365 Microsoft 365 Microsoft Power Platform Microsoft Teams Microsoft 365 Copilot Small Business Developer & IT Azure Microsoft Developer Microsoft Learn Support for AI marketplace apps Microsoft Tech Community Microsoft Marketplace Marketplace Rewards Visual Studio Company Careers About Microsoft Company news Privacy at Microsoft Investors Diversity and inclusion Accessibility Sustainability Your Privacy Choices Opt-Out Icon Your Privacy Choices Your Privacy Choices Opt-Out Icon Your Privacy Choices Consumer Health Privacy Sitemap Contact Microsoft Privacy Manage cookies Terms of use Trademarks Safety & eco Recycling About our ads © Microsoft 2025
2026-01-13T08:47:43
https://share.transistor.fm/s/7632eec5
APIs You Won't Hate | All About the API Specifications Conference APIs You Won't Hate 40 ? 30 : 10)" @keyup.document.left="seekBySeconds(-10)" @keyup.document.m="toggleMute" @keyup.document.s="toggleSpeed" @play="play(false, true)" @loadedmetadata="handleLoadedMetadata" @pause="pause(true)" preload="none" @timejump.window="seekToSeconds($event.detail.timestamp); shareTimeFormatted = formatTime($event.detail.timestamp)" > Trailer Bonus 10 40 ? 30 : 10)" class="seek-seconds-button" > 40 ? 30 : 10"> Subscribe Share More Info Download More episodes Subscribe newValue ? setTimeout(() => copied = false, 2500) : null)" @click="copied = copyFeedUrl()" class="form-input-group" > Copied to clipboard Apple Podcasts Spotify Pocket Casts Overcast Castro YouTube Goodpods Goodpods Metacast Amazon Music Pandora CastBox Anghami Anghami Fountain JioSaavn Gaana iHeartRadio TuneIn TuneIn Player FM SoundCloud SoundCloud Deezer Podcast Addict Share newValue ? setTimeout(() => copied = false, 2500) : null)" @click="copied = copyShareUrl()" class="form-input-group" > Share Copied to clipboard newValue ? setTimeout(() => copied = false, 2500) : null)" @click="copied = copyEmbedHtml()" class="form-input-group" > Embed Copied to clipboard Start at Trailer Bonus Full Transcript View the website updateDescriptionLinks($el))" class="episode-description" > Chapters June 2, 2021 by APIs You Won't Hate View the website Listen On Apple Podcasts Listen On Spotify Listen On YouTube RSS Feed Subscribe RSS Feed RSS Feed URL Copied! Follow Episode Details Matt is joined by Taylor and Kin, organizers of the API Specification Conference to talk about the conference! Show Notes Matt is joined by Taylor ( @taylor_atx ) and Kin ( @apievangelist ) to talk about the API Specifications Conference (ASC). We talked about how the conference is shaping up, the kinds of talks they are hoping to put forward in the program, how it is organizing a conference under the Linux Foundation and how can you get involved with such an important, yet very niche, topic in our community. Notes: @apispecs on twitter ASC conference website Call For Papers Conference Sponsorship Information Creators and Guests Host Mike Bifulco Cofounder and host of APIs You Won't Hate. Blogs at https://mikebifulco.com Into 🚴‍♀️, espresso ☕, looking after 🌍. ex @Stripe @Google @Microsoft What is APIs You Won't Hate? A no-nonsense (well, some-nonsense) podcast about API design & development, new features in the world of HTTP, service-orientated architecture, microservices, and probably bikes. All audio, artwork, episode descriptions and notes are property of APIs You Won't Hate, for APIs You Won't Hate, and published with permission by Transistor, Inc. Broadcast by
2026-01-13T08:47:43
https://reactjs.org/community/support.html
React Community – React React v 19.2 Search ⌘ Ctrl K Learn Reference Community Blog GET INVOLVED Community React Conferences React Meetups React Videos Meet the Team Docs Contributors Translations Acknowledgements Versioning Policy Is this page useful? Community React Community React has a community of millions of developers. On this page we’ve listed some React-related communities that you can be a part of; see the other pages in this section for additional online and in-person learning materials. Code of Conduct Before participating in React’s communities, please read our Code of Conduct. We have adopted the Contributor Covenant and we expect that all community members adhere to the guidelines within. Stack Overflow Stack Overflow is a popular forum to ask code-level questions or if you’re stuck with a specific error. Read through the existing questions tagged with reactjs or ask your own ! Popular Discussion Forums There are many online forums which are a great place for discussion about best practices and application architecture as well as the future of React. If you have an answerable code-level question, Stack Overflow is usually a better fit. Each community consists of many thousands of React users. DEV’s React community Hashnode’s React community Reactiflux online chat Reddit’s React community News For the latest news about React, follow @reactjs on Twitter , @react.dev on Bluesky and the official React blog on this website. Next React Conferences Copyright © Meta Platforms, Inc no uwu plz uwu? Logo by @sawaratsuki1004 Learn React Quick Start Installation Describing the UI Adding Interactivity Managing State Escape Hatches API Reference React APIs React DOM APIs Community Code of Conduct Meet the Team Docs Contributors Acknowledgements More Blog React Native Privacy Terms On this page Overview Code of Conduct Stack Overflow Popular Discussion Forums News
2026-01-13T08:47:43
https://dev.to/t/beginners#for-questions
Beginners - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Beginners Follow Hide "A journey of a thousand miles begins with a single step." -Chinese Proverb Create Post submission guidelines UPDATED AUGUST 2, 2019 This tag is dedicated to beginners to programming, development, networking, or to a particular language. Everything should be geared towards that! For Questions... Consider using this tag along with #help, if... You are new to a language, or to programming in general, You want an explanation with NO prerequisite knowledge required. You want insight from more experienced developers. Please do not use this tag if you are merely new to a tool, library, or framework. See also, #explainlikeimfive For Articles... Posts should be specifically geared towards true beginners (experience level 0-2 out of 10). Posts should require NO prerequisite knowledge, except perhaps general (language-agnostic) essentials of programming. Posts should NOT merely be for beginners to a tool, library, or framework. If your article does not meet these qualifications, please select a different tag. Promotional Rules Posts should NOT primarily promote an external work. This is what Listings is for. Otherwise accepable posts MAY include a brief (1-2 sentence) plug for another resource at the bottom. Resource lists ARE acceptable if they follow these rules: Include at least 3 distinct authors/creators. Clearly indicate which resources are FREE, which require PII, and which cost money. Do not use personal affiliate links to monetize. Indicate at the top that the article contains promotional links. about #beginners If you're writing for this tag, we recommend you read this article . If you're asking a question, read this article . Older #beginners posts 1 2 3 4 5 6 7 8 9 … 75 … 3379 Posts Left menu 👋 Sign in for the ability to sort posts by relevant , latest , or top . Right menu I Debug Code Like I Debug Life (Spoiler: Both Throw Exceptions) Alyssa Alyssa Alyssa Follow Jan 13 I Debug Code Like I Debug Life (Spoiler: Both Throw Exceptions) # discuss # career # programming # beginners 17  reactions Comments 8  comments 2 min read Readiness probe Khadijah (Dana Ordalina) Khadijah (Dana Ordalina) Khadijah (Dana Ordalina) Follow Jan 13 Readiness probe # aws # kubernetes # beginners # devops Comments Add Comment 1 min read Why My First Animation Blueprint Didn’t Work in Unreal Engine Dinesh Dinesh Dinesh Follow Jan 11 Why My First Animation Blueprint Didn’t Work in Unreal Engine # gamedev # unrealengine # beginners # animation Comments Add Comment 2 min read How Large Language Models (LLMs) Actually Generate Text Micheal Angelo Micheal Angelo Micheal Angelo Follow Jan 13 How Large Language Models (LLMs) Actually Generate Text # ai # machinelearning # beginners # learning 1  reaction Comments 1  comment 2 min read Networking 101 #1. Networking Introduction Himanshu Bhatt Himanshu Bhatt Himanshu Bhatt Follow Jan 13 Networking 101 #1. Networking Introduction # networking # devops # cloud # beginners 1  reaction Comments Add Comment 8 min read I Fired the "One-Click" AI Builders: How I Built a React Portfolio with Gemini (Without Knowing React) Aaditya Thakur Aaditya Thakur Aaditya Thakur Follow Jan 13 I Fired the "One-Click" AI Builders: How I Built a React Portfolio with Gemini (Without Knowing React) # ai # webdev # career # beginners Comments Add Comment 3 min read Auto-Update “Last Updated” Date in README on Every GitHub Push Micheal Angelo Micheal Angelo Micheal Angelo Follow Jan 13 Auto-Update “Last Updated” Date in README on Every GitHub Push # github # automation # beginners Comments Add Comment 2 min read Mutable vs Immutable Objects in Python (Explained Simply) Micheal Angelo Micheal Angelo Micheal Angelo Follow Jan 13 Mutable vs Immutable Objects in Python (Explained Simply) # python # programming # beginners # learning Comments Add Comment 2 min read Building an AI Photo Restoration Tool with Next.js Q1Hang Q1Hang Q1Hang Follow Jan 13 Building an AI Photo Restoration Tool with Next.js # webdev # ai # programming # beginners Comments Add Comment 1 min read OSI Model — Clean, Confusion-Free Explanation (For When You’re Stuck) Micheal Angelo Micheal Angelo Micheal Angelo Follow Jan 13 OSI Model — Clean, Confusion-Free Explanation (For When You’re Stuck) # networking # computerscience # beginners # osi Comments Add Comment 2 min read 7 Small Workflow Tweaks That Actually Helped My Developer Productivity Johannes Millan Johannes Millan Johannes Millan Follow Jan 12 7 Small Workflow Tweaks That Actually Helped My Developer Productivity # productivity # beginners # career # programming 5  reactions Comments 1  comment 2 min read 10 Secret Tips That Make You Better at DSA Akash Pattnaik Akash Pattnaik Akash Pattnaik Follow Jan 12 10 Secret Tips That Make You Better at DSA # productivity # programming # beginners # algorithms 1  reaction Comments Add Comment 3 min read Upskilling in AI: Unconventional Prompt Use Brandon Skinner Brandon Skinner Brandon Skinner Follow Jan 11 Upskilling in AI: Unconventional Prompt Use # ai # beginners Comments Add Comment 5 min read From Docker Errors to Production-Ready: Building a PHP Microservices CI/CD Pipeline Alan Varghese Alan Varghese Alan Varghese Follow Jan 13 From Docker Errors to Production-Ready: Building a PHP Microservices CI/CD Pipeline # webdev # devops # php # beginners Comments Add Comment 4 min read The `/context` Command: X-Ray Vision for Your Tokens Rajesh Royal Rajesh Royal Rajesh Royal Follow Jan 12 The `/context` Command: X-Ray Vision for Your Tokens # tutorial # claudecode # productivity # beginners Comments Add Comment 4 min read Lumina — Where Blogs Meet AI Mayank Parashar Mayank Parashar Mayank Parashar Follow Jan 12 Lumina — Where Blogs Meet AI # webdev # programming # ai # beginners 14  reactions Comments 5  comments 2 min read A Small pip Flag That Keeps Your Terminal Clean Micheal Angelo Micheal Angelo Micheal Angelo Follow Jan 13 A Small pip Flag That Keeps Your Terminal Clean # python # productivity # beginners Comments Add Comment 1 min read Setting Up Jenkins SSH Build Agents: A Complete Troubleshooting Guide Faruq2991 Faruq2991 Faruq2991 Follow Jan 10 Setting Up Jenkins SSH Build Agents: A Complete Troubleshooting Guide # beginners # devops # cloud # cloudcomputing 2  reactions Comments Add Comment 8 min read What SmartML Benchmarks Tell You Before Hyperparameter Tuning Jashwanth Thatipamula Jashwanth Thatipamula Jashwanth Thatipamula Follow Jan 13 What SmartML Benchmarks Tell You Before Hyperparameter Tuning # ai # machinelearning # learning # beginners 5  reactions Comments Add Comment 2 min read AI for operations: remove friction, not people Jaideep Parashar Jaideep Parashar Jaideep Parashar Follow Jan 12 AI for operations: remove friction, not people # webdev # ai # beginners # productivity 16  reactions Comments 1  comment 2 min read What I Shipped Today: Evidence-Based AI Answers for Database Schemas Rushikesh Bodakhe Rushikesh Bodakhe Rushikesh Bodakhe Follow Jan 12 What I Shipped Today: Evidence-Based AI Answers for Database Schemas # webdev # programming # ai # beginners 1  reaction Comments Add Comment 2 min read What is Selenium, Why Do We Use Selenium for Automation, and Its Relevance in Automation Testing Using Python NandithaShri S.k NandithaShri S.k NandithaShri S.k Follow Jan 13 What is Selenium, Why Do We Use Selenium for Automation, and Its Relevance in Automation Testing Using Python # programming # webdev # beginners # python Comments Add Comment 2 min read perceptron - day 01 of dl Mahraib Fatima Mahraib Fatima Mahraib Fatima Follow Jan 12 perceptron - day 01 of dl # ai # beginners # deeplearning # machinelearning 1  reaction Comments Add Comment 2 min read A Mnemonic That Finally Makes for…in vs for…of Stick Mahlon Gumbs Mahlon Gumbs Mahlon Gumbs Follow Jan 12 A Mnemonic That Finally Makes for…in vs for…of Stick # javascript # webdev # programming # beginners Comments Add Comment 2 min read Load Balancing a Simple Static Site with Docker and Nginx: A Beginner's Journey Niraj Maharjan Niraj Maharjan Niraj Maharjan Follow Jan 12 Load Balancing a Simple Static Site with Docker and Nginx: A Beginner's Journey # docker # nginx # loadbalance # beginners Comments Add Comment 11 min read loading... trending guides/resources The Vibe Coding Paradox An Honest Review of Google Antigravity 5 YouTube Channels Every Programmer Should Follow in 2025! I Built a Desktop App That Commits to GitHub So I Don’t Have To Lie About Consistency DevOps From Scratch: A Student’s Diary (Entry #00) The Night Kubernetes Almost Made Me Quit DevOps Forever How I Built a Graphics Renderer for Node.js Web Development Is Meant to Be Built, Not Watched Understanding Kubernetes: part 60 – Kubernetes 1.35 Changelog I Stopped Chasing Features and Started Designing Systems Yes, true + true === 2. And No, JavaScript Isn’t Broken How to Become an AWS Community Builder Gemini 3 vs GPT-5.2: Detailed Coding Comparison Optimizing JSON for LLMs What happens when you type console.log()? Rust Lifetimes Explained When React Starts Acting Like jQuery (and You Can Totally Tell 😅) Extensões para VSCode Navigating the Switch: How to Choose the Right Linux Distro in 2026 The Developer's Safety Net - Introduction to TypeScript 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://jsfiddle.net/Luktwrdm/
Edit fiddle - JSFiddle - Code Playground over 8 years ago">AN Run --> Vote for features --> Embed fiddle on websites/blogs --> Go PRO JSFiddle - Test your JavaScript, CSS, HTML or CoffeeScript online with JSFiddle. AI Code Completion AI Code Completion is a BYOK implementation. Get your API Key → The model we use is Codestral by Mistral . We won't save your API Key in our database, it's only stored in the browser for your convinience. Your recent fiddles Collections PRO Select collections: New collection Resources URL cdnjs 3 prop-types.js Remove react.development.js Remove react-dom.development.js Remove Paste a direct CSS/JS URL Type a library name to fetch from CDNJS Async requests Simulating async requests: JSON /echo/json/ JSONP /echo/jsonp/ HTML /echo/html/ XML /echo/xml/ See docs for more info. Changelog JSFiddle Apps Coder Fonts Color Palette Generator CSS Flexbox Generator Sign in Code panel options Change code languages, preprocessors and plugins HTML JavaScript CSS Language HTML HAML Doctype XHTML 1.0 Strict XHTML 1.0 Transitional HTML 5 HTML 4.01 Strict HTML 4.01 Transitional HTML 4.01 Frameset Body tag Language JavaScript CoffeeScript JavaScript 1.7 Babel + JSX TypeScript CoffeeScript 2 Vue React Preact Extensions Alpine.js 2.1.2 AngularJS 1.1.1 AngularJS 1.2.1 AngularJS 1.4.8 AngularJS 2.0.0-alpha.47 Bonsai 0.4.1 Brick edge CreateJS 2013.09.25 CreateJS 2015.05.21 D3 3.x D3 4.13.0 D3 5.9.2 Dojo (nightly) Dojo 1.4.8 Dojo 1.5.6 Dojo 1.6.5 Dojo 1.7.12 Dojo 1.8.14 Dojo 1.9.11 Dojo 1.10.8 Dojo 1.11.4 Dojo 1.12.2 Ember (latest) Enyo (nightly) Enyo 2.0.1 Enyo 2.1 Enyo 2.2.0 Enyo 2.4.0 Enyo 2.5.1 Enyo 2.7.0 ExtJS 3.1.0 ExtJS 3.4.0 ExtJS 4.1.0 ExtJS 4.1.1 ExtJS 4.2.0 ExtJS 5.0.0 ExtJS 5.1.0 ExtJS 6.2.0 FabricJS 1.5.0 FabricJS 1.7.7 FabricJS 1.7.15 FabricJS 1.7.20 Inferno 1.0.0-beta9 JSBlocks (edge) KineticJS 4.0.5 KineticJS 4.3.1 Knockout.js 2.0.0 Knockout.js 2.1.0 Knockout.js 2.2.1 Knockout.js 2.3.0 Knockout.js 3.0.0 Knockout.js 3.4.2 Lo-Dash 2.2.1 Minified 1.0 beta1 MithrilJS 0.2.0 MithrilJS 1.1.6 Mootools (nightly) Mootools 1.3.2 Mootools 1.3.2 (compat) Mootools 1.4.5 Mootools 1.4.5 (compat) Mootools 1.5.1 Mootools 1.5.2 Mootools 1.5.2 (compat) Mootools 1.6.0 Mootools 1.6.0 (compat) No-Library (pure JS) OpenUI5 (latest, mobile) Paper.js 0.22 Pixi 3.0.11 Pixi 4.0.0 Processing.js 1.2.3 Processing.js 1.3.6 Processing.js 1.4.1 Processing.js 1.4.7 Prototype 1.6.1.0 Prototype 1.7.3 RactiveJS 0.7.3 Raphael 1.4 Raphael 1.5.2 Raphael 2.1.0 React 0.3.2 React 0.4.0 React 0.8.0 React 0.9.0 React 0.14.3 RightJS 2.1.1 RightJS 2.3.1 Riot 3.7.4 Shipyard (nightly) Shipyard 0.2 Thorax 2.0.0rc3 Thorax 2.0.0rc6 Three.js r54 Three.js 105 Underscore 1.3.3 Underscore 1.4.3 Underscore 1.4.4 Underscore 1.8.3 Vue (edge) Vue 1.0.12 Vue 2.2.1 WebApp Install 0.1 XTK edge YUI 2.8.0r4 YUI 3.5.0 YUI 3.6.0 YUI 3.7.3 YUI 3.8.0 YUI 3.10.1 YUI 3.14.0 YUI 3.16.0 YUI 3.17.2 Zepto 1.0rc1 jQuery (edge) jQuery 1.9.1 jQuery 2.1.3 jQuery 2.2.4 jQuery 3.2.1 jQuery 3.3.1 jQuery 3.4.1 jQuery Slim 3.2.1 jQuery Slim 3.3.1 jQuery Slim 3.4.1 jTypes 2.1.0 qooxdoo 2.0.3 qooxdoo 2.1 svg.js 2.6.5 svg.js 2.7.1 svg.js 3.0.5 script attribute Language CSS SCSS SASS PostCSS (Stage 0+) PostCSS (Stage 3+) Tailwind CSS Options --> Reset CSS <div id="container"></div> class App extends React.Component { static propTypes = { name: PropTypes.string, }; render() { return ( <div> <h1>Hello, {this.props.name}</h1> </div> ); } } ReactDOM.render(<App name="world"/>, document.getElementById('container')); This fiddle has previously unsaved changes. Apply changes Discard Color Palette Generator Generate a cool color palette with a few clicks CSS Flexbox Generator Generate your CSS Flexbox layout in the simplest of ways Coder Fonts Curated list of quality monospace fonts for coders Share or embed fiddle Customize the embeddable experience for websites Tabs: JavaScript HTML CSS Result Visual: Light Dark Embed snippet Prefer iframe? : ' readonly> No autoresizing to fit the code Render blocking of the parent page Editor settings Customize the behavior and feel of the editor Behavior Auto-run code Only auto-run code that validates Auto-save code Live code validation Hot reload CSS Hot reload HTML General Line numbers Wrap lines Indent With Spaces Code Autocomplete Indent size: 2 spaces 4 spaces Font size: 10px 11px 12px 13px 14px 15px 16px 17px 18px 19px 20px Font family: Console Console in the editor Clear console on run Your recent fiddles Recently created fiddles, including ones created while logged out JSFiddle changelog A log of all the changes made to JSFiddle – big and small. Curated list of monospace coder fonts You can now use different monospace fonts in the editor − we now have a curated list of pretty awesome fonts available including premium ones. Just open the Coder Fonts mini-app from the sidebar or from Editor settings . My current favorites are Input and Commit Mono . CSS Flexbox generator as a JSFiddle app Our CSS Flexbox generator lets you create a layout, and skip knowing the confusing properties and value names (let's be honest the W3C did not make a good job here). Not gonna lie, this was heavily inspired by flexer.dev but coded completely from scratch. Behavior change for External Resources Adding External Resources will no longer create a list of resources in the sidebar but will be injected as a LINK or SCRIPT tag inside of the HTML panel. Code Completion with additional context The Code Completion will now also have the context of all panels before suggesting code to you - so if for example you have some CSS or JS, the HTML panel will suggest code based on the other two panels. 🦄 AI Code Completion (beta) Introducing some AI sprinkle in the editor - Code Completion based on the Codestral model (by Mistral ). For now it's a BYOK implmentation which means you need to provide your own API Key − you can get it for free . Editor switch from CodeMirror to Monaco (same as VSCode) After much deliberation I've decided to make the switch from CodeMirror to Monaco . There's a few reasons for this. CodeMirror 5 is no longer being developed, and the switch to 6 would be a huge rewrite since there's not much compatibility between the two versions. Monaco itself has lots of features already built-in, things that took quite a few external plugins to get into the CodeMirror implementation. I'm incredibly thankful to Marijn for his work on CodeMirror , it has served well for many years. JSFiddle will load faster Technical debt is a drag man. Remember the time when MooTools was state-of-art JS framework? We do and so much of JSFiddle was still dependant on it till this day, but since almost all MooTools features are now available in native JS it was high-time to strip it out of the codebase. This took around a week of work, lots of testing, but it's now done. And the final package of our JS bundle is ~30% smaller . Add a new collection Collect your fiddles in collections Get a Mistral API Key A short guide to getting a free Mistral API Key. Sign up for a Mistral account, and pick the free Experiment subscription plan. Log in, and go to your organization's API Keys section. Click Create new key , fill "JSFiddle" as the name for the API key, and save. Copy the key, and paste it into JSFiddle − under the AI Code Completion in the Sidebar. Done ! AI Code Completion should now be working. Classic Columns Bottom results Right results Tabs (columns) Tabs (rows) System Light Dark Set fiddle expiration 1 day 10 days 1 month 6 months 1 year Keep forever Please Whitelist JSFiddle in your content blocker. Help keep JSFiddle free for always by one of two ways: Whitelist JSFiddle in your content blocker (two clicks) Go PRO and get access to additional PRO features → Ad-free All ads in the editor and listing pages are turned completely off. Use pre-released features You get to try and use features (like the Palette Color Generator) months before everyone else. Fiddle collections Sort and categorize your Fiddles into multiple collections. Private collections and fiddles You can make as many Private Fiddles, and Private Collections as you wish! Console Debug your Fiddle with a minimal built-in JavaScript console. Early AI features Try the AI features we're rolling out. --> Join the 4+ million users, and keep the JSFiddle dream alive. Ad-free All ads in the editor and listing pages are turned completely off. Use pre-released features You get to try and use features (like the Palette Color Generator) months before everyone else. Fiddle collections Sort and categorize your Fiddles into multiple collections. Private collections and fiddles You can make as many Private Fiddles, and Private Collections as you wish! Console Debug your Fiddle with a minimal built-in JavaScript console. JSFiddle is used by you and 4+ million other developers, in many companies ... ... and top educational institutions: Join as PRO
2026-01-13T08:47:43
https://parenting.forem.com/code-of-conduct
Code of Conduct - Parenting Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account Parenting Close Code of Conduct Last updated July 31, 2023 All participants of DEV Community are expected to abide by our Code of Conduct and Terms of Service , both online and during in-person events that are hosted and/or associated with DEV Community. Our Pledge In the interest of fostering an open and welcoming environment, we as moderators of DEV Community pledge to make participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. Our Standards Examples of behavior that contributes to creating a positive environment include: Using welcoming and inclusive language Being respectful of differing viewpoints and experiences Referring to people by their pronouns and using gender-neutral pronouns when uncertain Gracefully accepting constructive criticism Focusing on what is best for the community Showing empathy towards other community members Citing sources if used to create content (for guidance see DEV Community: How to Avoid Plagiarism ) Following our AI Guidelines and disclosing AI assistance if used to create content Examples of unacceptable behavior by participants include: The use of sexualized language or imagery and unwelcome sexual attention or advances The use of hate speech or communication that is racist, homophobic, transphobic, ableist, sexist, or otherwise prejudiced/discriminatory (i.e. misusing or disrespecting pronouns) Trolling, insulting/derogatory comments, and personal or political attacks Public or private harassment Publishing others' private information, such as a physical or electronic address, without explicit permission Plagiarizing content or misappropriating works Other conduct which could reasonably be considered inappropriate in a professional setting Dismissing or attacking inclusion-oriented requests We pledge to prioritize marginalized people's safety over privileged people's comfort. We will not act on complaints regarding: 'Reverse' -isms, including 'reverse racism,' 'reverse sexism,' and 'cisphobia' Reasonable communication of boundaries, such as 'leave me alone,' 'go away,' or 'I'm not discussing this with you.' Someone's refusal to explain or debate social justice concepts Criticisms of racist, sexist, cissexist, or otherwise oppressive behavior or assumptions Enforcement Violations of the Code of Conduct may be reported by contacting the team via the abuse report form or by sending an email to support@dev.to . All reports will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. Further details of specific enforcement policies may be posted separately. Moderators have the right and responsibility to remove comments or other contributions that are not aligned to this Code of Conduct or to suspend temporarily or permanently any members for other behaviors that they deem inappropriate, threatening, offensive, or harmful. If you agree with our values and would like to help us enforce the Code of Conduct, you might consider volunteering as a DEV moderator. Please check out the DEV Community Moderation page for information about our moderator roles and how to become a mod. Attribution This Code of Conduct is adapted from: Contributor Covenant, version 1.4 Write/Speak/Code Geek Feminism 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV Parenting — A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Home About Contact Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . Parenting © 2016 - 2026. Navigating the chaos and joy of parenting. Log in Create account
2026-01-13T08:47:43
https://youtube.com/@thisisfinedev
fine - YouTube 정보 보도자료 저작권 문의하기 크리에이터 광고 개발자 약관 개인정보처리방침 정책 및 안전 YouTube 작동의 원리 새로운 기능 테스트하기 © 2026 Google LLC, Sundar Pichai, 1600 Amphitheatre Parkway, Mountain View CA 94043, USA, 0807-882-594 (무료), yt-support-solutions-kr@google.com, 호스팅: Google LLC, 사업자정보 , 불법촬영물 신고 크리에이터들이 유튜브 상에 게시, 태그 또는 추천한 상품들은 판매자들의 약관에 따라 판매됩니다. 유튜브는 이러한 제품들을 판매하지 않으며, 그에 대한 책임을 지지 않습니다.
2026-01-13T08:47:43
https://docs.suprsend.com/docs/react-native-android-integration
Android Integration - SuprSend, Notification infrastructure for Product teams Skip to main content SuprSend, Notification infrastructure for Product teams home page Search... ⌘ K Community Trust Center Platform Status Postman Collection Developer Resources Overview Updates and Versioning Versioning and Support Policy SDK Changelog Authentication API Keys and Secrets Service Token Best Practices for Key & Token Management MCP Overview BETA Quickstart Tool List Building with LLMs Security Security SDKs and APIs SDKs SDK Overview SuprSend Backend SDK SuprSend Client SDK Authentication Javascript Android iOS React Native Android Integration iOS Integration Manage Users Sync Events iOS Push Setup Android Push (FCM) Flutter React Management API REST API Postman Collection Features Validate Trigger Payload Type Safety Testing Testing the Template Test Mode Monitoring and Logging Logs Data Out Contact Us Get Started SuprSend, Notification infrastructure for Product teams home page Search... ⌘ K Ask AI Contact Us Get Started Get Started Search... Navigation React Native Android Integration Documentation API Reference Management API CLI Reference Developer Resources Changelog Documentation API Reference Management API CLI Reference Developer Resources Changelog React Native Android Integration OpenAI Open in ChatGPT This document will cover integration steps for Android side of your ReactNative application. OpenAI Open in ChatGPT ​ Installation 1 Install Package npm yarn Copy Ask AI npm install @ suprsend / react - native - sdk @ latest 2 Add the below dependency Add the this dependency in project level build.gradle , inside allprojects > repositories . build.gradle Copy Ask AI allprojects { repositories { ... mavenCentral () // add this } } 3 Add Android SDK dependency inside in app level build.gradle. build.gradle Copy Ask AI dependencies { ... implementation 'com.suprsend:rn:0.1.10' // add this } Note: If you get any error regarding minSdkVersion please update it to 19 or more. ​ Initialization 1 Initialise the Suprsend Android SDK Initialise the Suprsend android SDK in MainApplication.java inside onCreate method and just above super.onCreate() line. javascript Copy Ask AI import app . suprsend . SSApi ; // import sdk ... SSApi . Companion . init ( this , WORKSPACE KEY , WORKSPACE SECRET ); // inside onCreate method just above super.onCreate() line Replace WORKSPACE KEY and WORKSPACE SECRET with your workspace values. You will get them the tokens from Settings -> API Keys inside Suprsend dashboard . 2 Import SuprSend SDK in your client side Javascript code. javascript Copy Ask AI import suprsend from "@suprsend/react-native-sdk" ; ​ Logging By default the logs of SuprSend SDK are disabled. You can enable the logs just in debug mode while in development by the below condition. javascript Copy Ask AI suprsend . enableLogging (); // available from v2.0.2 // deprecated from v2.0.2 suprsend . setLogLevel ( level ) suprsend . setLogLevel ( "VERBOSE" ) suprsend . setLogLevel ( "DEBUG" ) suprsend . setLogLevel ( "INFO" ) suprsend . setLogLevel ( "ERROR" ) suprsend . setLogLevel ( "OFF" ) Was this page helpful? Yes No Suggest edits Raise issue Previous iOS Integration This document will cover integration steps for iOS side of your ReactNative application. Next ⌘ I x github linkedin youtube Powered by On this page Installation Initialization Logging
2026-01-13T08:47:43
https://parenting.forem.com/about
About Parenting Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account Parenting Close About Parenting Welcome to Parenting! Parenting is the most rewarding, challenging, and unpredictable journey of a lifetime. Whether you're celebrating a first smile, navigating the tumultuous teens, or learning to let go with adult children, we're here for you. Parenting is a warm and supportive community built by parents, for parents. We're here to share the unfiltered realities—the sleepless nights and the belly laughs, the tough questions and the proudest moments. You are not alone on this adventure. Our Mission Our purpose is simple: to create a judgment-free space where parents can connect, share experiences, and find solidarity. We embrace the idea that there is no one-size-fits-all manual for raising children. Instead, we learn from each other, offering diverse perspectives and unwavering support through every stage of parenthood, from the first cries of infancy to the complexities of having grown-up kids. What to Discuss We encourage open and honest conversations about all aspects of family life. Jump into discussions or start your own on topics like: Milestone Moments: Share the joy of first steps, graduations, and everything in between. Tough Questions: From sleep training and toddler tantrums to screen time debates and difficult conversations. Product & Resource Swaps: Ask for recommendations on everything from the best strollers to books on navigating teenage anxiety. Personal Stories: Share the funny, messy, and beautiful moments that make up your unique parenting story. Seeking Advice: Get real-world perspectives on challenges you're facing. Relationship Dynamics: Discuss co-parenting, managing family expectations, and finding time for your partner. How to Get Involved Becoming part of our community is easy! Here’s how you can contribute: Ask a question: No question is too big or too small. The collective wisdom here is one of our greatest assets. Share your experience: Your story could be exactly what another parent needs to hear today. Offer support: Sometimes, the best response is a simple, "I've been there too." Lend an ear and a virtual shoulder to lean on. Leave some love: Engage with posts that resonate with you. Your participation helps great conversations rise to the top. Our Community Values To keep this a safe, welcoming, and helpful space for everyone, we ask all members to follow a few simple guidelines: Be Kind and Respectful. We all have different backgrounds and parenting styles. Engage in constructive, not critical, conversations. It's okay to disagree with an idea, but it's never okay to attack a person. Support, Don't Judge. This is a shame-free zone. Offer empathy and encouragement. We are here to lift each other up. Protect Privacy. Be mindful of sharing personally identifiable information about yourself and your children. What you share is public. Never share private information about other members. This Is Not a Substitute for Professional Advice. While sharing personal experiences is valuable, please remember that this community cannot provide professional medical, legal, or mental health advice. Always consult a qualified expert for serious concerns. No Spam or Self-Promotion. This community is for connection, not for advertising. Please refrain from unsolicited marketing or excessive self-promotion. We're so glad you're here ❤️ 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV Parenting — A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Home About Contact Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . Parenting © 2016 - 2026. Navigating the chaos and joy of parenting. Log in Create account
2026-01-13T08:47:43
https://docs.suprsend.com/docs/integrate-python-sdk
Integrate Python SDK - SuprSend, Notification infrastructure for Product teams Skip to main content SuprSend, Notification infrastructure for Product teams home page Search... ⌘ K Community Trust Center Platform Status Postman Collection Developer Resources Overview Updates and Versioning Versioning and Support Policy SDK Changelog Authentication API Keys and Secrets Service Token Best Practices for Key & Token Management MCP Overview BETA Quickstart Tool List Building with LLMs Security Security SDKs and APIs SDKs SDK Overview SuprSend Backend SDK Python SDK Integrate Python SDK Manage Users Objects Send and Track Events Trigger Workflow from API Tenants Lists Broadcast Node.js SDK Java SDK Go SDK SuprSend Client SDK Management API REST API Postman Collection Features Validate Trigger Payload Type Safety Testing Testing the Template Test Mode Monitoring and Logging Logs Data Out Contact Us Get Started SuprSend, Notification infrastructure for Product teams home page Search... ⌘ K Ask AI Contact Us Get Started Get Started Search... Navigation Python SDK Integrate Python SDK Documentation API Reference Management API CLI Reference Developer Resources Changelog Documentation API Reference Management API CLI Reference Developer Resources Changelog Python SDK Integrate Python SDK OpenAI Open in ChatGPT Install & Initialize SuprSend Python SDK using your workspace credentials for sending notifications. OpenAI Open in ChatGPT ​ Installation 1 Install 'libmagic' system package. You can skip this step if you already have this package installed in your system. bash Copy Ask AI # if you are using linux / debian based systems sudo apt install libmagic # If you are using macOS brew install libmagic 2 Install 'suprsend-py-sdk' using pip bash Copy Ask AI $ pip install suprsend-py-sdk # to upgrade to latest SDK version $ pip install suprsend-py-sdk --upgrade Python version 3.7 or later is required If your python3 version is lower than 3.7, upgrade it. Schema Validation Support : If you’re using schema validation for workflow payloads, you need Python SDK v0.15.0 or later. The API response format was modified to support schema validation, and older SDK versions may not properly handle validation errors. ​ Initialization For initializing SDK, you need workspace_key and workspace_secret. You will get both the tokens from your Suprsend dashboard (Developers -> API Keys). python Copy Ask AI from suprsend import Suprsend # Initialize SDK supr_client = Suprsend( "WORKSPACE KEY" , "WORKSPACE SECRET" ) Was this page helpful? Yes No Suggest edits Raise issue Previous Manage Users Create, update, & manage user profiles and communication channels using Python SDK methods. Next ⌘ I x github linkedin youtube Powered by On this page Installation Initialization
2026-01-13T08:47:43
https://share.transistor.fm/s/8f8b74c8
APIs You Won't Hate | Maybe GraphQL isn't so terrible? A conversation with Marc-Andre Giroux APIs You Won't Hate 40 ? 30 : 10)" @keyup.document.left="seekBySeconds(-10)" @keyup.document.m="toggleMute" @keyup.document.s="toggleSpeed" @play="play(false, true)" @loadedmetadata="handleLoadedMetadata" @pause="pause(true)" preload="none" @timejump.window="seekToSeconds($event.detail.timestamp); shareTimeFormatted = formatTime($event.detail.timestamp)" > Trailer Bonus 10 40 ? 30 : 10)" class="seek-seconds-button" > 40 ? 30 : 10"> Subscribe Share More Info Download More episodes Subscribe newValue ? setTimeout(() => copied = false, 2500) : null)" @click="copied = copyFeedUrl()" class="form-input-group" > Copied to clipboard Apple Podcasts Spotify Pocket Casts Overcast Castro YouTube Goodpods Goodpods Metacast Amazon Music Pandora CastBox Anghami Anghami Fountain JioSaavn Gaana iHeartRadio TuneIn TuneIn Player FM SoundCloud SoundCloud Deezer Podcast Addict Share newValue ? setTimeout(() => copied = false, 2500) : null)" @click="copied = copyShareUrl()" class="form-input-group" > Share Copied to clipboard newValue ? setTimeout(() => copied = false, 2500) : null)" @click="copied = copyEmbedHtml()" class="form-input-group" > Embed Copied to clipboard Start at Trailer Bonus Full Transcript View the website updateDescriptionLinks($el))" class="episode-description" > Chapters June 12, 2020 by APIs You Won't Hate View the website Listen On Apple Podcasts Listen On Spotify Listen On YouTube RSS Feed Subscribe RSS Feed RSS Feed URL Copied! Follow Episode Details Phil and Matt talk with Marc-Andre Giroux, a developer working at Github who helps maintain their REST and GraphQL APIs. Show Notes A quick note before we get started: We recorded this episode back in April of 2020 when everyone was quarantining and making bread to post on instagram. Fast forward to now, in June, American cities, and cities around the world are joining in, protesting the systemic racism that has long been an issue in our societies. While our energy and focus turned to current events, editing this episode took a seat on the backburner. That said, we have it ready… but it couldn’t be released at a worse time. Three white dudes talking about APIs while our friends in other communities are fighting injustices that have long kept them down seems to be a bit tone deaf, and we know that, recognize that and commit ourselves to being involved. There are a lot of conversations we want to have around this topic both in the API world, and outside of it. We don’t want this episode to take away from the discussions going on around such important and heavy topics, but we hope this can serve as a way for you to take a break while you travel to and from a protest. If you are going to protest please be safe, drink as much water as you can to stay hydrated in the heat and know that things are changing for the better. To all the Black API developers out there: we see you, we're fighting with you, and we want you to know that we're listening.  From all of us at APIs You Won't Hate: Black lives matter. Recorded back in April, Matt and Phil are joined by Marc-Andre Giroux to talk about the APIs he works on at Github and his fascination of GraphQL. Marc-Andre recently released a book titled " Production Ready GraphQL " where he talks about schema design, tooling, architecture and more. We take a dive into knowing when GraphQL is the right tool for the job, versus when to use REST and talk a little about the whole quarantine thing that was happening. Sponsors: Stoplight makes it possible for us to bring you this podcast while we nerd out about APIs. Check them out for their tooling around documentation with Studio, an app that makes API documentation an absolute joy to work with. Twitter: https://twitter.com/__xuorig__ Book: Production Ready GraphQL APIs You Wont Hate Jobs Board: https://apisyouwonthate.com/jobs APIs You Wont Hate Slack: https://apisyouwonthate.com/community Creators and Guests Host Mike Bifulco Cofounder and host of APIs You Won't Hate. Blogs at https://mikebifulco.com Into 🚴‍♀️, espresso ☕, looking after 🌍. ex @Stripe @Google @Microsoft What is APIs You Won't Hate? A no-nonsense (well, some-nonsense) podcast about API design & development, new features in the world of HTTP, service-orientated architecture, microservices, and probably bikes. All audio, artwork, episode descriptions and notes are property of APIs You Won't Hate, for APIs You Won't Hate, and published with permission by Transistor, Inc. Broadcast by
2026-01-13T08:47:43
https://dev.to/privacy#6-international-data-transfers
Privacy Policy - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Privacy Policy Last Updated: September 01, 2023 This Privacy Policy is designed to help you understand how DEV Community Inc. (" DEV ," " we ," or " us ") collects, use, and discloses your personal information. What's With the Defined Terms? You'll notice that some words appear in quotes in this Privacy Policy.  They're called "defined terms," and we use them so that we don't have to repeat the same language again and again.  They mean the same thing in every instance, to help us make sure that this Privacy Policy is consistent. We've included the defined terms throughout because we want it to be easy for you to read them in context. 1. WHAT DOES THIS PRIVACY POLICY APPLY TO? 2. PERSONAL INFORMATION WE COLLECT 3. HOW WE USE YOUR INFORMATION 4. HOW WE DISCLOSE YOUR INFORMATION 5. YOUR PRIVACY CHOICES AND RIGHTS 6. INTERNATIONAL DATA TRANSFERS 7. RETENTION OF PERSONAL INFORMATION 8. SUPPLEMENTAL DISCLOSURES FOR CALIFORNIA RESIDENTS 9. SUPPLEMENTAL NOTICE FOR NEVADA RESIDENTS 10. CHILDREN'S INFORMATION 11. OTHER PROVISIONS 12. CONTACT US 1. WHAT DOES THIS PRIVACY POLICY APPLY TO? This Privacy Policy applies to personal information processed by us, including on our websites, mobile applications, and other online or offline offerings — basically anything we do. To make this Privacy Policy easier to read, our websites, mobile applications, and other offerings are all collectively called the " Services. " Beyond this Privacy Policy, your use of the Services is subject to our DEV Community Terms and our Forem Terms. The Services include both our own community forum at https://www.dev.to (the " DEV Community ") and the open source tool we provide called " Forem ," available at https://www.forem.com which allows our customers to create and operate their own online forums. We collect personal information from two categories of people: (1) our customers, who use Forem and our hosting services to run and host their own forums (we'll call them " Forem Operators "), and (2) the people who interact with DEV-hosted forums, including forums provided by Forem Operators utilizing Forem and separately our own DEV Community (we'll call them " Users "). An Important Note for Users Since we provide hosting services for Forem Operators, technically we also process your information on their behalf. That processing is governed by the contracts that we have in place with each Forem Operator, not this Privacy Policy. In other words, when you share your data on a DEV-hosted forum operated by a Forem Operator, we at DEV are basically just the "pipes" — we process the data on behalf of the Forem Operator, but don't do anything with it ourselves beyond what we're required to do under our contract (and by law). So, if you post your information on a DEV-powered forum provided by a Forem Operator, that Forem Operator's privacy policy applies, and any questions or requests relating to your data on that service should be directed to that Forem Operator, not us. Likewise, if you use our mobile application, you may also interact with forums that use DEV's open-source tools but do all their hosting and data collection themselves. For those forums, we at DEV have no access to your data, so be sure to read the privacy policy of any third-party hosted forum before posting. 2. PERSONAL INFORMATION WE COLLECT The categories of personal information we collect depend on whether you're a User or Forem Operator, how you interact with us, our Services, and the requirements of applicable law. Breaking it down, we collect three types of information: (1) information that you provide to us directly, (2) information we obtain automatically when you use our Services, and (3) information we get about you from other sources (such as third-party services and organizations). More details are below. A. Information You Provide to Us Directly We may collect the following personal information that you provide to us. Account Creation (for Forem Operators): We'll require your name and email address to get started, as well as some details about the Forem you want to run, such as: whether you're running the Forem on your own behalf or as part of an organization, and details about the community you want to support (how big is it, what topics does it cover, where do members currently communicate, how/if the community earns money, whether the community is open, invite-only or paid, any existing social media accounts, etc.) You'll need to tell us a bit about your personal coding background, and you'll have the option to provide your DEV username as well, if you are a member of the DEV.to community. Account Creation (for Users) : We collect name and email address from users that create an account on DEV Community. For other forums created by Forem Operators using Forem, the Forem Operator determines what information is required for User account creation for their respective forums. Interactive Features (for Users) . Like any other social network, both we and other Users of our Services may collect personal information that you submit or make available through our interactive features (e.g., messaging and chat features, commenting functionalities, forums, blogs, posts, and other social media pages). While we do have private messages that are only between you and the person you're messaging (as well as us and the Forem Operator, as applicable), any information you provide using the public sharing features of the Services, such as the information you post to your public profile or the topics you follow is public, including to recruiters and prospective employers, and is not subject to any of the privacy protections we mention in this Privacy Policy except where legally required. Please exercise caution before revealing any information that may identify you in the real world to others. Purchases . If you buy stuff on our shop site https://shop.dev.to/ (as either a User or Forem Operator), or otherwise if you pay us in connection with your use of the Forem service, we may collect personal information and details associated with your purchases, including payment information. Any payments made via our Services are processed by third-party payment processors, such as Stripe, Shopify, and PayPal. We do not directly collect or store any payment card information entered through our Services, but may receive information associated with your payment card information (e.g., your billing details). Your Communications with Us (Users and Forem Operators) . We may collect personal information, such as email address, phone number, or mailing address when you request information about our Services, register for our newsletter or loyalty program, request customer or technical support, apply for a job, or otherwise communicate with us. Surveys . We may contact you to participate in surveys. If you decide to participate, you may be asked to provide certain information, which may include personal information (for example, your home address). Sweepstakes or Contests . We may collect personal information you provide for any sweepstakes or contests that we offer. In some jurisdictions, we are required to publicly share information of sweepstakes and contest winners. Conferences, Trade Shows, and Other Events . We may collect personal information from individuals when we attend conferences, trade shows, and other events. Business Development and Strategic Partnerships . We may collect personal information from individuals and third parties to assess and pursue potential business opportunities. Job Applications . We may post job openings and opportunities on our Services. If you reply to one of these postings by submitting your application, CV and/or cover letter to us, we will collect and use your information to assess your qualifications. B. Information Collected Automatically We may collect personal information automatically when you use our Services: Automatic Data Collection . We may collect certain information automatically when you use our Services, such as your Internet protocol (IP) address, user settings, MAC address, cookie identifiers, mobile carrier, mobile advertising and other unique identifiers, browser or device information, location information (including approximate location derived from IP address), and Internet service provider. We may also automatically collect information regarding your use of our Services, such as pages that you visit before, during and after using our Services, information about the links you click, the types of content you interact with, the frequency and duration of your activities, and other information about how you use our Services. In addition, we may collect information that other people provide about you when they use our Services, including information about you when they tag you in their posts. Cookies, Pixel Tags/Web Beacons, and Other Technologies . We, as well as third parties that provide content, advertising, or other functionality on our Services, may use cookies, pixel tags, local storage, and other technologies (" Technologies ") to automatically collect information through your use of our Services. Cookies . Cookies are small text files placed in device browsers that store preferences and facilitate and enhance your experience. Pixel Tags/Web Beacons . A pixel tag (also known as a web beacon) is a piece of code embedded in our Services that collects information about engagement on our Services. The use of a pixel tag allows us to record, for example, that a user has visited a particular web page or clicked on a particular advertisement. We may also include web beacons in e-mails to understand whether messages have been opened, acted on, or forwarded. Our uses of these Technologies fall into the following general categories: Operationally Necessary . This includes Technologies that allow you access to our Services, applications, and tools that are required to identify irregular website behavior, prevent fraudulent activity and improve security or that allow you to make use of our functionality. Performance-Related . We may use Technologies to assess the performance of our Services, including as part of our analytic practices to help us understand how individuals use our Services ( see Analytics below ). Functionality-Related . We may use Technologies that allow us to offer you enhanced functionality when accessing or using our Services. This may include identifying you when you sign into our Services or keeping track of your specified preferences, interests, or past items viewed. Analytics . We may use Technologies and other third-party tools to process analytics information on our Services. Some of our analytics partners include Google Analytics. For more information,please visit Google Analytics' Privacy Policy . To learn more about how to opt-out of Google Analytics' use of your information, please click here . Social Media Platforms . Our Services may contain social media buttons such as Twitter, Facebook, GitHub, Instagram, and Twitch (that might include widgets such as the "share this" button or other interactive mini programs). These features may collect your IP address, which page you are visiting on our Services, and may set a cookie to enable the feature to function properly. Your interactions with these platforms are governed by the privacy policy of the company providing it. See the "Your Privacy Choices and Rights" section below to understand your choices regarding these Technologies. C. Information Collected from Other Sources We may obtain information about you from other sources, including through third-party services and organizations. For example, if you access our Services through a third-party application, such as an app store, a third-party login service (e.g., through Twitter, Apple, or GitHub), or a social networking site, we may collect whatever information about you from that third-party application that you have made available via your privacy settings. 3. HOW WE USE YOUR INFORMATION We use your information for a variety of business purposes, including to provide our Services, for administrative purposes, and to market our products and Services, as described below. A. Provide Our Services We use your information to fulfill our contract with you and provide you with our Services, such as: Managing your information and accounts; Providing access to certain areas, functionalities, and features of our Services; Answering requests for customer or technical support; Communicating with you about your account, activities on our Services, and policy changes; Processing your financial information and other payment methods for products or Services purchased; Processing applications if you apply for a job we post on our Services; and Allowing you to register for events. B. Administrative Purposes We use your information for various administrative purposes, such as: Pursuing our legitimate interests such as direct marketing, research and development (including marketing research), network and information security, and fraud prevention; Detecting security incidents, protecting against malicious, deceptive, fraudulent or illegal activity, and prosecuting those responsible for that activity; Measuring interest and engagement in our Services, including for usage-based billing purposes; Short-term, transient use, such as contextual customization of ads; Improving, optimizing, upgrading, or enhancing our Services; Developing new products and Services; Ensuring internal quality control and safety; Authenticating and verifying individual identities, including requests to exercise your rights under this policy; Debugging to identify and repair errors with our Services; Auditing relating to interactions, transactions and other compliance activities; Enforcing our agreements and policies; and Complying with our legal obligations. C. Marketing and Advertising our Products and Services We may use your personal information to tailor and provide you with content and advertisements for our Services, such as via email. If you have any questions about our marketing practices, you may contact us at any time as set forth in the "Contact Us" section below. D. Other Purposes We also use your information for other purposes as requested by you or as permitted by applicable law. Consent . We may use personal information for other purposes that are clearly disclosed to you at the time you provide personal information or with your consent. Automated Decision Making. We may engage in automated decision making, including profiling, such as to suggest topics or other Users for you to follow. DEV's processing of your personal information will not result in a decision based solely on automated processing that significantly affects you unless such a decision is necessary as part of a contract we have with you, we have your consent, or we are permitted by law to engage in such automated decision making. If you have questions about our automated decision making, you may contact us as set forth in the "Contact Us" section below. De-identified and Aggregated Information . We may use personal information and other information about you to create de-identified and/or aggregated information, such as de-identified demographic information, information about the device from which you access our Services, or other analyses we create. For example, we may collect system-wide information to ensure availability of the platform, or measure aggregate data trends to analyze and optimize our Services. Share Content with Friends or Colleagues. Our Services may offer various tools and functionalities. For example, we may allow you to provide information about your friends through our referral services. Our referral services may allow you to forward or share certain content with a friend or colleague, such as an email inviting your friend to use our Services. Please only share with us contact information of people with whom you have a relationship (e.g., relative, friend neighbor, or co-worker). 4. HOW WE DISCLOSE YOUR INFORMATION We disclose your information to third parties for a variety of business purposes, including to provide our Services, to protect us or others, or in the event of a major business transaction such as a merger, sale, or asset transfer, as described below. A. Disclosures to Provide our Services The categories of third parties with whom we may share your information are described below. Service Providers . We may share your personal information with our third-party service providers who use that information to help us provide our Services. This includes service providers that provide us with IT support, hosting, payment processing, customer service, and related services. For example, our Shop site is run by Shopify, who handle your shipping details on our behalf. Business Partners . We may share your personal information with business partners to provide you with a product or service you have requested. We may also share your personal information to business partners with whom we jointly offer products or services. Other Users . As described above in the "Personal Information We Collect" section of this Privacy Policy, our Service allows Users to share their profiles, and any posts, chats, etc. with other Users and with the general public, including to those who do not use our Services. APIs/SDKs . We may use third-party Application Program Interfaces ("APIs") and Software Development Kits ("SDKs") as part of the functionality of our Services. For more information about our use of APIs and SDKs, please contact us as set forth in the "Contact Us" section below. B . Disclosures to Protect Us or Others We may access, preserve, and disclose any information we store associated with you to external parties if we, in good faith, believe doing so is required or appropriate to: comply with law enforcement or national security requests and legal process, such as a court order or subpoena; protect your, our, or others' rights, property, or safety; enforce our policies or contracts; collect amounts owed to us; or assist with an investigation or prosecution of suspected or actual illegal activity. C. Disclosure in the Event of Merger, Sale, or Other Asset Transfers If we are involved in a merger, acquisition, financing due diligence, reorganization, bankruptcy, receivership, purchase or sale of assets, or transition of service to another provider, your information may be sold or transferred as part of such a transaction, as permitted by law and/or contract. 5. YOUR PRIVACY CHOICES AND RIGHTS Your Privacy Choices . The privacy choices you may have about your personal information are determined by applicable law and are described below. Email Communications . If you receive an unwanted email from us, you can use the unsubscribe link found at the bottom of the email to opt out of receiving future emails. Note that you will continue to receive transaction-related emails regarding products or Services you have requested. We may also send you certain non-promotional communications regarding us and our Services, and you will not be able to opt out of those communications (e.g., communications regarding our Services or updates to our Terms or this Privacy Policy). Mobile Devices . We may send you push notifications through our mobile application. You may opt out from receiving these push notifications by changing the settings on your mobile device. "Do Not Track." Do Not Track (" DNT ") is a privacy preference that users can set in certain web browsers. Please note that we do not respond to or honor DNT signals or similar mechanisms transmitted by web browsers. Cookies and Interest-Based Advertising . You may stop or restrict the placement of Technologies on your device or remove them by adjusting your preferences as your browser or device permits. However, if you adjust your preferences, our Services may not work properly. Please note that cookie-based opt-outs are not effective on mobile applications. Please note you must separately opt out in each browser and on each device. Your Privacy Rights . In accordance with applicable law, you may have the right to: Access Personal Information about you, including: (i) confirming whether we are processing your personal information; (ii) obtaining access to or a copy of your personal information; Request Correction of your personal information where it is inaccurate, incomplete or outdated. In some cases, we may provide self-service tools that enable you to update your personal information; Request Deletion, Anonymization or Blocking of your personal information when processing is based on your consent or when processing is unnecessary, excessive or noncompliant; Request Restriction of or Object to our processing of your personal information when processing is noncompliant; Withdraw Your Consent to our processing of your personal information. If you refrain from providing personal information or withdraw your consent to processing, some features of our Service may not be available; Request Data Portability and Receive an Electronic Copy of Personal Information that You Have Provided to Us; Be Informed about third parties with which your personal information has been shared; and Request the Review of Decisions Taken Exclusively Based on Automated Processing if such decisions could affect your data subject rights. If you would like to exercise any of these rights, please contact us as set forth in "Contact Us" below. We will process such requests in accordance with applicable laws. 6. INTERNATIONAL DATA TRANSFERS All information processed by us may be transferred, processed, and stored anywhere in the world, including, but not limited to, the United States or other countries, which may have data protection laws that are different from the laws where you live. We always strive to safeguard your information consistent with the requirements of applicable laws. 7. RETENTION OF PERSONAL INFORMATION We store the personal information we collect as described in this Privacy Policy for as long as you use our Services or as necessary: to fulfill the purpose or purposes for which it was collected, to provide our Services, to resolve disputes, to establish legal defenses, to conduct audits, to pursue legitimate business purposes, to enforce our agreements, and to comply with applicable laws.  8. SUPPLEMENTAL DISCLOSURES FOR CALIFORNIA RESIDENTS Refer-a-Friend and Similar Incentive Programs . As described above in the How We Use Your Personal Information section ("Share Content with Friends or Colleagues" subsection), we may offer referral programs or other incentivized data collection programs. For example, we may offer incentives to you such as discounts or promotional items or credit in connection with these programs, wherein you provide your personal information in exchange for a reward, or provide personal information regarding your friends or colleagues (such as their email address) and receive rewards when they sign up to use our Services. (The referred party may also receive rewards for signing up via your referral.) These programs are entirely voluntary and allow us to grow our business and provide additional benefits to you. The value of your data to us depends on how you ultimately use our Services, whereas the value of the referred party's data to us depends on whether the referred party ultimately becomes a User or Forem Operator and uses our Services. Said value will be reflected in the incentive offered in connection with each program. Accessibility . This Privacy Policy uses industry-standard technologies and was developed in line with the World Wide Web Consortium's Web Content Accessibility Guidelines, version 2.1* . * If you wish to print this policy, please do so from your web browser or by saving the page as a PDF. California Shine the Light . The California "Shine the Light" law permits users who are California residents to request and obtain from us once a year, free of charge, a list of the third parties to whom we have disclosed their personal information (if any) for their direct marketing purposes in the prior calendar year, as well as the type of personal information disclosed to those parties. Right for Minors to Remove Posted Content . Where required by law, California residents under the age of 18 may request to have their posted content or information removed from the publicly-viewable portions of the Services by contacting us directly as set forth in the "Contact Us" section below or by logging into their account and removing the content or information using our self-service tools. 9. SUPPLEMENTAL NOTICE FOR NEVADA RESIDENTS If you are a resident of Nevada, you have the right to opt-out of the sale of certain Personal Information to third parties who intend to license or sell that Personal Information. You can exercise this right by contacting us as set forth in the "Contact Us\" section below with the subject line "Nevada Do Not Sell Request" and providing us with your name and the email address associated with your account. Please note that we do not currently sell your Personal Information as sales are defined in Nevada Revised Statutes Chapter 603A. If you have any questions, please contact us as set forth below. 10. CHILDREN'S INFORMATION The Services are not directed to children under 13 (or other age as required by local law), and we do not knowingly collect personal information from children. If you are a parent or guardian and believe your child has uploaded personal information to our site without your consent, you may contact us as described in the "Contact Us" section below. If we become aware that a child has provided us with personal information in violation of applicable law, we will delete any personal information we have collected, unless we have a legal obligation to keep it, and terminate the child's account if applicable. 11. OTHER PROVISIONS Third-Party Websites or Applications . The Services may contain links to other websites or applications, and other websites or applications may reference or link to our Services. These third-party services are not controlled by us. We encourage our users to read the privacy policies of each website and application with which they interact. We do not endorse, screen or approve, and are not responsible for, the privacy practices or content of such other websites or applications. Providing personal information to third-party websites or applications is at your own risk. Changes to Our Privacy Policy . We may revise this Privacy Policy from time to time in our sole discretion. If there are any material changes to this Privacy Policy, we will notify you as required by applicable law. You understand and agree that you will be deemed to have accepted the updated Privacy Policy if you continue to use our Services after the new Privacy Policy takes effect. 12. CONTACT US If you have any questions about our privacy practices or this Privacy Policy, or to exercise your rights as detailed in this Privacy Policy, please contact us at: support@dev.to . 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://www.bemyeyes.com/
Accessibility Technology for blind & low vision people - Be My Eyes --> Skip to main content Jump to Business Site Switch color mode controls Switch color mode controls Switch color mode | Language Choose your language Close × 简体中文 Čeština Nederlands English Suomi Français Deutsch Ελληνικά Magyar Italiano 日本語 Melayu Norsk bokmål Português Português Română Русский Slovenčina Español Türkçe Albanian Dansk हिन्दी Indonesia 한국어 Polski Slovenščina ไทย Українська Tiếng Việt Български Svenska Theme Switcher Options Light Theme Dark Theme High Contrast The App Be My Eyes App The App Overview Be My AI™ Be My Eyes Smartglasses Be My Eyes Service Directory Be My Eyes for Windows Download the Be My Eyes App The Be My Eyes App connects blind and low-vision users with real-time visual assistance from volunteers around the world. It’s free, easy to use and always there for you. Download the app today! Available on: Community Community Menu Latest Stories Blog News AppleVis Spotlight Upcoming Events Podcasts AppleVis Podcast Double Tap Be My Eyes Podcast 13 Letters That Real Blind Tech Show Support Be My Eyes Volunteer Hub Be My Eyes help AppleVis Download the Be My Eyes App The Be My Eyes App connects blind and low-vision users with real-time visual assistance from volunteers around the world. It’s free, easy to use and always there for you. Download the app today! Available on: About Us Contact Us For Business Download App Be My Eyes Close menu The App Be My AI Be My Eyes Smartglasses Be My Eyes Service Directory Be My Eyes for Windows Community Latest Stories Blog News AppleVis Spotlight Podcasts Support Be My Eyes Volunteer Hub Be My Eyes Help AppleVis About Us Contact Us For Business Download App Let’s see the world together Be My Eyes connects blind or low vision users who want assistance, with volunteers and companies across the world, through live video and AI. Download App Picture of a Be My Eyes Service User A female with long dark hair dressed in dark trousers and a grey top is holding a white cane in one hand and holds a phone up to her ear with the other. She has a biog smile on her face. She is sitting outside on a concrete wall with trees and buildings behind her. It is a sunny bright blue sky day. Who the App is for Making a difference where it’s needed Users Use your smartphone to get free, instant visual description anytime, day or night. Connect with a volunteer, take a picture and let Be My AI™ describe it, or reach out to our partners through the Service Directory for help with their products. Discover our App Volunteers Our volunteers, now in more than 150 countries around the world, provide real-time descriptions and assistance for people who are blind or have low vision. Join our volunteer community and make a meaningful impact. Discover the Volunteer Hub Businesses Enhance your accessible customer service teams with real-time video and AI support, and resolve up to 90% of cases automatically, while cutting resolution times and costs by 60%. Or provide the tools that make your workplace more accessible for employees who are blind or have low vision. Discover Be My Eyes for Business. Learn More for Business Benefits Real people. Real support. Real impact. Free and unlimited calls Call as often as you need without worrying about costs. Available day and night Connect with our network of volunteers and AI tools 24/7. 100% anonymous Volunteers only hear your voice and see what you share through your camera. Worldwide support We’re available in over 150 countries. Real-time assistance Get instant support as soon as you need it. Accessibility for all We want to make everyday tasks easy for everyone. About Us Every day, we’re making the world more accessible to more people More About Us Live 9,762,755 Volunteers Live 967,336 Blind & low-vision 150+ Countries 180+ Languages Community Discover our community Our goal is to make the world more accessible to people who are blind or have low vision. We couldn’t do this without the help and dedication of our community. Read our blog, listen to our podcasts or read stories from real users from all around the world. Explore the Community Picture of a Be My Eyes Service User and her child <p>A woman with sunglasses and a white cane smiles at a young girl on a scooter. They share a happy moment outdoors. Generated with Be My AI.</p> What’s New Explore the latest stories, updates and insights Blog Be My Eyes Wins Apple’s 2025 App Store Award for Cultural Impact Read More → Blog Meet Dr. Hoby: Cooking Confidently with Barilla and Be My Eyes Read More → Blog Be My Eyes Partners with Guide Dogs NSW/ACT to Support Australians with Low Vision or Blindness Read More → Are you a business? Request a free demo of our business solutions Let’s see the world together About About Us Contact Us AppleVis Careers Products Be My Eyes App Be My AI™ Be My Eyes for Smart Glasses By My Eyes Service Directory Be My Eyes for Windows Community Stories Blog News Podcasts Merchandise Help Help Center Get Visual Assistance System Status Translate Legal Terms of Service Privacy Policy © Be My Eyes 2026 . All rights reserved.
2026-01-13T08:47:43
https://github.com/hanzili/slopscore
GitHub - hanzili/slopscore: Cross-repo contributor reputation for GitHub PRs Skip to content Navigation Menu Toggle navigation Sign in Appearance settings Platform AI CODE CREATION GitHub Copilot Write better code with AI GitHub Spark Build and deploy intelligent apps GitHub Models Manage and compare prompts MCP Registry New Integrate external tools DEVELOPER WORKFLOWS Actions Automate any workflow Codespaces Instant dev environments Issues Plan and track work Code Review Manage code changes APPLICATION SECURITY GitHub Advanced Security Find and fix vulnerabilities Code security Secure your code as you build Secret protection Stop leaks before they start EXPLORE Why GitHub Documentation Blog Changelog Marketplace View all features Solutions BY COMPANY SIZE Enterprises Small and medium teams Startups Nonprofits BY USE CASE App Modernization DevSecOps DevOps CI/CD View all use cases BY INDUSTRY Healthcare Financial services Manufacturing Government View all industries View all solutions Resources EXPLORE BY TOPIC AI Software Development DevOps Security View all topics EXPLORE BY TYPE Customer stories Events & webinars Ebooks & reports Business insights GitHub Skills SUPPORT & SERVICES Documentation Customer support Community forum Trust center Partners Open Source COMMUNITY GitHub Sponsors Fund open source developers PROGRAMS Security Lab Maintainer Community Accelerator Archive Program REPOSITORIES Topics Trending Collections Enterprise ENTERPRISE SOLUTIONS Enterprise platform AI-powered developer platform AVAILABLE ADD-ONS GitHub Advanced Security Enterprise-grade security features Copilot for Business Enterprise-grade AI features Premium Support Enterprise-grade 24/7 support Pricing Search or jump to... Search code, repositories, users, issues, pull requests... --> Search Clear Search syntax tips Provide feedback --> We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Cancel Submit feedback Saved searches Use saved searches to filter your results more quickly --> Name Query To see all available qualifiers, see our documentation . Cancel Create saved search Sign in Sign up Appearance settings Resetting focus You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert {{ message }} hanzili / slopscore Public Notifications You must be signed in to change notification settings Fork 0 Star 3 Cross-repo contributor reputation for GitHub PRs 3 stars 0 forks Branches Tags Activity Star Notifications You must be signed in to change notification settings Code Issues 0 Pull requests 0 Actions Projects 0 Security Uh oh! There was an error while loading. Please reload this page . Insights Additional navigation options Code Issues Pull requests Actions Projects Security Insights hanzili/slopscore   main Branches Tags Go to file Code Open more actions menu Folders and files Name Name Last commit message Last commit date Latest commit   History 4 Commits entrypoints entrypoints     lib lib     public/ icon public/ icon     .gitignore .gitignore     PRIVACY.md PRIVACY.md     README.md README.md     demo.gif demo.gif     package-lock.json package-lock.json     package.json package.json     tsconfig.json tsconfig.json     wxt.config.ts wxt.config.ts     View all files Repository files navigation README SlopScore Cross-repo contributor reputation for GitHub PRs A Chrome extension that helps maintainers instantly assess PR authors by analyzing their contribution history across all of GitHub. Watch full demo (2 min) Install from Chrome Web Store Why? GitHub only tells you if someone is a "first-time contributor" to your repo. It doesn't tell you if they have a history of rejected PRs, spam contributions, or suspicious patterns elsewhere. SlopScore fills that gap by showing a reputation badge right next to the PR author's name. Score Levels Badge Score Meaning 🟢 Likely Safe 70-100 Established contributor with good track record 🟡 Review Carefully 45-69 Mixed signals or limited history 🔴 Caution 0-44 Red flags detected ⚪ New Contributor - Insufficient data (<3 PRs) What It Analyzes Global signals (cached): Merge rate across all contributions Repo quality (popular repos vs spam targets) Trust indicators (who merges their PRs) Account maturity Repo-specific signals (always fresh): Previous PRs in this repo Author association (member, collaborator, first-timer) Red flags detected : Spray-and-pray patterns (new account + high volume + many repos) Very low external merge rate Only self-merges on own repos Installation Clone this repo npm install npm run build Go to chrome://extensions , enable Developer mode Click "Load unpacked" → select .output/chrome-mv3 Setup : Click the extension icon, add a GitHub token with public_repo scope. Development npm install # Install dependencies npm run dev # Development with hot reload npm test # Run tests npm run build # Production build Privacy All processing happens locally in your browser API calls go directly to GitHub No analytics, no tracking, no external servers Token stored only in local browser storage License MIT About Cross-repo contributor reputation for GitHub PRs Topics github chrome-extension open-source developer-tools code-review spam-detection Resources Readme Uh oh! There was an error while loading. Please reload this page . Activity Stars 3 stars Watchers 0 watching Forks 0 forks Report repository Releases No releases published Packages 0 No packages published Contributors 2 hanzili hanzi claude Claude Languages TypeScript 96.3% CSS 3.4% HTML 0.3% Footer © 2026 GitHub, Inc. Footer navigation Terms Privacy Security Status Community Docs Contact Manage cookies Do not share my personal information You can’t perform that action at this time.
2026-01-13T08:47:43
https://parenting.forem.com/t/schoolage
Schoolage - Parenting Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account Parenting Close # schoolage Follow Hide Discussing kids in elementary and middle school. Create Post Posts Left menu 👋 Sign in for the ability to sort posts by relevant , latest , or top . Right menu loading... 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV Parenting — A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Home About Contact Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . Parenting © 2016 - 2026. Navigating the chaos and joy of parenting. Log in Create account
2026-01-13T08:47:43
https://docs.suprsend.com/docs
What is SuprSend? - SuprSend, Notification infrastructure for Product teams Skip to main content SuprSend, Notification infrastructure for Product teams home page Search... ⌘ K Community Trust Center Platform Status Postman Collection GETTING STARTED What is SuprSend? Quick Start Guide Best Practices Plan Your Integration Go-live checklist CORE CONCEPTS Templates Users Events Workflow Notification Categories Preferences Tenants Lists Broadcast Objects Translations DLT Guidelines Whatsapp Template Guidelines WORKFLOW BUILDER Design Workflow Node List Workflow Settings Trigger Workflow Validate Trigger Payload Tenant Workflows Notification Inbox Overview Multi Tabs React Javascript (Angular, Vuejs etc) React Native Flutter (Headless) PREFERENCE CENTRE Embedded Preference Centre Javascript Angular React VENDOR INTEGRATION GUIDE Overview Email Integrations SMS Integrations Android Push Whatsapp Integrations iOS Push Chat Integrations Vendor Fallback Tenant Vendor INTEGRATIONS Webhook Connectors MONITORING & DEBUGGING Logs Audit Logs Error Guides MANAGE YOUR ACCOUNT Authentication Methods Contact Us Get Started SuprSend, Notification infrastructure for Product teams home page Search... ⌘ K Ask AI Contact Us Get Started Get Started Search... Navigation GETTING STARTED What is SuprSend? Documentation API Reference Management API CLI Reference Developer Resources Changelog Documentation API Reference Management API CLI Reference Developer Resources Changelog GETTING STARTED What is SuprSend? OpenAI Open in ChatGPT Learn about SuprSend and how you can use it to power multi-channel product notifications. OpenAI Open in ChatGPT SuprSend has all the features set which enable you to send notifications in a reliable and scalable manner, as well as take care of end-user experience, thereby eliminating the need to build any notification service in-house. ​ Benefits of using SuprSend as your notification stack: You do not have to do any vendor integrations for channels in your code. You can easily add/remove/prioritise vendors and channels from your SuprSend account, You can design powerful templates for all channels together and manage them from a single place, You can leverage powerful features to experiment fast with notifications as well as take care of end user experience without writing a single line of code. ​ Introduction to Workflows Communications are made up of multiple components - trigger, logic, content, variables, target user, channels, vendors, etc. Typical communication solutions have one or more components intertwined with each other. SuprSend solves communications from a different and more powerful approach, which we call Workflows. At SuprSend, all the constituent components are decoupled from each other, making it modular in nature. The components can come from any source. All these components are configured as nodes in Workflows, where the processing happens for delivery and optimisation. This allows Workflows to handle any complexity possible in your communication use cases. ​ How do you trigger notifications? You can trigger notifications in one of the two ways: Send events to SuprSend from your frontend clients (android app, website, etc) via SuprSend Client SDK, and create a Workflow on SuprSend platform to trigger notification on an event. Create workflow and trigger notification from your backend itself using an omni-channel HTTPS API method, or you can use our Backend SDK. All the other components (like vendors, templates, optimisation, scaling, etc.) are created and managed on SuprSend platform. You can check the ‘Core Concepts’ section that lists down the components used in the platform, so you can navigate the platform and use all the features with ease. ​ SuprSend APIs You can try out SuprSend APIs from our Postman collection Was this page helpful? Yes No Suggest edits Raise issue Overview Start setting up your notifications with SuprSend by following quick start guides for one of the mentioned channels. Next ⌘ I x github linkedin youtube Powered by On this page Benefits of using SuprSend as your notification stack: Introduction to Workflows How do you trigger notifications? SuprSend APIs
2026-01-13T08:47:43
https://docs.suprsend.com/reference/cli-intro
CLI Overview - SuprSend, Notification infrastructure for Product teams Skip to main content SuprSend, Notification infrastructure for Product teams home page Search... ⌘ K Community Trust Center Platform Status Postman Collection Versioning Versioning and Support Policy CLI Changelog Getting Started with CLI CLI Overview BETA Quickstart Installation Authentication Enable Autocompletion Global Flags Profile Commands and Flags Add Profile Use Profile List Profile Modify Profile Remove Profile Sync Sync Assets Workflow Commands and Flags List Workflows Pull Workflows Push Workflows Enable Workflow Disable Workflow Schema Commands and Flags List Schemas Pull Schemas Push Schemas Commit Schema Generate Types Event Commands and Flags List Events Pull Events Push Events Preference Category Commands and Flags List Categories Pull Categories Push Categories Commit Categories List Category Translations Pull Category Translations Push Category Translations Translation Commands and Flags List Translations Pull Translations Push Translations Commit Translations Contact Us Get Started SuprSend, Notification infrastructure for Product teams home page Search... ⌘ K Ask AI Contact Us Get Started Get Started Search... Navigation Getting Started with CLI CLI Overview Documentation API Reference Management API CLI Reference Developer Resources Changelog Documentation API Reference Management API CLI Reference Developer Resources Changelog Getting Started with CLI CLI Overview OpenAI Open in ChatGPT Introduction to SuprSend CLI for managing notification infrastructure from the command line. OpenAI Open in ChatGPT Beta Feature - The SuprSend CLI is under active development. Commands and flags may change, and new functionality will be added over time. If you encounter issues or need additional commands, please open an issue on GitHub or contribute directly — the project is open source. The SuprSend CLI is a powerful command-line interface that enables developers to setup CI/CD pipeline for notification changes and manage, automate, and sync SuprSend assets across multiple workspaces. With a few commands, you can handle workflows, schemas, events, and even integrate directly with AI agents. ​ Benefits of using SuprSend CLI Developers often prefer CLI as it offers speed, automation, and flexibility . Instead of writing boilerplate code or clicking through multiple screens on UI, you can run a single command or script to perform repeatable actions—ideal for modern DevOps and automation. By using the CLI, you can: Automate with CI/CD Deployment – Release notification changes through feature or bugfix branches, just like any other piece of code: version it, test it, and deploy it. Work with assets locally – Create, edit, and commit workflows, schemas, and translation files locally. Version Control Changes – Pull all assets locally and track them in Git for maintaining release history. Enforce Approval gates for production releases - Setup strict checks that all changes on production go through approval process so that nothing goes live without check. ​ What You Can Do with SuprSend CLI Manage Assets – List, pull, push, and commit notification workflows, schemas, preference categories, and events. Sync Across Workspaces – Transfer assets between workspaces for multi-environment setups. AI Agent Integration – Start an MCP server from the CLI and connect SuprSend with AI agents or developer copilots. ​ Available Commands ​ Profile Manage objects : create, update, list, and promote across workspaces. Also, see Object Management APIs . Command Description profile list List profiles in a workspace profile add Add a new profile profile modify Modify an existing profile profile remove Remove a profile profile use Switch to a specific profile ​ Workflow Manage workflows : create, update, enable, disable, and promote across workspaces. Also, see Workflow Management APIs . Command Description workflow list List workflows in a workspace workflow push Push local workflows to SuprSend workflow pull Pull workflows from SuprSend to local files workflow enable Enable a workflow workflow disable Disable a workflow ​ Schema Manage schemas : create, update, commit, reset, and promote across workspaces. Also, see Schema Management APIs . Command Description schema list List schemas in a workspace schema push Push local schemas to SuprSend schema pull Pull schemas from SuprSend to local files schema commit Commit a schema to make it live generate-types Generate type definitions from JSON schemas ​ Event Manage events : create, update, list, and promote across workspaces. Also, see Event Management APIs . Command Description event list List events in a workspace event push Push local events to SuprSend event pull Pull events from SuprSend to local files ​ Category Manage categories : create, update, list, and promote across workspaces. Also, see Category Management APIs . Command Description category list List categories in a workspace category pull Pull categories from SuprSend to local files category push Push local categories to SuprSend category commit Commit categories to make them live ​ Sync Manage sync : sync assets between workspaces. Command Description sync Sync assets between workspaces Was this page helpful? Yes No Suggest edits Raise issue Previous Quickstart Get up and running with SuprSend CLI in minutes. Complete setup, authentication, and start using right away. Next ⌘ I x github linkedin youtube Powered by On this page Benefits of using SuprSend CLI What You Can Do with SuprSend CLI Available Commands Profile Workflow Schema Event Category Sync
2026-01-13T08:47:43
https://docs.python.org/3/faq/
Python Frequently Asked Questions — Python 3.14.2 documentation Theme Auto Light Dark Previous topic Remote debugging attachment protocol Next topic General Python FAQ This page Report a bug Show source Navigation index modules | next | previous | Python » 3.14.2 Documentation » Python Frequently Asked Questions | Theme Auto Light Dark | Python Frequently Asked Questions ¶ General Python FAQ Programming FAQ Design and History FAQ Library and Extension FAQ Extending/Embedding FAQ Python on Windows FAQ Graphic User Interface FAQ “Why is Python Installed on my Computer?” FAQ Previous topic Remote debugging attachment protocol Next topic General Python FAQ This page Report a bug Show source « Navigation index modules | next | previous | Python » 3.14.2 Documentation » Python Frequently Asked Questions | Theme Auto Light Dark | © Copyright 2001 Python Software Foundation. This page is licensed under the Python Software Foundation License Version 2. Examples, recipes, and other code in the documentation are additionally licensed under the Zero Clause BSD License. See History and License for more information. The Python Software Foundation is a non-profit corporation. Please donate. Last updated on Jan 13, 2026 (06:19 UTC). Found a bug ? Created using Sphinx 8.2.3.
2026-01-13T08:47:43
https://dev.to/embernoglow/marching-cubes-algorithm-written-in-rust-473d
Marching Cubes algorithm written in Rust - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Add reaction Like Unicorn Exploding Head Raised Hands Fire Jump to Comments Save Boost More... Copy link Copy link Copied to Clipboard Share to X Share to LinkedIn Share to Facebook Share to Mastodon Share Post via... Report Abuse EmberNoGlow Posted on Jan 3           Marching Cubes algorithm written in Rust # rust # algorithms # opensource # programming Hello everyone 👋 I am happy to present my new AI-generated work: Marching cubes allow you to polygonize geometry created using a signed distance field! I created this for my project SDF model editor . License The code is distributed under the MIT license. For more information visit github Top comments (0) Subscribe Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Code of Conduct • Report abuse Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink . Hide child comments as well Confirm For further actions, you may consider blocking this person and/or reporting abuse EmberNoGlow Follow Just a dude, a mid-level on Godot / Python developer and Rust beginner Joined Nov 18, 2025 More from EmberNoGlow From Zero to SDF Editor Beta: How I Used AI to Force My Dream Project Out of the Prototype Stage. What I learned? # python # sideprojects # opensource # discuss The most useless python utility for development you can make? Mem lol Pillow # python # meme # programming # learning 📜 Prototype of Voxel Terrain Generation in Godot 4 # godot # tool # opensource # gamedev 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV Forem — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . Forem © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://dev.to/t/tutorial/page/5
Tutorial Page 5 - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close # tutorial Follow Hide Tutorial is a general purpose tag. We welcome all types of tutorial - code related or not! It's all about learning, and using tutorials to teach others! Create Post submission guidelines Tutorials should teach by example. This can include an interactive component or steps the reader can follow to understand. Older #tutorial posts 2 3 4 5 6 7 8 9 10 Posts Left menu 👋 Sign in for the ability to sort posts by relevant , latest , or top . Right menu Polyfil - useReducer ZeeshanAli-0704 ZeeshanAli-0704 ZeeshanAli-0704 Follow Jan 11 Polyfil - useReducer # interview # tutorial # javascript # react Comments Add Comment 5 min read HTML-101 #5. Text Formatting, Quotes & Code Formatting Himanshu Bhatt Himanshu Bhatt Himanshu Bhatt Follow Jan 11 HTML-101 #5. Text Formatting, Quotes & Code Formatting # html # learninpublic # beginners # tutorial 5  reactions Comments Add Comment 5 min read [Gaming][NS] Dark Souls Remastered: A Noob's Guide to Beating the Game Evan Lin Evan Lin Evan Lin Follow Jan 11 [Gaming][NS] Dark Souls Remastered: A Noob's Guide to Beating the Game # beginners # learning # tutorial Comments Add Comment 5 min read [Golang] Testing Twitter Authentication and Building a Timeline Project Evan Lin Evan Lin Evan Lin Follow Jan 11 [Golang] Testing Twitter Authentication and Building a Timeline Project # testing # api # tutorial # go Comments Add Comment 1 min read Why GitHubCard is the Final Tool You Need for Your Github Profile Colin Lee Colin Lee Colin Lee Follow Jan 10 Why GitHubCard is the Final Tool You Need for Your Github Profile # github # tooling # tutorial # githunt Comments 1  comment 3 min read Liquibase in Spring Boot Manikanta Yarramsetti Manikanta Yarramsetti Manikanta Yarramsetti Follow Jan 12 Liquibase in Spring Boot # database # java # springboot # tutorial 1  reaction Comments Add Comment 3 min read #1-2) 조건문은 결국 사전 처방이다. JEON HYUNJUN JEON HYUNJUN JEON HYUNJUN Follow Jan 11 #1-2) 조건문은 결국 사전 처방이다. # beginners # python # tutorial Comments Add Comment 2 min read Build a Robust Offline-First Flutter App with BLoC, Dio, and Sqflite ghamdan ghamdan ghamdan Follow Jan 10 Build a Robust Offline-First Flutter App with BLoC, Dio, and Sqflite # flutter # dart # mobile # tutorial Comments Add Comment 7 min read The 6 Best Payment Gateways in South Africa: A Practical Guide to Choosing and Integrating the Right Solution (2026) Jason Dos Santos Jason Dos Santos Jason Dos Santos Follow Jan 11 The 6 Best Payment Gateways in South Africa: A Practical Guide to Choosing and Integrating the Right Solution (2026) # api # backend # tutorial Comments Add Comment 5 min read A Simple Guide to a Faster Site Roman Musin Roman Musin Roman Musin Follow Jan 12 A Simple Guide to a Faster Site # performance # tutorial # webdev # wordpress 1  reaction Comments Add Comment 8 min read Vim Mode: Edit Prompts at the Speed of Thought Rajesh Royal Rajesh Royal Rajesh Royal Follow Jan 10 Vim Mode: Edit Prompts at the Speed of Thought # tutorial # claudecode # productivity # beginners Comments Add Comment 4 min read How to Start Becoming a Programmer Gus Woltmann Gus Woltmann Gus Woltmann Follow Jan 11 How to Start Becoming a Programmer # career # codenewbie # programming # tutorial Comments Add Comment 3 min read Level 1 - Foundations #1. Client-Server Model Himanshu Bhatt Himanshu Bhatt Himanshu Bhatt Follow Jan 11 Level 1 - Foundations #1. Client-Server Model # systemdesign # distributedsystems # tutorial # beginners 5  reactions Comments Add Comment 4 min read Angular Pipes Explained — From Basics to Custom Pipes (With Real Examples) ROHIT SINGH ROHIT SINGH ROHIT SINGH Follow Jan 11 Angular Pipes Explained — From Basics to Custom Pipes (With Real Examples) # beginners # tutorial # typescript # angular Comments Add Comment 2 min read Bug Bounty Hunting in 2026 krlz krlz krlz Follow Jan 11 Bug Bounty Hunting in 2026 # security # bugbounty # tutorial # beginners Comments Add Comment 4 min read Real-Time Dashboards: Building a Heart Rate Monitor Enhances Remote Health Tracking wellallyTech wellallyTech wellallyTech Follow Jan 11 Real-Time Dashboards: Building a Heart Rate Monitor Enhances Remote Health Tracking # node # tutorial # fullstack # react Comments Add Comment 2 min read Build a Professional Real-Time Chat App with Docker, Flask, and Socket.IO Rodney Gitonga Rodney Gitonga Rodney Gitonga Follow Jan 10 Build a Professional Real-Time Chat App with Docker, Flask, and Socket.IO # showdev # tutorial # docker # python Comments Add Comment 2 min read Brass TS — Building an Effect Runtime in TypeScript (Part 4) Augusto Vivaldelli Augusto Vivaldelli Augusto Vivaldelli Follow Jan 10 Brass TS — Building an Effect Runtime in TypeScript (Part 4) # architecture # opensource # tutorial # typescript Comments Add Comment 3 min read Generate PostgreSQL Test Data Without Code (Step-by-Step) DDLTODATA DDLTODATA DDLTODATA Follow Jan 11 Generate PostgreSQL Test Data Without Code (Step-by-Step) # postgres # nocode # tutorial # datascience Comments Add Comment 3 min read Getting Started with 2D Games Using Pyxel (Part 7): Control the Character Kajiru Kajiru Kajiru Follow Jan 10 Getting Started with 2D Games Using Pyxel (Part 7): Control the Character # python # gamedev # tutorial # pyxel Comments Add Comment 3 min read mkdir backend cd backend npm init -y npm install express mongoose cors dotenv Areeba Malik Areeba Malik Areeba Malik Follow Jan 11 mkdir backend cd backend npm init -y npm install express mongoose cors dotenv # tutorial # mongodb # node # react Comments 1  comment 3 min read Coding Challenge Practice - Question 99 Bukunmi Odugbesan Bukunmi Odugbesan Bukunmi Odugbesan Follow Jan 10 Coding Challenge Practice - Question 99 # interview # tutorial # devchallenge # javascript Comments Add Comment 1 min read Building Material Design Forms with Smelte in Svelte Lucas Bennett Lucas Bennett Lucas Bennett Follow Jan 10 Building Material Design Forms with Smelte in Svelte # webdev # programming # tutorial # javascript Comments Add Comment 7 min read Building Accessible Forms with Validation using shadcn-svelte in Svelte Lucas Bennett Lucas Bennett Lucas Bennett Follow Jan 10 Building Accessible Forms with Validation using shadcn-svelte in Svelte # webdev # programming # javascript # tutorial Comments Add Comment 8 min read Building Advanced Interactive Data Tables with Custom Sorting, Filtering, and Inline Editing using PowerTable in Svelte Lucas Bennett Lucas Bennett Lucas Bennett Follow Jan 10 Building Advanced Interactive Data Tables with Custom Sorting, Filtering, and Inline Editing using PowerTable in Svelte # svelte # webdev # programming # tutorial Comments Add Comment 6 min read loading... 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://docs.python.org
3.14.2 Documentation Theme Auto Light Dark Download Download these documents Docs by version Python 3.15 (in development) Python 3.14 (stable) Python 3.13 (stable) Python 3.12 (security-fixes) Python 3.11 (security-fixes) Python 3.10 (security-fixes) Python 3.9 (EOL) Python 3.8 (EOL) Python 3.7 (EOL) Python 3.6 (EOL) Python 3.5 (EOL) Python 3.4 (EOL) Python 3.3 (EOL) Python 3.2 (EOL) Python 3.1 (EOL) Python 3.0 (EOL) Python 2.7 (EOL) Python 2.6 (EOL) All versions Other resources PEP Index Beginner's Guide Book List Audio/Visual Talks Python Developer’s Guide Navigation index modules | Python » 3.14.2 Documentation » | Theme Auto Light Dark | Python 3.14.2 documentation Welcome! This is the official documentation for Python 3.14.2. Documentation sections: What's new in Python 3.14? Or all "What's new" documents since Python 2.0 Tutorial Start here: a tour of Python's syntax and features Library reference Standard library and builtins Language reference Syntax and language elements Python setup and usage How to install, configure, and use Python Python HOWTOs In-depth topic manuals Installing Python modules Third-party modules and PyPI.org Distributing Python modules Publishing modules for use by other people Extending and embedding For C/C++ programmers Python's C API C API reference FAQs Frequently asked questions (with answers!) Deprecations Deprecated functionality Indices, glossary, and search: Global module index All modules and libraries General index All functions, classes, and terms Glossary Terms explained Search page Search this documentation Complete table of contents Lists all sections and subsections Project information: Reporting issues Contributing to docs Download the documentation History and license of Python Copyright About the documentation Download Download these documents Docs by version Python 3.15 (in development) Python 3.14 (stable) Python 3.13 (stable) Python 3.12 (security-fixes) Python 3.11 (security-fixes) Python 3.10 (security-fixes) Python 3.9 (EOL) Python 3.8 (EOL) Python 3.7 (EOL) Python 3.6 (EOL) Python 3.5 (EOL) Python 3.4 (EOL) Python 3.3 (EOL) Python 3.2 (EOL) Python 3.1 (EOL) Python 3.0 (EOL) Python 2.7 (EOL) Python 2.6 (EOL) All versions Other resources PEP Index Beginner's Guide Book List Audio/Visual Talks Python Developer’s Guide « Navigation index modules | Python » 3.14.2 Documentation » | Theme Auto Light Dark | © Copyright 2001 Python Software Foundation. This page is licensed under the Python Software Foundation License Version 2. Examples, recipes, and other code in the documentation are additionally licensed under the Zero Clause BSD License. See History and License for more information. The Python Software Foundation is a non-profit corporation. Please donate. Last updated on Jan 13, 2026 (06:19 UTC). Found a bug ? Created using Sphinx 8.2.3.
2026-01-13T08:47:43
https://parenting.forem.com/t/learning
Learning - Parenting Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account Parenting Close Learning Follow Hide “I have no special talent. I am only passionately curious.” - Albert Einstein Create Post Posts Left menu 👋 Sign in for the ability to sort posts by relevant , latest , or top . Right menu Why the "Why?" Game is the Most Valuable Thing I Do With My Kids Juno Threadborne Juno Threadborne Juno Threadborne Follow Oct 20 '25 Why the "Why?" Game is the Most Valuable Thing I Do With My Kids # newparents # development # communication # learning 19  reactions Comments 2  comments 3 min read Navigating Modern Parenthood: Insights from This Week's Conversations Om Shree Om Shree Om Shree Follow Oct 19 '25 Navigating Modern Parenthood: Insights from This Week's Conversations # discuss # learning # development # mentalhealth 23  reactions Comments 5  comments 5 min read loading... 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV Parenting — A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Home About Contact Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . Parenting © 2016 - 2026. Navigating the chaos and joy of parenting. Log in Create account
2026-01-13T08:47:43
https://docs.suprsend.com/docs/ms-teams-template
Microsoft teams Template - SuprSend, Notification infrastructure for Product teams Skip to main content SuprSend, Notification infrastructure for Product teams home page Search... ⌘ K Community Trust Center Platform Status Postman Collection GETTING STARTED What is SuprSend? Quick Start Guide Best Practices Plan Your Integration Go-live checklist CORE CONCEPTS Templates Design Template Channel Editors Email Template In-App Inbox Template SMS Template Whatsapp Template Android Push Template iOS Push Template Web Push Template Slack Template Microsoft teams Template Testing the Template Handlebars Helpers Internationalization Users Events Workflow Notification Categories Preferences Tenants Lists Broadcast Objects Translations DLT Guidelines Whatsapp Template Guidelines WORKFLOW BUILDER Design Workflow Node List Workflow Settings Trigger Workflow Validate Trigger Payload Tenant Workflows Notification Inbox Overview Multi Tabs React Javascript (Angular, Vuejs etc) React Native Flutter (Headless) PREFERENCE CENTRE Embedded Preference Centre Javascript Angular React VENDOR INTEGRATION GUIDE Overview Email Integrations SMS Integrations Android Push Whatsapp Integrations iOS Push Chat Integrations Vendor Fallback Tenant Vendor INTEGRATIONS Webhook Connectors MONITORING & DEBUGGING Logs Audit Logs Error Guides MANAGE YOUR ACCOUNT Authentication Methods Contact Us Get Started SuprSend, Notification infrastructure for Product teams home page Search... ⌘ K Ask AI Contact Us Get Started Get Started Search... Navigation Channel Editors Microsoft teams Template Documentation API Reference Management API CLI Reference Developer Resources Changelog Documentation API Reference Management API CLI Reference Developer Resources Changelog Channel Editors Microsoft teams Template OpenAI Open in ChatGPT How to design simple MS Teams template using markdown editor or use JSONNET editor to replicate Microsoft’s adaptive card design. OpenAI Open in ChatGPT ​ Design Template You can design a simple text template with our default markdown editor. For advanced formatting and interactive options like buttons, images, and avatars, you can use Microsoft’s adaptive card design in JSONNET editor. Please note that the variable format for both editors will be different. We’ll cover more about it in the next sections. ​ Design simple text template using Markdown editor You can send simple text templates using the markdown editor in teams. Variables has to be added in handlebars format. Supported markdown syntax in Teams text messages: Format Syntax Headings # Heading level 1 . Refer all heading formats here line break end a line with two or more spaces, and then type return ( only 1 continuous line break is supported ) Bold **bold text** or __bold text__ Italic _italic text_ or *italic text* Bold Italic ***bold italic text*** or ___bold italic text___ >Blockquotes > block quote text Lists (1) First item (2) Second item Refer more lists format here code At the command prompt, type code . Links [Duck Duck Go](https://duckduckgo.com) ​ Adding dynamic data in markdown editor We use handlebarsjs as the template variable language in the markdown editor. You can learn about handlebarsjs here. If you are new to templates, we would recommend reading the templates documentation first to understand the basics of templating with SuprSend. To add dynamic data, first add the variable data from your event and workflow request in the Mock data . Enter the variables in JSON format as shown in the screenshot below. This JSON should be the same as passed in your workflow or event request (it is a part of the data field for workflow and properties field for event). Now, you can use your added sample by adding variables in the template. Type {{ and you’ll start getting auto-suggestions of the variables added in your sample data below the text field. You can select the variable from the dropdown or directly type it in. As a general rule, all the variables have to be entered within double curly brackets: {{variable_name}} . For URLs and links, we recommend using triple curly braces {{{url}}} .This is to avoid escaping html entities in handlebars. You can also write transformations like date-time formatting, if-else statement inside your templates using handlebar helpers . ​ Design adaptive card template using JSONNET editor You can switch to JSONNET editor for advanced formatting and interactive options like buttons, images, and avatars. Microsoft provides support for adaptive card design to design such templates using a drag-and-drop editor. You can design your template in the adaptive card designer and copy the JSON payload from your designer into the Teams JSONNET editor. We have also created some sample templates for a quick start. You can choose one of the samples from the right side options on top of the editor to start editing. We have used some mock data in our examples. Copy-paste the mock data values in the global Mock Data button to see the preview. Please note that the variable format ${variable} used in adaptive card is not supported in the JSONNET editor. You’ll have to add the variable in JSONNET format as data.variable ​ Adding dynamic data in JSONNET editor To add dynamic data, first add the variable data from your event and workflow request in the Mock data . Enter the variables in `JSON` format as shown in the screenshot below. This JSON should be the same as passed in your workflow or event request (it is a part of the `data` field for workflow and `properties` field for event). Once the variables are declared, you can add them in the template as data.<variable_name> . Note that you will be able to enter a variable name even when you have not declared it inside the ‘Mock data’ button. However, the preview will not load without declaring the variables in Mock Data . Hence it’s advised to always declare variables before loading the preview of the template. Below are some examples of how to enter variables in the JSONNET editor. We’ll use the sample shown in the screenshot above as a reference point. Add nested variable To enter a nested variable, enter in the format data.var1.var2.var3 . Eg. to refer to city in the example above, you need to enter data.location.city Add Variable with space and special characters in variable name If you have any space in the variable name, enclose it in square bracket data.event['first name'] or data[$brand].brand_name Add Single array element To refer to an array element, enter in format data.var[*index*].var2}} . Eg. to refer to product_name of the first element of the array array , enter data.array[0].product_name Add list of array items Enter in the below format to add a dynamic list of items. In the above example, variable array has a list of product items, with product_name , and product_price as array properties. Below is an example code to fetch array items in a text field list: JSONNET Copy Ask AI { "$schema" : "http://adaptivecards.io/schemas/adaptive-card.json" , "body" : [ { "text" : product.name + " at " + product.price , "type" : "TextBlock" , "wrap" : true } for product in data.products ], "type" : "AdaptiveCard" , "version" : "1.6" } You’ll need to add mock data for the variables added in your JSONNET template to view the parsed JSON template. JSON template will throw an error in case of missing mock data for a variable ​ Preview message Click on the Load Preview button to load the message preview. You will be able to see if your template is rendering properly with the sample mock data by loading the preview of your draft version. Make sure to see the preview before publishing the template to check if the parsed JSON is valid or not. ​ Publish the template Once finalized, you can publish the template by clicking on Publish template button on the draft version. Your template is now ready to be triggered. At the time of sending communication, if there is a variable present in the template whose value is not rendered due to mismatch or missing, SuprSend will simply discard the template and not send that particular notification to your user. Please note that the rest of the templates will still be sent. Eg. if there is an error in rendering Teams template, but email template is successfully rendered, Teams notification will not be triggered, but email notification will be triggered by SuprSend. Was this page helpful? Yes No Suggest edits Raise issue Previous Testing the Template How to send a test notification from the template editor to your device for actual message preview. Next ⌘ I x github linkedin youtube Powered by On this page Design Template Design simple text template using Markdown editor Adding dynamic data in markdown editor Design adaptive card template using JSONNET editor Adding dynamic data in JSONNET editor Preview message Publish the template
2026-01-13T08:47:43
https://www.dataprotection.ie/contact/how-contact-us
How to contact us | Data Protection Commission FAQs Contact us Children Gaeilge English Search Gaeilge Site Search Search Header Menu Your Data For Organisations Resources Who We Are News and Media Data Protection Officers FAQs Contact us Children Contact How to contact us Contact Us Online Contact our Comms Team Contact our DPO Access For People Who Require Special Assistance Breadcrumb Home contact How to contact us If you are a member of the public or an organisation wishing to speak with the Data Protection Commission in relation to a data protection matter, the most efficient way to get in touch is through the “CONTACT US ONLINE” button below. Contact Us Online It is important to note that the Data Protection Commission does not have a public counter and therefore we are not in a position to provide face-to-face meetings. If, however, you are not in a position to engage with this office by the above mentioned means, please contact our  Accessibility Officer . Alternatively you can contact us by phone* or by post: Christmas 2025 Helpdesk Hours Wednesday 17th December – 09:30am to 1pm Thursday 18th December – closed Wednesday 24th December – 09:30am to 12pm Thursday 25th December – closed Friday 26th December – closed Monday 29th December to Friday 2nd January – closed  Helpdesk Hours  9.30am - 1pm (Monday - Friday)    2pm - 5pm (Monday - Friday)  Telephone   (01) 765 01 00  1800 437 737  * Please note that when contacting the Helpdesk, you will only be provided with general information on data protection rights. The DPC is not in a position to accept complaints over the telephone; they will need to be submitted in writing, preferably through the "CONTACT US ONLINE" button above. The DPC cannot provide you with information on the status of a complaint you may have lodged or on the status of an inquiry which the DPC is undertaking. Postal Address Data Protection Commission 6 Pembroke Row Dublin 2 D02 X963 Ireland   Offices Dublin Office 6 Pembroke Row Dublin 2 D02 X963 Ireland Portarlington Office Canal House Station Road Portarlington R32 AP23 Co. Laois Your Data Data Protection: The Basics Your rights under the GDPR Exercising your rights Organisations Data Protection: The Basics Know your obligations Codes of Conduct GDPR Certification Resources for Organisations Rules for direct electronic marketing International Transfers Sports Conference 2025 Sports Infographics ARC SME Awareness ARC Conference ARC Workshops ARC Infographics Contact us Data Protection Commission 6 Pembroke Row Dublin 2 D02 X963 Ireland Accessibility Statement Data Protection Statement Cookie Policy Website Development by FUSIO
2026-01-13T08:47:43
https://openapi.tools
Tools for working with OpenAPI | OpenApi.tools, from APIs You Won't Hate Sponsored by Zudoku - Open-source, highly customizable API documentation powered by OpenAPI Get Started Sponsor openapi.tools GitHub Tools for working with OpenAPI descriptions A community-driven, open source project from APIs You Won't Hate. Submit a tool GitHub Contribute on GitHub openapi.json README.md 01 02 03 04 05 06 07 08 09 10 11 12 13 14 { "openapi" : "3.1.0" , "info" : { "title" : "Train Travel API" , "description" : "Find and book train trips." , "version" : "1.0.0" , "contact" : { "name" : "Train Support" , "url" : "https://example.com/support" , "email" : " [email protected] " } , } , // ... } Get Started All Tools All Categories Legacy Tools Contributing Sponsors Sponsor Badges Collections Arazzo Support Overlays Support Open Source Tools SaaS Tools OpenAPI Tool Categories Annotations Code generators Converters Data Validators Documentation Domain-Specific Languages (DSLs) Gateways HTTP Clients IDEs and GUI Editors Learning Miscellaneous Mock Servers Monitoring OpenAPI-aware Frameworks Parsers Schema Validators SDK Generators Security Server Implementations Testing Text Editors © 2026 APIs You Won't Hate Get in touch to become a Sponsor . This site is community-driven and OSS , built with Astro and hosted on Netlify . Categories Tools for working with OpenAPI There are many tools and resources available for working with OpenAPI. We've organized them into categories to help you find what you're looking for. If you're looking for a specific tool or resource, you can use the search bar at the top of the page. If you feel like something is missing, check out our instructions on how to contributing . Annotations Use annotations in your code to generate OpenAPI definitions, keeping the documentation close to the implementation. Code generators Tools to generate code from your OpenAPI Spec, or to generate an OpenAPI Spec from your code. Converters Various tools to convert to and from OpenAPI and other API description formats. Data Validators Check to see if API requests and responses are lining up with the API description. Documentation Render API Description as HTML (or maybe a PDF) so slightly less technical people can figure out how to work with the API Domain-Specific Languages (DSLs) Writing YAML by hand is no fun, and maybe you don't want a GUI, so use a Domain Specific Language to write OpenAPI in your language of choice. Gateways API Gateways and related tools that have integrated support for OpenAPI. HTTP Clients Tools and libraries for making HTTP requests to APIs usually with a fancy GUI experience. IDEs and GUI Editors Visual editors help you design APIs without needing to memorize the entire OpenAPI specification. Learning Whether generating documentation for a third-party API based on traffic, or are trying to "catch up on design-first" at an organization with no OpenAPI at all, these "learning" (or traffic sniffing) tools can help you get there. Miscellaneous Anything else that does stuff with OpenAPI but hasn't quite got enough to warrant its own category. Mock Servers Fake servers that take description document as input, then route incoming HTTP requests to example responses or dynamically generates examples. Monitoring Monitoring tools let you know what is going on in your API. OpenAPI-aware Frameworks There's a new breed of API-centric web application frameworks that produce OpenAPI for you from the actual code you're writing instead of messing with annotations or DSLs. Parsers Loads and read OpenAPI descriptions, so you can work with them programmatically. Schema Validators Check your API description or schema to see if it is valid OpenAPI. SDK Generators Generate code to give to consumers, to help them avoid interacting at a HTTP level. Security By poking around your OpenAPI description, some tools can look out for attack vectors you might not have noticed. Server Implementations Easily create and implement resources and routes for your APIs. Testing Quickly execute API requests and validate responses on the fly through command line or GUI interfaces. Text Editors Text editors give you visual feedback whilst you write OpenAPI, so you can see what docs might look like. * * *
2026-01-13T08:47:43
https://dev.to/action-in-action/how-leaders-build-connection-and-get-results#main-content
How Leaders Build Connection and Get Results - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Agile in Action with Bill Raymond Follow How Leaders Build Connection and Get Results Jul 18 '23 play 🎙️ Are you switched 💡 on to lead with compassionate accountability? Today, we are excited to introduce you to Dr. Nate Regier, Ph.D., who will share how to lead with compassionate accountability to build better relations and improve success.   Dr. Regier and Bill Raymond get vulnerable, sharing personal stories about leadership and growth. Dr. Regier connects these stories to the three switches of the compassionate mindset, covered in the book Compassionate Accountability. In this podcast, you will learn the following:   ✅ The definition and importance of compassion and accountability ✅ Building trust and unifying teams through compassion and shared struggles ✅ Dealing with behaviors while preserving dignity and bringing people closer together ✅ The three switches of a compassionate mindset (Value, Capability, and Responsibility) 🎉 Overcoming personal and team barriers that prevent compassionate accountability  Episode source Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Your browser does not support the audio element. 1x initializing... × 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://dev.to/behruamm/how-i-built-a-magic-move-animation-engine-for-excalidraw-from-scratch-published-4lmp#comments
How I built a "Magic Move" animation engine for Excalidraw from scratch published - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Add reaction Like Unicorn Exploding Head Raised Hands Fire Jump to Comments Save Boost More... Copy link Copy link Copied to Clipboard Share to X Share to LinkedIn Share to Facebook Share to Mastodon Share Post via... Report Abuse Behram Posted on Jan 12           How I built a "Magic Move" animation engine for Excalidraw from scratch published # webdev # react # animation # opensource I love Excalidraw for sketching system architectures. But sketches are static. When I want to show how a packet moves through a load balancer, or how a database shard splits, I have to wave my hands frantically or create 10 different slides. I wanted the ability to "Sketch Logic, Export Motion" . The Goal I didn't want a timeline editor (like After Effects). That's too much work for a simple diagram. I wanted "Keyless Animation" : Draw Frame 1 (The start state). Clone it to Frame 2 . Move elements to their new positions. The engine automatically figures out the transition. I built this engine using Next.js , Excalidraw , and Framer Motion . Here is a technical deep dive into how I implemented the logic. 1. The Core Logic: Diffing States The hardest part isn't the animation loop; it's the diffing . When we move from Frame A to Frame B , we identify elements by their stable IDs and categorize them into one of three buckets: Stable: The element exists in both frames (needs to morph/move). Entering: Exists in B but not A (needs to fade in). Exiting: Exists in A but not B (needs to fade out). I wrote a categorizeTransition utility that maps elements efficiently: // Simplified logic from src/utils/editor/transition-logic.ts export function categorizeTransition ( prevElements , currElements ) { const stable = []; const morphed = []; const entering = []; const exiting = []; const prevMap = new Map ( prevElements . map ( e => [ e . id , e ])); const currMap = new Map ( currElements . map ( e => [ e . id , e ])); // 1. Find Morphs (Stable) & Entering currElements . forEach ( curr => { if ( prevMap . has ( curr . id )) { const prev = prevMap . get ( curr . id ); // We separate "Stable" (identical) from "Morphed" (changed) // to optimize the render loop if ( areVisuallyIdentical ( prev , curr )) { stable . push ({ key : curr . id , element : curr }); } else { morphed . push ({ key : curr . id , start : prev , end : curr }); } } else { entering . push ({ key : curr . id , end : curr }); } }); // 2. Find Exiting prevElements . forEach ( prev => { if ( ! currMap . has ( prev . id )) { exiting . push ({ key : prev . id , start : prev }); } }); return { stable , morphed , entering , exiting }; } Enter fullscreen mode Exit fullscreen mode 2. Interpolating Properties For the "Morphed" elements, we need to calculate the intermediate state at any given progress (0.0 to 1.0). You can't just use simple linear interpolation for everything. Numbers (x, y, width): Linear works fine. Colors (strokeColor): You must convert Hex to RGBA, interpolate each channel, and convert back. Angles: You need "shortest path" interpolation. If an object is at 10 degrees and rotates to 350 degrees , linear interpolation goes the long way around. We want it to just rotate -20 degrees. // src/utils/smart-animation.ts const angleProgress = ( oldAngle , newAngle , progress ) => { let diff = newAngle - oldAngle ; // Normalize to -PI to +PI to find shortest direction while ( diff > Math . PI ) diff -= 2 * Math . PI ; while ( diff < - Math . PI ) diff += 2 * Math . PI ; return oldAngle + diff * progress ; }; Enter fullscreen mode Exit fullscreen mode 3. The Render Loop & Overlapping Phases Instead of CSS transitions (which are hard to sync for complex canvas repaints), I used a requestAnimationFrame loop in a React hook called useTransitionAnimation . A key "secret sauce" to making animations feel professional is overlap . If you play animations sequentially (Exit -> Move -> Enter), it feels robotic. I overlapped the phases so the scene feels alive: // Timeline Logic const exitEnd = hasExit ? 300 : 0 ; const morphStart = exitEnd ; const morphEnd = morphStart + 500 ; // [MAGIC TRICK] Start entering elements BEFORE the morph ends // This creates that "Apple Keynote" feel where things arrive // just as others are settling into place. const overlapDuration = 200 ; const enterStart = Math . max ( morphStart , morphEnd - overlapDuration ); Enter fullscreen mode Exit fullscreen mode 4. Making it feel "Physical" Linear movement ( progress = time / duration ) is boring. I implemented spring-based easing functions. Even though I'm manually calculating specific frames, I apply an easing curve to the progress value before feeding it into the interpolator. // Quartic Ease-Out Approximation for a "Heavy" feel const springEasing = ( t ) => { return 1 - Math . pow ( 1 - t , 4 ); }; Enter fullscreen mode Exit fullscreen mode This ensures that big architecture blocks "thud" into place with weight, rather than sliding around like ghosts. What's Next? I'm currently working on: Sub-step animations: Allowing you to click through bullet points within a single frame. Export to MP4: Recording the canvas stream directly to a video file. The project is live, and I built it to help developers communicate better. Try here: https://postara.io/ Free Stripe Promotion Code: postara Let me know what you think of the approach! Top comments (1) Subscribe Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Collapse Expand   SinghDevHub SinghDevHub SinghDevHub Follow MLE @CRED ⌛ Sharing on System design, AI, LLMs, ML Email lovepreet.singh@alumni.iitgn.ac.in Location Bangalore, India Work MLE @ CRED Joined Nov 29, 2022 • Jan 13 Dropdown menu Copy link Hide loved it Like comment: Like comment: 1  like Like Comment button Reply Some comments may only be visible to logged-in visitors. Sign in to view all comments. Code of Conduct • Report abuse Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink . Hide child comments as well Confirm For further actions, you may consider blocking this person and/or reporting abuse Behram Follow Ex-Data Scientist documenting the reality of building AI agent SaaS as a solo founder in the UK. Raw technical logs, AI leverage, and the path to profitability. Location Birmingham,UK Joined Nov 7, 2024 Trending on DEV Community Hot Stop Overengineering: How to Write Clean Code That Actually Ships 🚀 # discuss # javascript # programming # webdev I Didn’t “Become” a Senior Developer. I Accumulated Damage. # programming # ai # career # discuss How to Crack Any Software Developer Interview in 2026 (Updated for AI & Modern Hiring) # softwareengineering # programming # career # interview 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://docs.suprsend.com/docs/integrate-node-sdk
Integrate Node SDK - SuprSend, Notification infrastructure for Product teams Skip to main content SuprSend, Notification infrastructure for Product teams home page Search... ⌘ K Community Trust Center Platform Status Postman Collection Developer Resources Overview Updates and Versioning Versioning and Support Policy SDK Changelog Authentication API Keys and Secrets Service Token Best Practices for Key & Token Management MCP Overview BETA Quickstart Tool List Building with LLMs Security Security SDKs and APIs SDKs SDK Overview SuprSend Backend SDK Python SDK Node.js SDK Integrate Node SDK Manage Users Objects Send and Track Events Trigger Workflow from API Tenants Lists Broadcast Java SDK Go SDK SuprSend Client SDK Management API REST API Postman Collection Features Validate Trigger Payload Type Safety Testing Testing the Template Test Mode Monitoring and Logging Logs Data Out Contact Us Get Started SuprSend, Notification infrastructure for Product teams home page Search... ⌘ K Ask AI Contact Us Get Started Get Started Search... Navigation Node.js SDK Integrate Node SDK Documentation API Reference Management API CLI Reference Developer Resources Changelog Documentation API Reference Management API CLI Reference Developer Resources Changelog Node.js SDK Integrate Node SDK OpenAI Open in ChatGPT Install & Initialize SuprSend NodeJS SDK using your workspace credentials for sending notifications. OpenAI Open in ChatGPT ​ Installation npm yarn Copy Ask AI npm install @suprsend/node-sdk@latest ​ Initialization javascript Copy Ask AI const { Suprsend } = require ( "@suprsend/node-sdk" ); const supr_client = new Suprsend ( "WORKSPACE KEY" , "WORKSPACE SECRET" ); Replace WORKSPACE KEY and WORKSPACE SECRET with your workspace values. You will find them on SuprSend Dashboard Developers -> API Keys page. Was this page helpful? Yes No Suggest edits Raise issue Previous Manage Users Create, update, & manage user profiles and communication channels using NodeJS SDK methods. Next ⌘ I x github linkedin youtube Powered by On this page Installation Initialization
2026-01-13T08:47:43
https://parenting.forem.com/t/communication
Communication - Parenting Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account Parenting Close # communication Follow Hide Tips for talking effectively with your children at every age. Create Post Older #communication posts 1 2 3 4 5 6 7 8 9 Posts Left menu 👋 Sign in for the ability to sort posts by relevant , latest , or top . Right menu Why the "Why?" Game is the Most Valuable Thing I Do With My Kids Juno Threadborne Juno Threadborne Juno Threadborne Follow Oct 20 '25 Why the "Why?" Game is the Most Valuable Thing I Do With My Kids # newparents # development # communication # learning 19  reactions Comments 2  comments 3 min read loading... 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV Parenting — A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Home About Contact Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . Parenting © 2016 - 2026. Navigating the chaos and joy of parenting. Log in Create account
2026-01-13T08:47:43
https://dev.to/thekarlesi/how-to-handle-stripe-and-paystack-webhooks-in-nextjs-the-app-router-way-5bgi
How to Handle Stripe and Paystack Webhooks in Next.js (The App Router Way) - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Add reaction Like Unicorn Exploding Head Raised Hands Fire Jump to Comments Save Boost More... Copy link Copy link Copied to Clipboard Share to X Share to LinkedIn Share to Facebook Share to Mastodon Share Post via... Report Abuse Esimit Karlgusta Posted on Jan 13           How to Handle Stripe and Paystack Webhooks in Next.js (The App Router Way) # api # nextjs # security # tutorial The #1 reason developers struggle with SaaS payments is Webhook Signature Verification. You set everything up, the test payment goes through, but your server returns a 400 Bad Request or a Signature Verification Failed error. In the Next.js App Router, the problem usually stems from how the request body is parsed. Stripe and Paystack require the raw request body to verify the signature, but Next.js often tries to be helpful by parsing it as JSON before you can get to it. Here is the "Golden Pattern" for handling this in 2026. 1. The Route Handler Setup Create a file at app/api/webhooks/route.ts . You must export a config object (if using older versions) or use the req.text() method in the App Router to prevent automatic parsing. import { NextResponse } from " next/server " ; import crypto from " crypto " ; export async function POST ( req : Request ) { // 1. Get the raw body as text const body = await req . text (); // 2. Grab the signature from headers const signature = req . headers . get ( " x-paystack-signature " ) || req . headers . get ( " stripe-signature " ); if ( ! signature ) { return NextResponse . json ({ error : " No signature " }, { status : 400 }); } // 3. Verify the signature (Example for Paystack) const hash = crypto . createHmac ( " sha512 " , process . env . PAYSTACK_SECRET_KEY ! ) . update ( body ) . digest ( " hex " ); if ( hash !== signature ) { return NextResponse . json ({ error : " Invalid signature " }, { status : 401 }); } // 4. Now parse the body and handle the event const event = JSON . parse ( body ); if ( event . event === " charge.success " ) { // Handle successful payment in your database console . log ( " Payment successful for: " , event . data . customer . email ); } return NextResponse . json ({ received : true }, { status : 200 }); } Enter fullscreen mode Exit fullscreen mode 2. The Middleware Trap If you have global middleware protecting your routes, ensure your webhook path is excluded. Otherwise, the payment provider will hit your login page instead of your API. 3. Why this matters for your SaaS If your webhooks fail, your users won't get their "Pro" access, and your churn will skyrocket. Handling this correctly is the difference between a side project and a real business. I have spent a lot of time documenting these "Gotchas" while building my MERN stack projects. If you want to see a full implementation of this including Stripe, Paystack, and database logic, check out my deep dive here: How to add Stripe or Paystack payments to your SaaS . Digging Deeper If you are tired of debugging the same boilerplate over and over, you might find my SassyPack overview helpful. I built it specifically to solve these "Day 1" technical headaches for other founders. Happy coding! Top comments (0) Subscribe Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Code of Conduct • Report abuse Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink . Hide child comments as well Confirm For further actions, you may consider blocking this person and/or reporting abuse Esimit Karlgusta Follow Full Stack Developer Location Earth, for now :) Education BSc. IT Work Full Stack Developer Joined Mar 31, 2020 More from Esimit Karlgusta Secure Authentication in Next.js: Building a Production-Ready Login System # webdev # programming # nextjs # beginners Stop Coding Login Screens: A Senior Developer’s Guide to Building SaaS That Actually Ships # webdev # programming # beginners # tutorial Zero to SaaS vs ShipFast, Which One Actually Helps You Build a Real SaaS? # nextjs # beginners # webdev # programming 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://parenting.forem.com/t/discuss
Discussion Threads - Parenting Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account Parenting Close Discussion Threads Follow Hide Discussion threads targeting the whole community Create Post submission guidelines These posts should include a question, prompt, or topic that initiates a discussion in the comments section. Posts Left menu 👋 Sign in for the ability to sort posts by relevant , latest , or top . Right menu How Becoming a Parent Helped Me Notice the Small Things Eli Sanderson Eli Sanderson Eli Sanderson Follow Nov 21 '25 How Becoming a Parent Helped Me Notice the Small Things # discuss # celebrations # newparents 7  reactions Comments 1  comment 7 min read We started a new routine called 'highs and lows' to get our kids to open up more! Jess Lee Jess Lee Jess Lee Follow Oct 22 '25 We started a new routine called 'highs and lows' to get our kids to open up more! # discuss 19  reactions Comments 2  comments 2 min read What do you do when your kids won't wear weather appropriate clothes? Jenny Li Jenny Li Jenny Li Follow Oct 14 '25 What do you do when your kids won't wear weather appropriate clothes? # discuss 10  reactions Comments 2  comments 1 min read Navigating Modern Parenthood: Insights from This Week's Conversations Om Shree Om Shree Om Shree Follow Oct 19 '25 Navigating Modern Parenthood: Insights from This Week's Conversations # discuss # learning # development # mentalhealth 23  reactions Comments 5  comments 5 min read How do you think about screen time and technology? Jess Lee Jess Lee Jess Lee Follow Oct 14 '25 How do you think about screen time and technology? # discuss # technology 5  reactions Comments 3  comments 1 min read loading... trending guides/resources How Becoming a Parent Helped Me Notice the Small Things 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV Parenting — A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Home About Contact Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . Parenting © 2016 - 2026. Navigating the chaos and joy of parenting. Log in Create account
2026-01-13T08:47:43
https://aws.amazon.com/blogs/developer/aws-sdk-for-net-v3-5-preview/
AWS SDK for .NET v3.5 Preview | AWS Developer Tools Blog Skip to Main Content Filter: All English Contact us AWS Marketplace Support My account Search Filter: All Sign in to console Create account AWS Blogs Home Blogs Editions AWS Developer Tools Blog AWS SDK for .NET v3.5 Preview by Aaron Costley on 06 FEB 2020 in .NET , AWS .NET Development , AWS SDK for .NET , Developer Tools Permalink Share Today, we have published a preview release of version 3.5 of the AWS SDK for .NET. This primary objective of this version is to transition support for all non-Framework versions of the SDK to .NET Standard 2.0. If you are currently using a .NET Framework or .NET Core target, no changes are required. We are doing this to accelerate feature development and offer newer functionality to a greater set of customers going forward. What does this mean for you? Platform Requirements .NET Framework, .NET Core, .NET Standard No changes. You should experience no breakages, and no action is required. Xamarin If you are starting a new project, target .NET Standard 2.0. If you have an existing project, port your existing solution to .NET Standard 2.0. Migration guide Platform support Unity Target the .NET Standard 2.0 or .NET 4.x profiles using Unity 2018.1 or later. As noted in a tutorial blog post , if you are using IL2CPP to build, you must disable code stripping by adding a link.xml file. Universal Windows Platform (UWP) Target your UWP application to version 16299 or later (Fall Creators update, version 1709, released October 2017). Windows Phone, Silverlight These platform targets are discouraged by Microsoft, and are not undergoing active development. Therefore, these platforms have been dropped and there is no migration path. Windows Phone EOL Silverlight EOL Legacy Portable Class Libraries (Profile-Based PCLs) Consider re-targeting your library to .NET Standard, as per guidance from Microsoft . Asynchronous Programming The .NET Standard version of the AWS SDK for .NET only supports asynchronous calls to AWS services. This is preferred pattern for making web calls for performance and scalability. If your application is currently using synchronous calls, the code will need to be changed to use the asynchronous versions. Unity has access to all services Unity has historically only had access to 13 services offered by AWS. With the transition to .NET Standard and use of version 3.5 of the AWS SDK for .NET binaries, Unity customers will have access to all services offered by AWS at the same time and at the same support level as all other supported platforms. Archival of Unity core Unity (since 2018.1) is supported via .NET Standard 2.0. As a result, all-Unity specific code in AWSSDK.Core has been removed. This includes some higher-level functionality that was included in that codebase. To provide a better transition, all the Unity code has been extracted into a GitHub archive repository for reference. If there is missing functionality in the .NET Standard version of the SDK impacting your use of AWS with Unity, please file a feature request. Unity Archive: https://github.com/aws/aws-sdk-unity-net Extraction of Cognito Sync Manager, Mobile Analytics Manager These higher level abstractions allowing easier use of Amazon Cognito Sync and Amazon Mobile Analytics have been removed from the SDK. These libraries will be made available in separate repositories and distributed via new NuGet packages. Amazon Pinpoint is the preferred replacement for Amazon Mobile Analytics. AWS AppSync is the preferred replacement for Amazon Cognito Sync. We are aware that there are gaps in support for these new services in the SDK. If you are affected by the lack of higher-level library code for these services, please upvote the pinned feature issues and add relevant comments. Amazon Pinpoint Higher Level library tracking issue Amazon AppSync Higher Level Library/Amplify support tracking issue Cognito Sync Manager: https://github.com/aws/amazon-cognito-sync-manager-net Mobile Analytics Manager: https://github.com/aws/aws-mobile-analytics-manager-net Try it out! We encourage you to try out the preview to ensure a smooth transition to the new version when it goes GA. The NuGet packages are using the version 3.5.0.0-beta. You will need to enable “preview versions” to get access to this version. The beta is currently based on version 3.3.633.0 of the SDK (Released 2020-01-14). If you need to use DLLs (for example, for Unity), you can get the .NET Standard 2.0 binaries here . If you encounter ANY issues not documented in this post, please file a issue in the aws-sdk-net repository on GitHub. TAGS: .NET , C# , Silverlight , Unity , Universal Windows Platform , Windows , Windows Phone , Xamarin Aaron Costley Resources Developer Resources & Community Open Source Repos Twitch Live Coding Labs on Github Follow  Instagram  Reddit  Twitter  Facebook  LinkedIn  Twitch  Email Updates @charset "UTF-8";[data-eb-6a8f3296] .rgft_9e423fbb.rgft_1b2a14d4{position:relative;transition:box-shadow .3s ease}[data-eb-6a8f3296] .rgft_9e423fbb.rgft_1b2a14d4:not(:disabled,.rgft_3ef5a62a).rgft_3d631df0,[data-eb-6a8f3296] .rgft_9e423fbb.rgft_1b2a14d4:not(:disabled,.rgft_3ef5a62a).rgft_b27cc003,[data-eb-6a8f3296] .rgft_9e423fbb.rgft_1b2a14d4:not(:disabled,.rgft_3ef5a62a).rgft_5962fadc:hover{box-shadow:var(--rg-shadow-gray-elevation-1, 1px 1px 20px rgba(0, 0, 0, .1))}[data-eb-6a8f3296] .rgft_9e423fbb.rgft_1b2a14d4:not(:disabled,.rgft_3ef5a62a).rgft_3d631df0.rgft_e79955da,[data-eb-6a8f3296] .rgft_9e423fbb.rgft_1b2a14d4:not(:disabled,.rgft_3ef5a62a).rgft_b27cc003.rgft_e79955da,[data-eb-6a8f3296] .rgft_9e423fbb.rgft_1b2a14d4:not(:disabled,.rgft_3ef5a62a).rgft_5962fadc:hover.rgft_e79955da{box-shadow:var(--rg-shadow-gray-elevation-2, 1px 1px 24px rgba(0, 0, 0, .25))}[data-eb-6a8f3296] .rgft_9e423fbb.rgft_1b2a14d4:not(:disabled,.rgft_3ef5a62a).rgft_b27cc003:hover{box-shadow:none}[data-eb-6a8f3296] .rgft_9e423fbb.rgft_1ed8cbde{position:relative;transform-style:preserve-3d;overflow:unset!important}[data-eb-6a8f3296] .rgft_9e423fbb.rgft_1ed8cbde:before{content:"";position:absolute;inset:0;border-radius:inherit;transform:translateZ(-1px);pointer-events:none;transition-property:filter,inset;transition-duration:.3s;transition-timing-function:ease;background-clip:content-box!important;padding:1px}[data-eb-6a8f3296] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a).rgft_3d631df0:before{filter:blur(15px)}[data-eb-6a8f3296] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a).rgft_3d631df0.rgft_4df65418:hover:before{filter:blur(20px)}[data-eb-6a8f3296] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a).rgft_5962fadc:hover:before{filter:blur(15px)}[data-eb-6a8f3296] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a).rgft_b27cc003:before{filter:blur(15px)}[data-eb-6a8f3296] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a).rgft_b27cc003:hover:before{filter:none}[data-eb-6a8f3296] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a).rgft_e90ac70d:active:before{filter:blur(8px)!important}[data-eb-6a8f3296] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a).rgft_a4f580d2:before{filter:blur(8px)!important}[data-eb-6a8f3296] [data-rg-mode=light][data-rg-theme=fuchsia] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a).rgft_38d8ffac:before,[data-eb-6a8f3296] [data-rg-mode=light][data-rg-theme=fuchsia].rgft_9e423fbb.rgft_1ed8cbde.rgft_38d8ffac:not(:disabled,.rgft_3ef5a62a):before{background:var(--rg-shadow-gradient-fuchsia, linear-gradient(123deg, #fa6f00 0%, #e433ff 50%, #8575ff 100%))}[data-eb-6a8f3296] [data-rg-mode=dark][data-rg-theme=fuchsia] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a).rgft_38d8ffac:before,[data-eb-6a8f3296] [data-rg-mode=dark][data-rg-theme=fuchsia].rgft_9e423fbb.rgft_1ed8cbde.rgft_38d8ffac:not(:disabled,.rgft_3ef5a62a):before{background:var(--rg-shadow-gradient-fuchsia, linear-gradient(123deg, #d14600 0%, #c300e0 50%, #6842ff 100%))}[data-eb-6a8f3296] [data-rg-mode=light][data-rg-theme=indigo] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a).rgft_38d8ffac:before,[data-eb-6a8f3296] [data-rg-mode=light][data-rg-theme=indigo].rgft_9e423fbb.rgft_1ed8cbde.rgft_38d8ffac:not(:disabled,.rgft_3ef5a62a):before{background:var(--rg-shadow-gradient-indigo, linear-gradient(123deg, #0099ff 0%, #5c7fff 50%, #8575ff 100%))}[data-eb-6a8f3296] [data-rg-mode=dark][data-rg-theme=indigo] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a).rgft_38d8ffac:before,[data-eb-6a8f3296] [data-rg-mode=dark][data-rg-theme=indigo].rgft_9e423fbb.rgft_1ed8cbde.rgft_38d8ffac:not(:disabled,.rgft_3ef5a62a):before{background:var(--rg-shadow-gradient-indigo, linear-gradient(123deg, #006ce0 0%, #295eff 50%, #6842ff 100%))}[data-eb-6a8f3296] [data-rg-mode=light][data-rg-theme=orange] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a).rgft_38d8ffac:before,[data-eb-6a8f3296] [data-rg-mode=light][data-rg-theme=orange].rgft_9e423fbb.rgft_1ed8cbde.rgft_38d8ffac:not(:disabled,.rgft_3ef5a62a):before{background:var(--rg-shadow-gradient-orange, linear-gradient(123deg, #ff1ae0 0%, #ff386a 50%, #fa6f00 100%))}[data-eb-6a8f3296] [data-rg-mode=dark][data-rg-theme=orange] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a).rgft_38d8ffac:before,[data-eb-6a8f3296] [data-rg-mode=dark][data-rg-theme=orange].rgft_9e423fbb.rgft_1ed8cbde.rgft_38d8ffac:not(:disabled,.rgft_3ef5a62a):before{background:var(--rg-shadow-gradient-orange, linear-gradient(123deg, #d600ba 0%, #eb003b 50%, #d14600 100%))}[data-eb-6a8f3296] [data-rg-mode=light][data-rg-theme=teal] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a).rgft_38d8ffac:before,[data-eb-6a8f3296] [data-rg-mode=light][data-rg-theme=teal].rgft_9e423fbb.rgft_1ed8cbde.rgft_38d8ffac:not(:disabled,.rgft_3ef5a62a):before{background:var(--rg-shadow-gradient-teal, linear-gradient(123deg, #00bd6b 0%, #00a4bd 50%, #0099ff 100%))}[data-eb-6a8f3296] [data-rg-mode=dark][data-rg-theme=teal] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a).rgft_38d8ffac:before,[data-eb-6a8f3296] [data-rg-mode=dark][data-rg-theme=teal].rgft_9e423fbb.rgft_1ed8cbde.rgft_38d8ffac:not(:disabled,.rgft_3ef5a62a):before{background:var(--rg-shadow-gradient-teal, linear-gradient(123deg, #008559 0%, #007e94 50%, #006ce0 100%))}[data-eb-6a8f3296] [data-rg-mode=light][data-rg-theme=blue] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a).rgft_38d8ffac:before,[data-eb-6a8f3296] [data-rg-mode=light][data-rg-theme=blue].rgft_9e423fbb.rgft_1ed8cbde.rgft_38d8ffac:not(:disabled,.rgft_3ef5a62a):before{background:var(--rg-shadow-gradient-blue, linear-gradient(123deg, #00bd6b 0%, #0099ff 50%, #8575ff 100%))}[data-eb-6a8f3296] [data-rg-mode=dark][data-rg-theme=blue] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a).rgft_38d8ffac:before,[data-eb-6a8f3296] [data-rg-mode=dark][data-rg-theme=blue].rgft_9e423fbb.rgft_1ed8cbde.rgft_38d8ffac:not(:disabled,.rgft_3ef5a62a):before{background:var(--rg-shadow-gradient-blue, linear-gradient(123deg, #008559 0%, #006ce0 50%, #6842ff 100%))}[data-eb-6a8f3296] [data-rg-mode=light][data-rg-theme=violet] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a).rgft_38d8ffac:before,[data-eb-6a8f3296] [data-rg-mode=light][data-rg-theme=violet].rgft_9e423fbb.rgft_1ed8cbde.rgft_38d8ffac:not(:disabled,.rgft_3ef5a62a):before{background:var(--rg-shadow-gradient-violet, linear-gradient(123deg, #ad5cff 0%, #0099ff 50%, #00a4bd 100%))}[data-eb-6a8f3296] [data-rg-mode=dark][data-rg-theme=violet] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a).rgft_38d8ffac:before,[data-eb-6a8f3296] [data-rg-mode=dark][data-rg-theme=violet].rgft_9e423fbb.rgft_1ed8cbde.rgft_38d8ffac:not(:disabled,.rgft_3ef5a62a):before{background:var(--rg-shadow-gradient-violet, linear-gradient(123deg, #962eff 0%, #006ce0 50%, #007e94 100%))}[data-eb-6a8f3296] [data-rg-mode=light][data-rg-theme=purple] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a).rgft_38d8ffac:before,[data-eb-6a8f3296] [data-rg-mode=light][data-rg-theme=purple].rgft_9e423fbb.rgft_1ed8cbde.rgft_38d8ffac:not(:disabled,.rgft_3ef5a62a):before{background:var(--rg-shadow-gradient-purple, linear-gradient(123deg, #ff1ae0 0%, #8575ff 50%, #00a4bd 100%))}[data-eb-6a8f3296] [data-rg-mode=dark][data-rg-theme=purple] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a).rgft_38d8ffac:before,[data-eb-6a8f3296] [data-rg-mode=dark][data-rg-theme=purple].rgft_9e423fbb.rgft_1ed8cbde.rgft_38d8ffac:not(:disabled,.rgft_3ef5a62a):before{background:var(--rg-shadow-gradient-purple, linear-gradient(123deg, #d600ba 0%, #6842ff 50%, #007e94 100%))}[data-eb-6a8f3296] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a):before{background:linear-gradient(123deg,#d14600,#c300e0,#6842ff)}[data-eb-6a8f3296] [data-rg-theme=fuchsia] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a):before,[data-eb-6a8f3296] [data-rg-theme=fuchsia].rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a):before{background:var(--rg-shadow-gradient-fuchsia, linear-gradient(123deg, #d14600 0%, #c300e0 50%, #6842ff 100%))}[data-eb-6a8f3296] [data-rg-theme=indigo] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a):before,[data-eb-6a8f3296] [data-rg-theme=indigo].rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a):before{background:var(--rg-shadow-gradient-indigo, linear-gradient(123deg, #006ce0 0%, #295eff 50%, #6842ff 100%))}[data-eb-6a8f3296] [data-rg-theme=orange] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a):before,[data-eb-6a8f3296] [data-rg-theme=orange].rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a):before{background:var(--rg-shadow-gradient-orange, linear-gradient(123deg, #d600ba 0%, #eb003b 50%, #d14600 100%))}[data-eb-6a8f3296] [data-rg-theme=teal] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a):before,[data-eb-6a8f3296] [data-rg-theme=teal].rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a):before{background:var(--rg-shadow-gradient-teal, linear-gradient(123deg, #008559 0%, #007e94 50%, #006ce0 100%))}[data-eb-6a8f3296] [data-rg-theme=blue] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a):before,[data-eb-6a8f3296] [data-rg-theme=blue].rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a):before{background:var(--rg-shadow-gradient-blue, linear-gradient(123deg, #008559 0%, #006ce0 50%, #6842ff 100%))}[data-eb-6a8f3296] [data-rg-theme=violet] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a):before,[data-eb-6a8f3296] [data-rg-theme=violet].rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a):before{background:var(--rg-shadow-gradient-violet, linear-gradient(123deg, #962eff 0%, #006ce0 50%, #007e94 100%))}[data-eb-6a8f3296] [data-rg-theme=purple] .rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a):before,[data-eb-6a8f3296] [data-rg-theme=purple].rgft_9e423fbb.rgft_1ed8cbde:not(:disabled,.rgft_3ef5a62a):before{background:var(--rg-shadow-gradient-purple, linear-gradient(123deg, #d600ba 0%, #6842ff 50%, #007e94 100%))}[data-eb-6a8f3296] a.rgft_f7822e54,[data-eb-6a8f3296] button.rgft_f7822e54{--button-size: 44px;--button-pad-h: 24px;--button-pad-borderless-h: 26px;border:2px solid var(--rg-color-background-page-inverted, #0F141A);padding:8px var(--button-pad-h, 24px);border-radius:40px!important;align-items:center;justify-content:center;display:inline-flex;height:var(--button-size, 44px);text-decoration:none!important;text-wrap:nowrap;cursor:pointer;position:relative;transition:all .3s ease}[data-eb-6a8f3296] a.rgft_f7822e54.rgft_094d67e1,[data-eb-6a8f3296] button.rgft_f7822e54.rgft_094d67e1{--button-size: 32px;--button-pad-h: 14px;--button-pad-borderless-h: 16px}[data-eb-6a8f3296] a.rgft_f7822e54>span,[data-eb-6a8f3296] button.rgft_f7822e54>span{color:var(--btn-text-color, inherit)!important}[data-eb-6a8f3296] a.rgft_f7822e54:focus-visible,[data-eb-6a8f3296] button.rgft_f7822e54:focus-visible{outline:2px solid var(--rg-color-focus-ring, #006CE0)!important;outline-offset:4px!important;transition:outline 0s}[data-eb-6a8f3296] a.rgft_f7822e54:focus:not(:focus-visible),[data-eb-6a8f3296] button.rgft_f7822e54:focus:not(:focus-visible){outline:none!important}[data-eb-6a8f3296] a.rgft_f7822e54.rgft_303c672b,[data-eb-6a8f3296] button.rgft_f7822e54.rgft_303c672b{--btn-text-color: var(--rg-color-text-utility-inverted, #FFFFFF);background-color:var(--rg-color-btn-primary-bg, #161D26);border:none;padding:10px var(--button-pad-borderless-h, 24px)}[data-eb-6a8f3296] a.rgft_f7822e54.rgft_18409398,[data-eb-6a8f3296] button.rgft_f7822e54.rgft_18409398{--btn-text-color: var(--rg-color-text-utility, #161D26);background-color:var(--rg-color-btn-secondary-bg, #FFFFFF);border-color:var(--rg-color-background-page-inverted, #0F141A)}[data-eb-6a8f3296] a.rgft_f7822e54.rgft_090951dc,[data-eb-6a8f3296] button.rgft_f7822e54.rgft_090951dc{--btn-text-color: var(--rg-color-text-utility, #161D26);background-color:var(--rg-color-background-object, #F3F3F7);border:none;padding:10px var(--button-pad-borderless-h, 24px)}[data-eb-6a8f3296] a.rgft_f7822e54.rgft_15529d9f,[data-eb-6a8f3296] button.rgft_f7822e54.rgft_15529d9f{--btn-text-color: var(--rg-color-text-utility, #161D26);background-color:var(--rg-color-btn-secondary-bg, #FFFFFF);border:none;padding:10px var(--button-pad-borderless-h, 24px)}[data-eb-6a8f3296] a.rgft_f7822e54.rgft_bb950a4e,[data-eb-6a8f3296] button.rgft_f7822e54.rgft_bb950a4e{--btn-text-color: var(--rg-color-text-utility, #161D26);border:none;padding:10px var(--button-pad-borderless-h, 24px)}[data-eb-6a8f3296] a.rgft_f7822e54.rgft_bb950a4e,[data-eb-6a8f3296] button.rgft_f7822e54.rgft_bb950a4e{background-image:linear-gradient(97deg,#ffc0ad,#f8c7ff 37.79%,#d2ccff 75.81%,#c2d1ff)}[data-eb-6a8f3296] a.rgft_f7822e54.rgft_bb950a4e,[data-eb-6a8f3296] button.rgft_f7822e54.rgft_bb950a4e{--rg-gradient-angle:97deg;background-image:var(--rg-gradient-a, linear-gradient(120deg, #f8c7ff 20.08%, #d2ccff 75.81%))}[data-eb-6a8f3296] [data-rg-mode=dark] a.rgft_f7822e54.rgft_bb950a4e,[data-eb-6a8f3296] [data-rg-mode=dark] button.rgft_f7822e54.rgft_bb950a4e,[data-eb-6a8f3296] a[data-rg-mode=dark].rgft_f7822e54.rgft_bb950a4e,[data-eb-6a8f3296] button[data-rg-mode=dark].rgft_f7822e54.rgft_bb950a4e{background-image:var(--rg-gradient-a, linear-gradient(120deg, #78008a 24.25%, #b2008f 69.56%))}[data-eb-6a8f3296] a.rgft_f7822e54.rgft_bb419678,[data-eb-6a8f3296] button.rgft_f7822e54.rgft_bb419678{--btn-text-color: var(--rg-color-text-utility-inverted, #FFFFFF);background-color:var(--rg-color-btn-visited-bg, #656871);border-color:var(--rg-color-btn-visited-bg, #656871)}[data-eb-6a8f3296] a.rgft_f7822e54.rgft_bb419678.rgft_18409398,[data-eb-6a8f3296] a.rgft_f7822e54.rgft_bb419678.rgft_15529d9f,[data-eb-6a8f3296] button.rgft_f7822e54.rgft_bb419678.rgft_18409398,[data-eb-6a8f3296] button.rgft_f7822e54.rgft_bb419678.rgft_15529d9f{--btn-text-color: var(--rg-color-text-utility, #161D26);background-color:var(--rg-color-btn-secondary-visited-bg, #FFFFFF)}[data-eb-6a8f3296] a.rgft_f7822e54.rgft_badebaf5,[data-eb-6a8f3296] button.rgft_f7822e54.rgft_badebaf5{--btn-text-color: var(--rg-color-btn-disabled-text, #B4B4BB);background-color:var(--rg-color-btn-disabled-bg, #F3F3F7);border-color:var(--rg-color-btn-disabled-bg, #F3F3F7);cursor:default}[data-eb-6a8f3296] a.rgft_f7822e54.rgft_badebaf5.rgft_18409398,[data-eb-6a8f3296] a.rgft_f7822e54.rgft_badebaf5.rgft_15529d9f,[data-eb-6a8f3296] button.rgft_f7822e54.rgft_badebaf5.rgft_18409398,[data-eb-6a8f3296] button.rgft_f7822e54.rgft_badebaf5.rgft_15529d9f{border:none;padding:10px var(--button-pad-borderless-h, 24px)}[data-eb-6a8f3296] a.rgft_f7822e54.rgft_badebaf5.rgft_090951dc,[data-eb-6a8f3296] button.rgft_f7822e54.rgft_badebaf5.rgft_090951dc{--btn-text-color: var(--rg-color-btn-tertiary-disabled-text, #B4B4BB);background-color:#0000}[data-eb-6a8f3296] a.rgft_f7822e54:hover:not(.rgft_badebaf5).rgft_18409398:not(.rgft_bb950a4e),[data-eb-6a8f3296] a.rgft_f7822e54:hover:not(.rgft_badebaf5).rgft_15529d9f:not(.rgft_bb950a4e),[data-eb-6a8f3296] button.rgft_f7822e54:hover:not(.rgft_badebaf5).rgft_18409398:not(.rgft_bb950a4e),[data-eb-6a8f3296] button.rgft_f7822e54:hover:not(.rgft_badebaf5).rgft_15529d9f:not(.rgft_bb950a4e){--btn-text-color: var(--rg-color-text-utility, #161D26);background-color:var(--rg-color-btn-secondary-bg, #FFFFFF)}[data-eb-6a8f3296] a.rgft_f7822e54:hover:not(.rgft_badebaf5).rgft_090951dc,[data-eb-6a8f3296] button.rgft_f7822e54:hover:not(.rgft_badebaf5).rgft_090951dc{box-shadow:none}[data-eb-6a8f3296] a.rgft_f7822e54:hover:not(.rgft_badebaf5).rgft_090951dc,[data-eb-6a8f3296] button.rgft_f7822e54:hover:not(.rgft_badebaf5).rgft_090951dc{background-image:linear-gradient(97deg,#ffc0ad80,#f8c7ff80 37.79%,#d2ccff80 75.81%,#c2d1ff80)}[data-eb-6a8f3296] a.rgft_f7822e54:hover:not(.rgft_badebaf5).rgft_090951dc,[data-eb-6a8f3296] button.rgft_f7822e54:hover:not(.rgft_badebaf5).rgft_090951dc{--rg-gradient-angle:97deg;background-image:var(--rg-gradient-a-50, linear-gradient(120deg, #f8c7ff 20.08%, #d2ccff 75.81%))}[data-eb-6a8f3296] [data-rg-mode=dark] a.rgft_f7822e54:hover:not(.rgft_badebaf5).rgft_090951dc,[data-eb-6a8f3296] [data-rg-mode=dark] button.rgft_f7822e54:hover:not(.rgft_badebaf5).rgft_090951dc,[data-eb-6a8f3296] a[data-rg-mode=dark].rgft_f7822e54.rgft_090951dc:hover:not(.rgft_badebaf5),[data-eb-6a8f3296] button[data-rg-mode=dark].rgft_f7822e54.rgft_090951dc:hover:not(.rgft_badebaf5){background-image:var(--rg-gradient-a-50, linear-gradient(120deg, #78008a 24.25%, #b2008f 69.56%))}[data-eb-6a8f3296] a.rgft_f7822e54:active:not(.rgft_badebaf5).rgft_090951dc,[data-eb-6a8f3296] button.rgft_f7822e54:active:not(.rgft_badebaf5).rgft_090951dc{box-shadow:none}[data-eb-6a8f3296] a.rgft_f7822e54:active:not(.rgft_badebaf5).rgft_090951dc,[data-eb-6a8f3296] button.rgft_f7822e54:active:not(.rgft_badebaf5).rgft_090951dc{background-image:linear-gradient(97deg,#ffc0ad,#f8c7ff 37.79%,#d2ccff 75.81%,#c2d1ff)}[data-eb-6a8f3296] a.rgft_f7822e54:active:not(.rgft_badebaf5).rgft_090951dc,[data-eb-6a8f3296] button.rgft_f7822e54:active:not(.rgft_badebaf5).rgft_090951dc{--rg-gradient-angle:97deg;background-image:var(--rg-gradient-a-pressed, linear-gradient(120deg, rgba(248, 199, 255, .5) 20.08%, #d2ccff 75.81%))}[data-eb-6a8f3296] [data-rg-mode=dark] a.rgft_f7822e54:active:not(.rgft_badebaf5).rgft_090951dc,[data-eb-6a8f3296] [data-rg-mode=dark] button.rgft_f7822e54:active:not(.rgft_badebaf5).rgft_090951dc,[data-eb-6a8f3296] a[data-rg-mode=dark].rgft_f7822e54.rgft_090951dc:active:not(.rgft_badebaf5),[data-eb-6a8f3296] button[data-rg-mode=dark].rgft_f7822e54.rgft_090951dc:active:not(.rgft_badebaf5){background-image:var(--rg-gradient-a-pressed, linear-gradient(120deg, rgba(120, 0, 138, .5) 24.25%, #b2008f 69.56%))}[data-eb-6a8f3296] .rgft_8711ccd9{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background:#0000;border:none;margin:0}[data-eb-6a8f3296] .rgft_8711ccd9.rgft_5e58a6df{text-align:center}[data-eb-6a8f3296] .rgft_8711ccd9.rgft_b7ada98b{display:block}[data-eb-6a8f3296] .rgft_8711ccd9.rgft_beb26dc7{font-family:Amazon Ember Mono,Consolas,Andale Mono WT,Andale Mono,Lucida Console,Lucida Sans Typewriter,DejaVu Sans Mono,Bitstream Vera Sans Mono,Liberation Mono,Nimbus Mono L,Monaco,Courier New,Courier,monospace}[data-eb-6a8f3296] .rgft_8711ccd9 a{display:inline;position:relative;cursor:pointer;text-decoration:none!important;color:var(--rg-color-link-default, #006CE0);background:linear-gradient(to right,currentcolor,currentcolor);background-size:100% .1em;background-position:0 100%;background-repeat:no-repeat}[data-eb-6a8f3296] .rgft_8711ccd9 a:focus-visible{color:var(--rg-color-link-focus, #006CE0)}[data-eb-6a8f3296] .rgft_8711ccd9 a:hover{color:var(--rg-color-link-hover, #003B8F);animation:rgft_d72bdead .3s cubic-bezier(0,0,.2,1)}[data-eb-6a8f3296] .rgft_8711ccd9 a:visited{color:var(--rg-color-link-visited, #6842FF)}@keyframes rgft_d72bdead{0%{background-size:0 .1em}to{background-size:100% .1em}}[data-eb-6a8f3296] .rgft_8711ccd9 b,[data-eb-6a8f3296] b.rgft_8711ccd9,[data-eb-6a8f3296] .rgft_8711ccd9 strong,[data-eb-6a8f3296] strong.rgft_8711ccd9{font-weight:700}[data-eb-6a8f3296] i.rgft_8711ccd9,[data-eb-6a8f3296] .rgft_8711ccd9 i,[data-eb-6a8f3296] em.rgft_8711ccd9,[data-eb-6a8f3296] .rgft_8711ccd9 em{font-style:italic}[data-eb-6a8f3296] u.rgft_8711ccd9,[data-eb-6a8f3296] .rgft_8711ccd9 u{text-decoration:underline}[data-eb-6a8f3296] code.rgft_8711ccd9,[data-eb-6a8f3296] .rgft_8711ccd9 code{font-family:Amazon Ember Mono,Consolas,Andale Mono WT,Andale Mono,Lucida Console,Lucida Sans Typewriter,DejaVu Sans Mono,Bitstream Vera Sans Mono,Liberation Mono,Nimbus Mono L,Monaco,Courier New,Courier,monospace;border-radius:4px;border:1px solid var(--rg-color-border-lowcontrast, #CCCCD1);color:var(--rg-color-text-secondary, #232B37);padding-top:var(--rg-padding-8);padding-right:var(--rg-padding-8);padding-bottom:var(--rg-padding-8);padding-left:var(--rg-padding-8)}[data-eb-6a8f3296] .rgft_12e1c6fa{display:inline!important;vertical-align:middle}[data-eb-6a8f3296] .rgft_8711ccd9 p img{aspect-ratio:16/9;height:100%;object-fit:cover;width:100%;border-radius:8px;order:1;margin-bottom:var(--rg-margin-4)}[data-eb-6a8f3296] .rgft_8711ccd9 table{table-layout:fixed;border-spacing:0;width:100%}[data-eb-6a8f3296] .rgft_8711ccd9 table td{font-size:14px;border-right:1px solid var(--rg-color-border-lowcontrast, #CCCCD1);border-bottom:1px solid var(--rg-color-border-lowcontrast, #CCCCD1);padding-top:var(--rg-padding-6);padding-right:var(--rg-padding-6);padding-bottom:var(--rg-padding-6);padding-left:var(--rg-padding-6)}[data-eb-6a8f3296] .rgft_8711ccd9 table td:first-of-type{border-left:1px solid var(--rg-color-border-lowcontrast, #CCCCD1)}[data-eb-6a8f3296] .rgft_8711ccd9 table thead tr:first-of-type>*:first-of-type,[data-eb-6a8f3296] .rgft_8711ccd9 table:not(:has(thead)) tr:first-of-type>*:first-of-type{border-top-left-radius:16px}[data-eb-6a8f3296] .rgft_8711ccd9 table thead tr:first-of-type>*:last-of-type,[data-eb-6a8f3296] .rgft_8711ccd9 table:not(:has(thead)) tr:first-of-type>*:last-of-type{border-top-right-radius:16px}[data-eb-6a8f3296] .rgft_8711ccd9 table tr:last-of-type td:first-of-type{border-bottom-left-radius:16px}[data-eb-6a8f3296] .rgft_8711ccd9 table tr:last-of-type td:last-of-type{border-bottom-right-radius:16px}[data-eb-6a8f3296] .rgft_8711ccd9 table:not(:has(thead),:has(th)) tr:first-of-type td{border-top:1px solid var(--rg-color-border-lowcontrast, #CCCCD1);border-right:1px solid var(--rg-color-border-lowcontrast, #CCCCD1);border-bottom:1px solid var(--rg-color-border-lowcontrast, #CCCCD1)}[data-eb-6a8f3296] .rgft_8711ccd9 table th{color:var(--rg-color-text-primary-inverted, #FFFFFF);min-width:280px;max-width:400px;padding:0;text-align:left;vertical-align:top;background-color:var(--rg-color-background-object-inverted, #232B37);border-left:1px solid var(--rg-color-border-lowcontrast, #CCCCD1);border-right:1px solid var(--rg-color-border-lowcontrast, #CCCCD1);border-bottom:1px solid var(--rg-color-border-lowcontrast, #CCCCD1);padding-top:var(--rg-padding-6);padding-right:var(--rg-padding-6);padding-bottom:var(--rg-padding-6);padding-left:var(--rg-padding-6);row-gap:var(--rg-margin-5);column-gap:var(--rg-margin-5);max-width:100%;min-width:150px}@media (min-width: 480px) and (max-width: 767px){[data-eb-6a8f3296] .rgft_8711ccd9 table th{max-width:100%;min-width:150px}}@media (min-width: 768px) and (max-width: 1023px){[data-eb-6a8f3296] .rgft_8711ccd9 table th{max-width:240px;min-width:180px}}@media (min-width: 1024px) and (max-width: 1279px){[data-eb-6a8f3296] .rgft_8711ccd9 table th{max-width:350px;min-width:240px}}@media (min-width: 1280px) and (max-width: 1599px){[data-eb-6a8f3296] .rgft_8711ccd9 table th{max-width:400px;min-width:280px}}@media (min-width: 1600px){[data-eb-6a8f3296] .rgft_8711ccd9 table th{max-width:400px;min-width:280px}}[data-eb-6a8f3296] .rgft_8711ccd9 table th:first-of-type{border-top-left-radius:16px;border-top:0 solid var(--rg-color-border-lowcontrast, #CCCCD1);border-left:0 solid var(--rg-color-border-lowcontrast, #CCCCD1);border-right:0 solid var(--rg-color-border-lowcontrast, #CCCCD1)}[data-eb-6a8f3296] .rgft_8711ccd9 table th:nth-of-type(n+3){border-left:0 solid var(--rg-color-border-lowcontrast, #CCCCD1)}[data-eb-6a8f3296] .rgft_8711ccd9 table th:last-of-type{border-top-right-radius:16px;border-top:0 solid var(--rg-color-border-lowcontrast, #CCCCD1);border-right:0 solid var(--rg-color-border-lowcontrast, #CCCCD1)}[data-eb-6a8f3296] .rgft_a1b66739{display:inline-flex;flex-direction:column;align-items:center;justify-content:center;color:var(--rg-color-text-primary, #161D26);--icon-color: currentcolor}[data-eb-6a8f3296] .rgft_a1b66739.rgft_bc1a8743{height:16px;width:16px}[data-eb-6a8f3296] .rgft_a1b66739.rgft_c0cbb35d{height:20px;width:20px}[data-eb-6a8f3296] .rgft_a1b66739.rgft_bd40fe12{height:32px;width:32px}[data-eb-6a8f3296] .rgft_a1b66739.rgft_27320e58{height:48px;width:48px}[data-eb-6a8f3296] .rgft_a1b66739 svg{fill:none;stroke:none}[data-eb-6a8f3296] .rgft_a1b66739 path[data-fill]:not([fill]){fill:var(--icon-color)}[data-eb-6a8f3296] .rgft_a1b66739 path[data-stroke]{stroke-width:2}[data-eb-6a8f3296] .rgft_a1b66739 path[data-stroke]:not([stroke]){stroke:var(--icon-color)}[data-eb-6a8f3296] .rgft_3ed66ff4{display:inline-flex;flex-direction:column;align-items:center;justify-content:center;color:var(--rg-color-text-primary, #161D26)}[data-eb-6a8f3296] .rgft_3ed66ff4.rgft_9124b200{height:10px;width:10px}[data-eb-6a8f3296] .rgft_3ed66ff4.rgft_bc1a8743{height:16px;width:16px}[data-eb-6a8f3296] .rgft_3ed66ff4.rgft_c0cbb35d{height:20px;width:20px}[data-eb-6a8f3296] .rgft_3ed66ff4.rgft_bd40fe12{height:32px;width:32px}[data-eb-6a8f3296] .rgft_3ed66ff4.rgft_27320e58{height:48px;width:48px}[data-eb-6a8f3296] .rgft_98b54368{color:var(--rg-color-text-body, #232B37)}[data-eb-6a8f3296] .rgft_98b54368.rgft_275611e5{font-size:calc(1rem * var(--font-size-multiplier, 1.6));line-height:1.5;font-weight:400;font-family:Amazon Ember Display,Amazon Ember,Helvetica Neue,Helvetica,Arial,sans-serif}@media (min-width: 481px) and (max-width: 768px){[data-eb-6a8f3296] .rgft_98b54368.rgft_275611e5{font-size:calc(1rem * var(--font-size-multiplier, 1.6));line-height:1.5;font-weight:400}}@media (max-width: 480px){[data-eb-6a8f3296] .rgft_98b54368.rgft_275611e5{font-size:calc(1rem * var(--font-size-multiplier, 1.6));line-height:1.5;font-weight:400}}[data-eb-6a8f3296] [data-rg-lang=ar] .rgft_98b54368.rgft_275611e5{font-family:AmazonEmberArabic,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ja] .rgft_98b54368.rgft_275611e5{font-family:ShinGo,\30d2\30e9\30ae\30ce\89d2\30b4 Pro W3,Hiragino Kaku Gothic Pro,Osaka,\30e1\30a4\30ea\30aa,Meiryo,\ff2d\ff33 \ff30\30b4\30b7\30c3\30af,MS PGothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ko] .rgft_98b54368.rgft_275611e5{font-family:NotoSansKR,Malgun Gothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=th] .rgft_98b54368.rgft_275611e5{font-family:NotoSansThai,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=zh] .rgft_98b54368.rgft_275611e5{font-family:NotoSansTC,Helvetica,Arial,Microsoft Yahei,\5fae\8f6f\96c5\9ed1,STXihei,\534e\6587\7ec6\9ed1,sans-serif}[data-eb-6a8f3296] .rgft_98b54368.rgft_007aef8b{font-size:calc(.875rem * var(--font-size-multiplier, 1.6));line-height:1.429;font-weight:400;font-family:Amazon Ember Display,Amazon Ember,Helvetica Neue,Helvetica,Arial,sans-serif}@media (min-width: 481px) and (max-width: 768px){[data-eb-6a8f3296] .rgft_98b54368.rgft_007aef8b{font-size:calc(.875rem * var(--font-size-multiplier, 1.6));line-height:1.429;font-weight:400}}@media (max-width: 480px){[data-eb-6a8f3296] .rgft_98b54368.rgft_007aef8b{font-size:calc(.875rem * var(--font-size-multiplier, 1.6));line-height:1.429;font-weight:400}}[data-eb-6a8f3296] [data-rg-lang=ar] .rgft_98b54368.rgft_007aef8b{font-family:AmazonEmberArabic,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ja] .rgft_98b54368.rgft_007aef8b{font-family:ShinGo,\30d2\30e9\30ae\30ce\89d2\30b4 Pro W3,Hiragino Kaku Gothic Pro,Osaka,\30e1\30a4\30ea\30aa,Meiryo,\ff2d\ff33 \ff30\30b4\30b7\30c3\30af,MS PGothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ko] .rgft_98b54368.rgft_007aef8b{font-family:NotoSansKR,Malgun Gothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=th] .rgft_98b54368.rgft_007aef8b{font-family:NotoSansThai,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=zh] .rgft_98b54368.rgft_007aef8b{font-family:NotoSansTC,Helvetica,Arial,Microsoft Yahei,\5fae\8f6f\96c5\9ed1,STXihei,\534e\6587\7ec6\9ed1,sans-serif}[data-eb-6a8f3296] .rgft_98b54368.rgft_ff19c5f9{font-size:calc(.75rem * var(--font-size-multiplier, 1.6));line-height:1.333;font-weight:400;font-family:Amazon Ember Display,Amazon Ember,Helvetica Neue,Helvetica,Arial,sans-serif}@media (min-width: 481px) and (max-width: 768px){[data-eb-6a8f3296] .rgft_98b54368.rgft_ff19c5f9{font-size:calc(.75rem * var(--font-size-multiplier, 1.6));line-height:1.333;font-weight:400}}@media (max-width: 480px){[data-eb-6a8f3296] .rgft_98b54368.rgft_ff19c5f9{font-size:calc(.75rem * var(--font-size-multiplier, 1.6));line-height:1.333;font-weight:400}}[data-eb-6a8f3296] [data-rg-lang=ar] .rgft_98b54368.rgft_ff19c5f9{font-family:AmazonEmberArabic,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ja] .rgft_98b54368.rgft_ff19c5f9{font-family:ShinGo,\30d2\30e9\30ae\30ce\89d2\30b4 Pro W3,Hiragino Kaku Gothic Pro,Osaka,\30e1\30a4\30ea\30aa,Meiryo,\ff2d\ff33 \ff30\30b4\30b7\30c3\30af,MS PGothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ko] .rgft_98b54368.rgft_ff19c5f9{font-family:NotoSansKR,Malgun Gothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=th] .rgft_98b54368.rgft_ff19c5f9{font-family:NotoSansThai,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=zh] .rgft_98b54368.rgft_ff19c5f9{font-family:NotoSansTC,Helvetica,Arial,Microsoft Yahei,\5fae\8f6f\96c5\9ed1,STXihei,\534e\6587\7ec6\9ed1,sans-serif}[data-eb-6a8f3296] .rgft_98b54368 ul{list-style-type:disc;margin-top:2rem}[data-eb-6a8f3296] .rgft_98b54368.rgft_2a7f98ee{display:inline;position:relative;cursor:pointer;text-decoration:none!important;color:var(--rg-color-link-default, #006CE0);background:linear-gradient(to right,currentcolor,currentcolor);background-size:100% .1em;background-position:0 100%;background-repeat:no-repeat}[data-eb-6a8f3296] .rgft_98b54368.rgft_2a7f98ee:focus-visible{color:var(--rg-color-link-focus, #006CE0)}[data-eb-6a8f3296] .rgft_98b54368.rgft_2a7f98ee:hover{color:var(--rg-color-link-hover, #003B8F);animation:rgft_9beb7cc5 .3s cubic-bezier(0,0,.2,1)}[data-eb-6a8f3296] .rgft_98b54368.rgft_2a7f98ee:visited{color:var(--rg-color-link-visited, #6842FF)}@keyframes rgft_9beb7cc5{0%{background-size:0 .1em}to{background-size:100% .1em}}[data-eb-6a8f3296] .rgft_d835af5c{color:var(--rg-color-text-title, #161D26)}[data-eb-6a8f3296] .rgft_d835af5c.rgft_3e9243e1{font-size:calc(4.5rem * var(--font-size-multiplier, 1.6));line-height:1.111;font-weight:500;font-family:Amazon Ember Display,Amazon Ember,Helvetica Neue,Helvetica,Arial,sans-serif}@media (min-width: 481px) and (max-width: 768px){[data-eb-6a8f3296] .rgft_d835af5c.rgft_3e9243e1{font-size:calc(3.75rem * var(--font-size-multiplier, 1.6));line-height:1.133;font-weight:500}}@media (max-width: 480px){[data-eb-6a8f3296] .rgft_d835af5c.rgft_3e9243e1{font-size:calc(3rem * var(--font-size-multiplier, 1.6));line-height:1.167;font-weight:500}}[data-eb-6a8f3296] [data-rg-lang=ar] .rgft_d835af5c.rgft_3e9243e1{font-family:AmazonEmberArabic,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ja] .rgft_d835af5c.rgft_3e9243e1{font-family:ShinGo,\30d2\30e9\30ae\30ce\89d2\30b4 Pro W3,Hiragino Kaku Gothic Pro,Osaka,\30e1\30a4\30ea\30aa,Meiryo,\ff2d\ff33 \ff30\30b4\30b7\30c3\30af,MS PGothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ko] .rgft_d835af5c.rgft_3e9243e1{font-family:NotoSansKR,Malgun Gothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=th] .rgft_d835af5c.rgft_3e9243e1{font-family:NotoSansThai,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=zh] .rgft_d835af5c.rgft_3e9243e1{font-family:NotoSansTC,Helvetica,Arial,Microsoft Yahei,\5fae\8f6f\96c5\9ed1,STXihei,\534e\6587\7ec6\9ed1,sans-serif}[data-eb-6a8f3296] .rgft_d835af5c.rgft_54816d41{font-size:calc(3.75rem * var(--font-size-multiplier, 1.6));line-height:1.133;font-weight:500;font-family:Amazon Ember Display,Amazon Ember,Helvetica Neue,Helvetica,Arial,sans-serif}@media (min-width: 481px) and (max-width: 768px){[data-eb-6a8f3296] .rgft_d835af5c.rgft_54816d41{font-size:calc(3rem * var(--font-size-multiplier, 1.6));line-height:1.167;font-weight:500}}@media (max-width: 480px){[data-eb-6a8f3296] .rgft_d835af5c.rgft_54816d41{font-size:calc(2.5rem * var(--font-size-multiplier, 1.6));line-height:1.2;font-weight:500}}[data-eb-6a8f3296] [data-rg-lang=ar] .rgft_d835af5c.rgft_54816d41{font-family:AmazonEmberArabic,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ja] .rgft_d835af5c.rgft_54816d41{font-family:ShinGo,\30d2\30e9\30ae\30ce\89d2\30b4 Pro W3,Hiragino Kaku Gothic Pro,Osaka,\30e1\30a4\30ea\30aa,Meiryo,\ff2d\ff33 \ff30\30b4\30b7\30c3\30af,MS PGothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ko] .rgft_d835af5c.rgft_54816d41{font-family:NotoSansKR,Malgun Gothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=th] .rgft_d835af5c.rgft_54816d41{font-family:NotoSansThai,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=zh] .rgft_d835af5c.rgft_54816d41{font-family:NotoSansTC,Helvetica,Arial,Microsoft Yahei,\5fae\8f6f\96c5\9ed1,STXihei,\534e\6587\7ec6\9ed1,sans-serif}[data-eb-6a8f3296] .rgft_d835af5c.rgft_852a8b78{font-size:calc(3rem * var(--font-size-multiplier, 1.6));line-height:1.167;font-weight:500;font-family:Amazon Ember Display,Amazon Ember,Helvetica Neue,Helvetica,Arial,sans-serif}@media (min-width: 481px) and (max-width: 768px){[data-eb-6a8f3296] .rgft_d835af5c.rgft_852a8b78{font-size:calc(2.5rem * var(--font-size-multiplier, 1.6));line-height:1.2;font-weight:500}}@media (max-width: 480px){[data-eb-6a8f3296] .rgft_d835af5c.rgft_852a8b78{font-size:calc(2rem * var(--font-size-multiplier, 1.6));line-height:1.25;font-weight:500}}[data-eb-6a8f3296] [data-rg-lang=ar] .rgft_d835af5c.rgft_852a8b78{font-family:AmazonEmberArabic,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ja] .rgft_d835af5c.rgft_852a8b78{font-family:ShinGo,\30d2\30e9\30ae\30ce\89d2\30b4 Pro W3,Hiragino Kaku Gothic Pro,Osaka,\30e1\30a4\30ea\30aa,Meiryo,\ff2d\ff33 \ff30\30b4\30b7\30c3\30af,MS PGothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ko] .rgft_d835af5c.rgft_852a8b78{font-family:NotoSansKR,Malgun Gothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=th] .rgft_d835af5c.rgft_852a8b78{font-family:NotoSansThai,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=zh] .rgft_d835af5c.rgft_852a8b78{font-family:NotoSansTC,Helvetica,Arial,Microsoft Yahei,\5fae\8f6f\96c5\9ed1,STXihei,\534e\6587\7ec6\9ed1,sans-serif}[data-eb-6a8f3296] .rgft_286fbc8d{letter-spacing:1.6px;text-transform:uppercase;color:var(--rg-color-text-eyebrow, #161D26)}[data-eb-6a8f3296] .rgft_286fbc8d.rgft_cf5cdf86{font-size:calc(1rem * var(--font-size-multiplier, 1.6));line-height:1.5;font-weight:400;font-family:Amazon Ember Mono,Consolas,Andale Mono WT,Andale Mono,Lucida Console,Lucida Sans Typewriter,DejaVu Sans Mono,Bitstream Vera Sans Mono,Liberation Mono,Nimbus Mono L,Monaco,Courier New,Courier,monospace}@media (min-width: 481px) and (max-width: 768px){[data-eb-6a8f3296] .rgft_286fbc8d.rgft_cf5cdf86{font-size:calc(.875rem * var(--font-size-multiplier, 1.6));line-height:1.714;font-weight:400}}@media (max-width: 480px){[data-eb-6a8f3296] .rgft_286fbc8d.rgft_cf5cdf86{font-size:calc(.75rem * var(--font-size-multiplier, 1.6));line-height:2;font-weight:400}}[data-eb-6a8f3296] [data-rg-lang=ar] .rgft_286fbc8d.rgft_cf5cdf86{font-family:AmazonEmberArabic,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ja] .rgft_286fbc8d.rgft_cf5cdf86{font-family:ShinGo,\30d2\30e9\30ae\30ce\89d2\30b4 Pro W3,Hiragino Kaku Gothic Pro,Osaka,\30e1\30a4\30ea\30aa,Meiryo,\ff2d\ff33 \ff30\30b4\30b7\30c3\30af,MS PGothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ko] .rgft_286fbc8d.rgft_cf5cdf86{font-family:NotoSansKR,Malgun Gothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=th] .rgft_286fbc8d.rgft_cf5cdf86{font-family:NotoSansThai,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=zh] .rgft_286fbc8d.rgft_cf5cdf86{font-family:NotoSansTC,Helvetica,Arial,Microsoft Yahei,\5fae\8f6f\96c5\9ed1,STXihei,\534e\6587\7ec6\9ed1,sans-serif}[data-eb-6a8f3296] .rgft_286fbc8d.rgft_c6f92487{font-size:calc(.875rem * var(--font-size-multiplier, 1.6));line-height:1.714;font-weight:400;font-family:Amazon Ember Mono,Consolas,Andale Mono WT,Andale Mono,Lucida Console,Lucida Sans Typewriter,DejaVu Sans Mono,Bitstream Vera Sans Mono,Liberation Mono,Nimbus Mono L,Monaco,Courier New,Courier,monospace}@media (min-width: 481px) and (max-width: 768px){[data-eb-6a8f3296] .rgft_286fbc8d.rgft_c6f92487{font-size:calc(.75rem * var(--font-size-multiplier, 1.6));line-height:2;font-weight:400}}@media (max-width: 480px){[data-eb-6a8f3296] .rgft_286fbc8d.rgft_c6f92487{font-size:calc(.625rem * var(--font-size-multiplier, 1.6));line-height:2.4;font-weight:400}}[data-eb-6a8f3296] [data-rg-lang=ar] .rgft_286fbc8d.rgft_c6f92487{font-family:AmazonEmberArabic,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ja] .rgft_286fbc8d.rgft_c6f92487{font-family:ShinGo,\30d2\30e9\30ae\30ce\89d2\30b4 Pro W3,Hiragino Kaku Gothic Pro,Osaka,\30e1\30a4\30ea\30aa,Meiryo,\ff2d\ff33 \ff30\30b4\30b7\30c3\30af,MS PGothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ko] .rgft_286fbc8d.rgft_c6f92487{font-family:NotoSansKR,Malgun Gothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=th] .rgft_286fbc8d.rgft_c6f92487{font-family:NotoSansThai,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=zh] .rgft_286fbc8d.rgft_c6f92487{font-family:NotoSansTC,Helvetica,Arial,Microsoft Yahei,\5fae\8f6f\96c5\9ed1,STXihei,\534e\6587\7ec6\9ed1,sans-serif}[data-eb-6a8f3296] .rgft_d27b4751{color:var(--rg-color-text-utility, #161D26)}[data-eb-6a8f3296] .rgft_d27b4751.rgft_927d7fd1{font-size:calc(1rem * var(--font-size-multiplier, 1.6));line-height:1.5;font-weight:400;font-family:Amazon Ember Mono,Consolas,Andale Mono WT,Andale Mono,Lucida Console,Lucida Sans Typewriter,DejaVu Sans Mono,Bitstream Vera Sans Mono,Liberation Mono,Nimbus Mono L,Monaco,Courier New,Courier,monospace}@media (min-width: 481px) and (max-width: 768px){[data-eb-6a8f3296] .rgft_d27b4751.rgft_927d7fd1{font-size:calc(1rem * var(--font-size-multiplier, 1.6));line-height:1.5;font-weight:400}}@media (max-width: 480px){[data-eb-6a8f3296] .rgft_d27b4751.rgft_927d7fd1{font-size:calc(1rem * var(--font-size-multiplier, 1.6));line-height:1.5;font-weight:400}}[data-eb-6a8f3296] [data-rg-lang=ar] .rgft_d27b4751.rgft_927d7fd1{font-family:AmazonEmberArabic,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ja] .rgft_d27b4751.rgft_927d7fd1{font-family:ShinGo,\30d2\30e9\30ae\30ce\89d2\30b4 Pro W3,Hiragino Kaku Gothic Pro,Osaka,\30e1\30a4\30ea\30aa,Meiryo,\ff2d\ff33 \ff30\30b4\30b7\30c3\30af,MS PGothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ko] .rgft_d27b4751.rgft_927d7fd1{font-family:NotoSansKR,Malgun Gothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=th] .rgft_d27b4751.rgft_927d7fd1{font-family:NotoSansThai,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=zh] .rgft_d27b4751.rgft_927d7fd1{font-family:NotoSansTC,Helvetica,Arial,Microsoft Yahei,\5fae\8f6f\96c5\9ed1,STXihei,\534e\6587\7ec6\9ed1,sans-serif}[data-eb-6a8f3296] .rgft_d27b4751.rgft_100c8a76{font-size:calc(.875rem * var(--font-size-multiplier, 1.6));line-height:1.429;font-weight:400;font-family:Amazon Ember Mono,Consolas,Andale Mono WT,Andale Mono,Lucida Console,Lucida Sans Typewriter,DejaVu Sans Mono,Bitstream Vera Sans Mono,Liberation Mono,Nimbus Mono L,Monaco,Courier New,Courier,monospace}@media (min-width: 481px) and (max-width: 768px){[data-eb-6a8f3296] .rgft_d27b4751.rgft_100c8a76{font-size:calc(.875rem * var(--font-size-multiplier, 1.6));line-height:1.429;font-weight:400}}@media (max-width: 480px){[data-eb-6a8f3296] .rgft_d27b4751.rgft_100c8a76{font-size:calc(.875rem * var(--font-size-multiplier, 1.6));line-height:1.429;font-weight:400}}[data-eb-6a8f3296] [data-rg-lang=ar] .rgft_d27b4751.rgft_100c8a76{font-family:AmazonEmberArabic,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ja] .rgft_d27b4751.rgft_100c8a76{font-family:ShinGo,\30d2\30e9\30ae\30ce\89d2\30b4 Pro W3,Hiragino Kaku Gothic Pro,Osaka,\30e1\30a4\30ea\30aa,Meiryo,\ff2d\ff33 \ff30\30b4\30b7\30c3\30af,MS PGothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ko] .rgft_d27b4751.rgft_100c8a76{font-family:NotoSansKR,Malgun Gothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=th] .rgft_d27b4751.rgft_100c8a76{font-family:NotoSansThai,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=zh] .rgft_d27b4751.rgft_100c8a76{font-family:NotoSansTC,Helvetica,Arial,Microsoft Yahei,\5fae\8f6f\96c5\9ed1,STXihei,\534e\6587\7ec6\9ed1,sans-serif}[data-eb-6a8f3296] .rgft_d27b4751.rgft_453dc601{font-size:calc(.75rem * var(--font-size-multiplier, 1.6));line-height:1.333;font-weight:400;font-family:Amazon Ember Mono,Consolas,Andale Mono WT,Andale Mono,Lucida Console,Lucida Sans Typewriter,DejaVu Sans Mono,Bitstream Vera Sans Mono,Liberation Mono,Nimbus Mono L,Monaco,Courier New,Courier,monospace}@media (min-width: 481px) and (max-width: 768px){[data-eb-6a8f3296] .rgft_d27b4751.rgft_453dc601{font-size:calc(.75rem * var(--font-size-multiplier, 1.6));line-height:1.333;font-weight:400}}@media (max-width: 480px){[data-eb-6a8f3296] .rgft_d27b4751.rgft_453dc601{font-size:calc(.75rem * var(--font-size-multiplier, 1.6));line-height:1.333;font-weight:400}}[data-eb-6a8f3296] [data-rg-lang=ar] .rgft_d27b4751.rgft_453dc601{font-family:AmazonEmberArabic,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ja] .rgft_d27b4751.rgft_453dc601{font-family:ShinGo,\30d2\30e9\30ae\30ce\89d2\30b4 Pro W3,Hiragino Kaku Gothic Pro,Osaka,\30e1\30a4\30ea\30aa,Meiryo,\ff2d\ff33 \ff30\30b4\30b7\30c3\30af,MS PGothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ko] .rgft_d27b4751.rgft_453dc601{font-family:NotoSansKR,Malgun Gothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=th] .rgft_d27b4751.rgft_453dc601{font-family:NotoSansThai,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=zh] .rgft_d27b4751.rgft_453dc601{font-family:NotoSansTC,Helvetica,Arial,Microsoft Yahei,\5fae\8f6f\96c5\9ed1,STXihei,\534e\6587\7ec6\9ed1,sans-serif}[data-eb-6a8f3296] .rgft_d27b4751.rgft_949ed5ce{font-size:calc(.625rem * var(--font-size-multiplier, 1.6));line-height:1.2;font-weight:400;font-family:Amazon Ember Mono,Consolas,Andale Mono WT,Andale Mono,Lucida Console,Lucida Sans Typewriter,DejaVu Sans Mono,Bitstream Vera Sans Mono,Liberation Mono,Nimbus Mono L,Monaco,Courier New,Courier,monospace}@media (min-width: 481px) and (max-width: 768px){[data-eb-6a8f3296] .rgft_d27b4751.rgft_949ed5ce{font-size:calc(.625rem * var(--font-size-multiplier, 1.6));line-height:1.2;font-weight:400}}@media (max-width: 480px){[data-eb-6a8f3296] .rgft_d27b4751.rgft_949ed5ce{font-size:calc(.625rem * var(--font-size-multiplier, 1.6));line-height:1.2;font-weight:400}}[data-eb-6a8f3296] [data-rg-lang=ar] .rgft_d27b4751.rgft_949ed5ce{font-family:AmazonEmberArabic,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ja] .rgft_d27b4751.rgft_949ed5ce{font-family:ShinGo,\30d2\30e9\30ae\30ce\89d2\30b4 Pro W3,Hiragino Kaku Gothic Pro,Osaka,\30e1\30a4\30ea\30aa,Meiryo,\ff2d\ff33 \ff30\30b4\30b7\30c3\30af,MS PGothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ko] .rgft_d27b4751.rgft_949ed5ce{font-family:NotoSansKR,Malgun Gothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=th] .rgft_d27b4751.rgft_949ed5ce{font-family:NotoSansThai,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=zh] .rgft_d27b4751.rgft_949ed5ce{font-family:NotoSansTC,Helvetica,Arial,Microsoft Yahei,\5fae\8f6f\96c5\9ed1,STXihei,\534e\6587\7ec6\9ed1,sans-serif}[data-eb-6a8f3296] .rgft_5d220f64{color:var(--rg-color-text-heading, #161D26)}[data-eb-6a8f3296] .rgft_5d220f64.rgft_94339b09{font-size:calc(2.5rem * var(--font-size-multiplier, 1.6));line-height:1.1;font-weight:500;font-family:Amazon Ember Display,Amazon Ember,Helvetica Neue,Helvetica,Arial,sans-serif}@media (min-width: 481px) and (max-width: 768px){[data-eb-6a8f3296] .rgft_5d220f64.rgft_94339b09{font-size:calc(2rem * var(--font-size-multiplier, 1.6));line-height:1.25;font-weight:500}}@media (max-width: 480px){[data-eb-6a8f3296] .rgft_5d220f64.rgft_94339b09{font-size:calc(1.75rem * var(--font-size-multiplier, 1.6));line-height:1.286;font-weight:500}}[data-eb-6a8f3296] [data-rg-lang=ar] .rgft_5d220f64.rgft_94339b09{font-family:AmazonEmberArabic,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ja] .rgft_5d220f64.rgft_94339b09{font-family:ShinGo,\30d2\30e9\30ae\30ce\89d2\30b4 Pro W3,Hiragino Kaku Gothic Pro,Osaka,\30e1\30a4\30ea\30aa,Meiryo,\ff2d\ff33 \ff30\30b4\30b7\30c3\30af,MS PGothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=ko] .rgft_5d220f64.rgft_94339b09{font-family:NotoSansKR,Malgun Gothic,sans-serif}[data-eb-6a8f3296] [data-rg-lang=th] .rgft_5d220f64.rgft_94339b09{font-family:NotoSansThai,Helvetica,Arial,sans-serif}[data-eb-6a8f3296] [data-rg-lang=zh] .rgft_5d220f64.rgft_94339b09{font-family:NotoSansTC,Helvetica,Arial,Microsoft Yahei,\5fae\8f6f\96c5\9ed1,STXihei,\534e\6587\7ec6\9ed1,sans-serif}[data-eb-6a8f3296] .rgft_5d220f64.rgft_26b3f3ee{font-size:calc(2rem * var(--font-size-multiplier, 1.6));line-height:1.25;font-weight:500;font-family:Amazon Ember Display,Amazon Ember,Helvetica Neue,Helvetica,Arial,sans-serif}@media (min-width: 481px) and (max-width: 768px){[data-eb-6a8f3296] .rgft_5d220f64.rgft_26b3f3ee{font-size:calc(1.75rem * var(--font-size-multiplier, 1.6));line-height:1.286;font-weight:500}}@media (max-width: 480px){[data-eb-6a8f3296] .rgft_5d220f64.rgft_26b3f3e
2026-01-13T08:47:43
https://stackblitz.com/
StackBlitz | Instant Dev Environments | Click. Code. Done. StackBlitz Toggle Menu Bolt.new WebContainers Careers How product & engineering teams work together with AI Turn text into working web apps. Bolt handles the code while you focus on your vision, letting you create and launch applications directly from your browser. Try Bolt.new Loved by frontend and product teams at the world's largest and most innovative companies "StackBlitz unlocks a true one-click startup experience with the full stack running in the browser— it's a game-changer. " Ilya Grigorik Principal Engineer at Shopify Powered by WebContainers Faster and more secure than local. Introducing WebContainers: Run Node.js in your browser Read the release Bolt is powered by WebContainers, the first WebAssembly-based micro operating system which boots entire development environments in milliseconds, securely within your browser tab. What about online IDEs? Legacy cloud-based IDEs run on remote servers and stream the results back to your browser. This approach yields few security benefits and provides a worse experience than your local machine in nearly every way. With StackBlitz, all compute occurs inside your browser , making use of decades of speed and security innovations. Legacy Online IDEs Boot time Milliseconds Minutes Zero network latency Work offline Easily debug broken containers Reset broken containers Page refresh Not possible See for yourself. Build your first app in minutes. Create with Bolt.new Products Enterprise Server Integrations Design Systems WebContainer API Web Publisher Platform Case Studies Pricing Privacy Terms of Service Support Community Docs Enterprise Sales Company Blog Careers Terms of Service Privacy Policy StackBlitz Codeflow and the Infinite Pull Request logo are trademarks of StackBlitz, Inc. © 2025 StackBlitz, Inc.
2026-01-13T08:47:43
https://parenting.forem.com/t/travel
Travel - Parenting Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account Parenting Close # travel Follow Hide Create Post Posts Left menu 👋 Sign in for the ability to sort posts by relevant , latest , or top . Right menu International Travel with Toddlers: Car Seat (or vest!) Considerations Jess Lee Jess Lee Jess Lee Follow Oct 14 '25 International Travel with Toddlers: Car Seat (or vest!) Considerations # travel # gear 15  reactions Comments 2  comments 3 min read loading... 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV Parenting — A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Home About Contact Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . Parenting © 2016 - 2026. Navigating the chaos and joy of parenting. Log in Create account
2026-01-13T08:47:43
https://dev.to/privacy#c-information-collected-from-other-sources
Privacy Policy - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Privacy Policy Last Updated: September 01, 2023 This Privacy Policy is designed to help you understand how DEV Community Inc. (" DEV ," " we ," or " us ") collects, use, and discloses your personal information. What's With the Defined Terms? You'll notice that some words appear in quotes in this Privacy Policy.  They're called "defined terms," and we use them so that we don't have to repeat the same language again and again.  They mean the same thing in every instance, to help us make sure that this Privacy Policy is consistent. We've included the defined terms throughout because we want it to be easy for you to read them in context. 1. WHAT DOES THIS PRIVACY POLICY APPLY TO? 2. PERSONAL INFORMATION WE COLLECT 3. HOW WE USE YOUR INFORMATION 4. HOW WE DISCLOSE YOUR INFORMATION 5. YOUR PRIVACY CHOICES AND RIGHTS 6. INTERNATIONAL DATA TRANSFERS 7. RETENTION OF PERSONAL INFORMATION 8. SUPPLEMENTAL DISCLOSURES FOR CALIFORNIA RESIDENTS 9. SUPPLEMENTAL NOTICE FOR NEVADA RESIDENTS 10. CHILDREN'S INFORMATION 11. OTHER PROVISIONS 12. CONTACT US 1. WHAT DOES THIS PRIVACY POLICY APPLY TO? This Privacy Policy applies to personal information processed by us, including on our websites, mobile applications, and other online or offline offerings — basically anything we do. To make this Privacy Policy easier to read, our websites, mobile applications, and other offerings are all collectively called the " Services. " Beyond this Privacy Policy, your use of the Services is subject to our DEV Community Terms and our Forem Terms. The Services include both our own community forum at https://www.dev.to (the " DEV Community ") and the open source tool we provide called " Forem ," available at https://www.forem.com which allows our customers to create and operate their own online forums. We collect personal information from two categories of people: (1) our customers, who use Forem and our hosting services to run and host their own forums (we'll call them " Forem Operators "), and (2) the people who interact with DEV-hosted forums, including forums provided by Forem Operators utilizing Forem and separately our own DEV Community (we'll call them " Users "). An Important Note for Users Since we provide hosting services for Forem Operators, technically we also process your information on their behalf. That processing is governed by the contracts that we have in place with each Forem Operator, not this Privacy Policy. In other words, when you share your data on a DEV-hosted forum operated by a Forem Operator, we at DEV are basically just the "pipes" — we process the data on behalf of the Forem Operator, but don't do anything with it ourselves beyond what we're required to do under our contract (and by law). So, if you post your information on a DEV-powered forum provided by a Forem Operator, that Forem Operator's privacy policy applies, and any questions or requests relating to your data on that service should be directed to that Forem Operator, not us. Likewise, if you use our mobile application, you may also interact with forums that use DEV's open-source tools but do all their hosting and data collection themselves. For those forums, we at DEV have no access to your data, so be sure to read the privacy policy of any third-party hosted forum before posting. 2. PERSONAL INFORMATION WE COLLECT The categories of personal information we collect depend on whether you're a User or Forem Operator, how you interact with us, our Services, and the requirements of applicable law. Breaking it down, we collect three types of information: (1) information that you provide to us directly, (2) information we obtain automatically when you use our Services, and (3) information we get about you from other sources (such as third-party services and organizations). More details are below. A. Information You Provide to Us Directly We may collect the following personal information that you provide to us. Account Creation (for Forem Operators): We'll require your name and email address to get started, as well as some details about the Forem you want to run, such as: whether you're running the Forem on your own behalf or as part of an organization, and details about the community you want to support (how big is it, what topics does it cover, where do members currently communicate, how/if the community earns money, whether the community is open, invite-only or paid, any existing social media accounts, etc.) You'll need to tell us a bit about your personal coding background, and you'll have the option to provide your DEV username as well, if you are a member of the DEV.to community. Account Creation (for Users) : We collect name and email address from users that create an account on DEV Community. For other forums created by Forem Operators using Forem, the Forem Operator determines what information is required for User account creation for their respective forums. Interactive Features (for Users) . Like any other social network, both we and other Users of our Services may collect personal information that you submit or make available through our interactive features (e.g., messaging and chat features, commenting functionalities, forums, blogs, posts, and other social media pages). While we do have private messages that are only between you and the person you're messaging (as well as us and the Forem Operator, as applicable), any information you provide using the public sharing features of the Services, such as the information you post to your public profile or the topics you follow is public, including to recruiters and prospective employers, and is not subject to any of the privacy protections we mention in this Privacy Policy except where legally required. Please exercise caution before revealing any information that may identify you in the real world to others. Purchases . If you buy stuff on our shop site https://shop.dev.to/ (as either a User or Forem Operator), or otherwise if you pay us in connection with your use of the Forem service, we may collect personal information and details associated with your purchases, including payment information. Any payments made via our Services are processed by third-party payment processors, such as Stripe, Shopify, and PayPal. We do not directly collect or store any payment card information entered through our Services, but may receive information associated with your payment card information (e.g., your billing details). Your Communications with Us (Users and Forem Operators) . We may collect personal information, such as email address, phone number, or mailing address when you request information about our Services, register for our newsletter or loyalty program, request customer or technical support, apply for a job, or otherwise communicate with us. Surveys . We may contact you to participate in surveys. If you decide to participate, you may be asked to provide certain information, which may include personal information (for example, your home address). Sweepstakes or Contests . We may collect personal information you provide for any sweepstakes or contests that we offer. In some jurisdictions, we are required to publicly share information of sweepstakes and contest winners. Conferences, Trade Shows, and Other Events . We may collect personal information from individuals when we attend conferences, trade shows, and other events. Business Development and Strategic Partnerships . We may collect personal information from individuals and third parties to assess and pursue potential business opportunities. Job Applications . We may post job openings and opportunities on our Services. If you reply to one of these postings by submitting your application, CV and/or cover letter to us, we will collect and use your information to assess your qualifications. B. Information Collected Automatically We may collect personal information automatically when you use our Services: Automatic Data Collection . We may collect certain information automatically when you use our Services, such as your Internet protocol (IP) address, user settings, MAC address, cookie identifiers, mobile carrier, mobile advertising and other unique identifiers, browser or device information, location information (including approximate location derived from IP address), and Internet service provider. We may also automatically collect information regarding your use of our Services, such as pages that you visit before, during and after using our Services, information about the links you click, the types of content you interact with, the frequency and duration of your activities, and other information about how you use our Services. In addition, we may collect information that other people provide about you when they use our Services, including information about you when they tag you in their posts. Cookies, Pixel Tags/Web Beacons, and Other Technologies . We, as well as third parties that provide content, advertising, or other functionality on our Services, may use cookies, pixel tags, local storage, and other technologies (" Technologies ") to automatically collect information through your use of our Services. Cookies . Cookies are small text files placed in device browsers that store preferences and facilitate and enhance your experience. Pixel Tags/Web Beacons . A pixel tag (also known as a web beacon) is a piece of code embedded in our Services that collects information about engagement on our Services. The use of a pixel tag allows us to record, for example, that a user has visited a particular web page or clicked on a particular advertisement. We may also include web beacons in e-mails to understand whether messages have been opened, acted on, or forwarded. Our uses of these Technologies fall into the following general categories: Operationally Necessary . This includes Technologies that allow you access to our Services, applications, and tools that are required to identify irregular website behavior, prevent fraudulent activity and improve security or that allow you to make use of our functionality. Performance-Related . We may use Technologies to assess the performance of our Services, including as part of our analytic practices to help us understand how individuals use our Services ( see Analytics below ). Functionality-Related . We may use Technologies that allow us to offer you enhanced functionality when accessing or using our Services. This may include identifying you when you sign into our Services or keeping track of your specified preferences, interests, or past items viewed. Analytics . We may use Technologies and other third-party tools to process analytics information on our Services. Some of our analytics partners include Google Analytics. For more information,please visit Google Analytics' Privacy Policy . To learn more about how to opt-out of Google Analytics' use of your information, please click here . Social Media Platforms . Our Services may contain social media buttons such as Twitter, Facebook, GitHub, Instagram, and Twitch (that might include widgets such as the "share this" button or other interactive mini programs). These features may collect your IP address, which page you are visiting on our Services, and may set a cookie to enable the feature to function properly. Your interactions with these platforms are governed by the privacy policy of the company providing it. See the "Your Privacy Choices and Rights" section below to understand your choices regarding these Technologies. C. Information Collected from Other Sources We may obtain information about you from other sources, including through third-party services and organizations. For example, if you access our Services through a third-party application, such as an app store, a third-party login service (e.g., through Twitter, Apple, or GitHub), or a social networking site, we may collect whatever information about you from that third-party application that you have made available via your privacy settings. 3. HOW WE USE YOUR INFORMATION We use your information for a variety of business purposes, including to provide our Services, for administrative purposes, and to market our products and Services, as described below. A. Provide Our Services We use your information to fulfill our contract with you and provide you with our Services, such as: Managing your information and accounts; Providing access to certain areas, functionalities, and features of our Services; Answering requests for customer or technical support; Communicating with you about your account, activities on our Services, and policy changes; Processing your financial information and other payment methods for products or Services purchased; Processing applications if you apply for a job we post on our Services; and Allowing you to register for events. B. Administrative Purposes We use your information for various administrative purposes, such as: Pursuing our legitimate interests such as direct marketing, research and development (including marketing research), network and information security, and fraud prevention; Detecting security incidents, protecting against malicious, deceptive, fraudulent or illegal activity, and prosecuting those responsible for that activity; Measuring interest and engagement in our Services, including for usage-based billing purposes; Short-term, transient use, such as contextual customization of ads; Improving, optimizing, upgrading, or enhancing our Services; Developing new products and Services; Ensuring internal quality control and safety; Authenticating and verifying individual identities, including requests to exercise your rights under this policy; Debugging to identify and repair errors with our Services; Auditing relating to interactions, transactions and other compliance activities; Enforcing our agreements and policies; and Complying with our legal obligations. C. Marketing and Advertising our Products and Services We may use your personal information to tailor and provide you with content and advertisements for our Services, such as via email. If you have any questions about our marketing practices, you may contact us at any time as set forth in the "Contact Us" section below. D. Other Purposes We also use your information for other purposes as requested by you or as permitted by applicable law. Consent . We may use personal information for other purposes that are clearly disclosed to you at the time you provide personal information or with your consent. Automated Decision Making. We may engage in automated decision making, including profiling, such as to suggest topics or other Users for you to follow. DEV's processing of your personal information will not result in a decision based solely on automated processing that significantly affects you unless such a decision is necessary as part of a contract we have with you, we have your consent, or we are permitted by law to engage in such automated decision making. If you have questions about our automated decision making, you may contact us as set forth in the "Contact Us" section below. De-identified and Aggregated Information . We may use personal information and other information about you to create de-identified and/or aggregated information, such as de-identified demographic information, information about the device from which you access our Services, or other analyses we create. For example, we may collect system-wide information to ensure availability of the platform, or measure aggregate data trends to analyze and optimize our Services. Share Content with Friends or Colleagues. Our Services may offer various tools and functionalities. For example, we may allow you to provide information about your friends through our referral services. Our referral services may allow you to forward or share certain content with a friend or colleague, such as an email inviting your friend to use our Services. Please only share with us contact information of people with whom you have a relationship (e.g., relative, friend neighbor, or co-worker). 4. HOW WE DISCLOSE YOUR INFORMATION We disclose your information to third parties for a variety of business purposes, including to provide our Services, to protect us or others, or in the event of a major business transaction such as a merger, sale, or asset transfer, as described below. A. Disclosures to Provide our Services The categories of third parties with whom we may share your information are described below. Service Providers . We may share your personal information with our third-party service providers who use that information to help us provide our Services. This includes service providers that provide us with IT support, hosting, payment processing, customer service, and related services. For example, our Shop site is run by Shopify, who handle your shipping details on our behalf. Business Partners . We may share your personal information with business partners to provide you with a product or service you have requested. We may also share your personal information to business partners with whom we jointly offer products or services. Other Users . As described above in the "Personal Information We Collect" section of this Privacy Policy, our Service allows Users to share their profiles, and any posts, chats, etc. with other Users and with the general public, including to those who do not use our Services. APIs/SDKs . We may use third-party Application Program Interfaces ("APIs") and Software Development Kits ("SDKs") as part of the functionality of our Services. For more information about our use of APIs and SDKs, please contact us as set forth in the "Contact Us" section below. B . Disclosures to Protect Us or Others We may access, preserve, and disclose any information we store associated with you to external parties if we, in good faith, believe doing so is required or appropriate to: comply with law enforcement or national security requests and legal process, such as a court order or subpoena; protect your, our, or others' rights, property, or safety; enforce our policies or contracts; collect amounts owed to us; or assist with an investigation or prosecution of suspected or actual illegal activity. C. Disclosure in the Event of Merger, Sale, or Other Asset Transfers If we are involved in a merger, acquisition, financing due diligence, reorganization, bankruptcy, receivership, purchase or sale of assets, or transition of service to another provider, your information may be sold or transferred as part of such a transaction, as permitted by law and/or contract. 5. YOUR PRIVACY CHOICES AND RIGHTS Your Privacy Choices . The privacy choices you may have about your personal information are determined by applicable law and are described below. Email Communications . If you receive an unwanted email from us, you can use the unsubscribe link found at the bottom of the email to opt out of receiving future emails. Note that you will continue to receive transaction-related emails regarding products or Services you have requested. We may also send you certain non-promotional communications regarding us and our Services, and you will not be able to opt out of those communications (e.g., communications regarding our Services or updates to our Terms or this Privacy Policy). Mobile Devices . We may send you push notifications through our mobile application. You may opt out from receiving these push notifications by changing the settings on your mobile device. "Do Not Track." Do Not Track (" DNT ") is a privacy preference that users can set in certain web browsers. Please note that we do not respond to or honor DNT signals or similar mechanisms transmitted by web browsers. Cookies and Interest-Based Advertising . You may stop or restrict the placement of Technologies on your device or remove them by adjusting your preferences as your browser or device permits. However, if you adjust your preferences, our Services may not work properly. Please note that cookie-based opt-outs are not effective on mobile applications. Please note you must separately opt out in each browser and on each device. Your Privacy Rights . In accordance with applicable law, you may have the right to: Access Personal Information about you, including: (i) confirming whether we are processing your personal information; (ii) obtaining access to or a copy of your personal information; Request Correction of your personal information where it is inaccurate, incomplete or outdated. In some cases, we may provide self-service tools that enable you to update your personal information; Request Deletion, Anonymization or Blocking of your personal information when processing is based on your consent or when processing is unnecessary, excessive or noncompliant; Request Restriction of or Object to our processing of your personal information when processing is noncompliant; Withdraw Your Consent to our processing of your personal information. If you refrain from providing personal information or withdraw your consent to processing, some features of our Service may not be available; Request Data Portability and Receive an Electronic Copy of Personal Information that You Have Provided to Us; Be Informed about third parties with which your personal information has been shared; and Request the Review of Decisions Taken Exclusively Based on Automated Processing if such decisions could affect your data subject rights. If you would like to exercise any of these rights, please contact us as set forth in "Contact Us" below. We will process such requests in accordance with applicable laws. 6. INTERNATIONAL DATA TRANSFERS All information processed by us may be transferred, processed, and stored anywhere in the world, including, but not limited to, the United States or other countries, which may have data protection laws that are different from the laws where you live. We always strive to safeguard your information consistent with the requirements of applicable laws. 7. RETENTION OF PERSONAL INFORMATION We store the personal information we collect as described in this Privacy Policy for as long as you use our Services or as necessary: to fulfill the purpose or purposes for which it was collected, to provide our Services, to resolve disputes, to establish legal defenses, to conduct audits, to pursue legitimate business purposes, to enforce our agreements, and to comply with applicable laws.  8. SUPPLEMENTAL DISCLOSURES FOR CALIFORNIA RESIDENTS Refer-a-Friend and Similar Incentive Programs . As described above in the How We Use Your Personal Information section ("Share Content with Friends or Colleagues" subsection), we may offer referral programs or other incentivized data collection programs. For example, we may offer incentives to you such as discounts or promotional items or credit in connection with these programs, wherein you provide your personal information in exchange for a reward, or provide personal information regarding your friends or colleagues (such as their email address) and receive rewards when they sign up to use our Services. (The referred party may also receive rewards for signing up via your referral.) These programs are entirely voluntary and allow us to grow our business and provide additional benefits to you. The value of your data to us depends on how you ultimately use our Services, whereas the value of the referred party's data to us depends on whether the referred party ultimately becomes a User or Forem Operator and uses our Services. Said value will be reflected in the incentive offered in connection with each program. Accessibility . This Privacy Policy uses industry-standard technologies and was developed in line with the World Wide Web Consortium's Web Content Accessibility Guidelines, version 2.1* . * If you wish to print this policy, please do so from your web browser or by saving the page as a PDF. California Shine the Light . The California "Shine the Light" law permits users who are California residents to request and obtain from us once a year, free of charge, a list of the third parties to whom we have disclosed their personal information (if any) for their direct marketing purposes in the prior calendar year, as well as the type of personal information disclosed to those parties. Right for Minors to Remove Posted Content . Where required by law, California residents under the age of 18 may request to have their posted content or information removed from the publicly-viewable portions of the Services by contacting us directly as set forth in the "Contact Us" section below or by logging into their account and removing the content or information using our self-service tools. 9. SUPPLEMENTAL NOTICE FOR NEVADA RESIDENTS If you are a resident of Nevada, you have the right to opt-out of the sale of certain Personal Information to third parties who intend to license or sell that Personal Information. You can exercise this right by contacting us as set forth in the "Contact Us\" section below with the subject line "Nevada Do Not Sell Request" and providing us with your name and the email address associated with your account. Please note that we do not currently sell your Personal Information as sales are defined in Nevada Revised Statutes Chapter 603A. If you have any questions, please contact us as set forth below. 10. CHILDREN'S INFORMATION The Services are not directed to children under 13 (or other age as required by local law), and we do not knowingly collect personal information from children. If you are a parent or guardian and believe your child has uploaded personal information to our site without your consent, you may contact us as described in the "Contact Us" section below. If we become aware that a child has provided us with personal information in violation of applicable law, we will delete any personal information we have collected, unless we have a legal obligation to keep it, and terminate the child's account if applicable. 11. OTHER PROVISIONS Third-Party Websites or Applications . The Services may contain links to other websites or applications, and other websites or applications may reference or link to our Services. These third-party services are not controlled by us. We encourage our users to read the privacy policies of each website and application with which they interact. We do not endorse, screen or approve, and are not responsible for, the privacy practices or content of such other websites or applications. Providing personal information to third-party websites or applications is at your own risk. Changes to Our Privacy Policy . We may revise this Privacy Policy from time to time in our sole discretion. If there are any material changes to this Privacy Policy, we will notify you as required by applicable law. You understand and agree that you will be deemed to have accepted the updated Privacy Policy if you continue to use our Services after the new Privacy Policy takes effect. 12. CONTACT US If you have any questions about our privacy practices or this Privacy Policy, or to exercise your rights as detailed in this Privacy Policy, please contact us at: support@dev.to . 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://dev.to/action-in-action/avoid-the-undocumented-pipes-problem-by-slicing-your-work#main-content
Avoid the "Undocumented Pipes" problem by slicing your work - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Agile in Action with Bill Raymond Follow Avoid the "Undocumented Pipes" problem by slicing your work Mar 12 '24 play 🎥 Watch on YouTube: https://youtu.be/pQk7wUP4k-U Today, Anton Skornyakov, Certified Scrum Trainer, co-founder, and managing director of Agile.coach, will help you navigate the complexities of delivering value in your projects, regardless of the industry. In this episode, Anton and Bill Raymond dive into the art of slicing work into manageable pieces to deliver immediate value. Drawing from diverse examples like software development, house renovation, and public housing projects, we explore how agile principles can be applied in various contexts to enhance adaptability, risk management, and prioritization. In this podcast, you will learn the following: ✅ The importance of breaking down work into smaller, value-delivering pieces. ✅ Strategies for prioritizing tasks to address risks and uncertainties. 🎉 How to apply agile `principles beyond software development to achieve continuous improvement. 🍕 Slice up your project to deliver more value! 🎯 Today, Anton Skornyakov, Certified Scrum Trainer, co-founder, and managing director of Agile.coach, will help you navigate the complexities of delivering value in your projects, regardless of the industry. In this episode, Anton and Bill Raymond dive into the art of slicing work into manageable pieces to deliver immediate value. Drawing from diverse examples like software development, house renovation, and public housing projects, we explore how agile principles can be applied in various contexts to enhance adaptability, risk management, and prioritization. In this podcast, you will learn the following: ✅ The importance of breaking down work into smaller, value-delivering pieces. ✅ Strategies for prioritizing tasks to address risks and uncertainties. 🎉 How to apply agile `principles beyond software development to achieve continuous improvement. Episode source Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Your browser does not support the audio element. 1x initializing... × 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://golf.forem.com/t/etiquette
Etiquette - Golf Forem Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account Golf Forem Close # etiquette Follow Hide Discussions on proper golf etiquette and pace of play Create Post Posts Left menu 👋 Sign in for the ability to sort posts by relevant , latest , or top . Right menu loading... 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV Golf Forem — A community of golfers and golfing enthusiasts Home About Contact Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . Golf Forem © 2016 - 2026. Where hackers, sticks, weekend warriors, pros, architects and wannabes come together Log in Create account
2026-01-13T08:47:43
https://dev.to/adventures_in_ml/data-visualization-and-hugging-face-ml-131
Data Visualization and Hugging Face - ML 131 - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Adventures in Machine Learning Follow Data Visualization and Hugging Face - ML 131 Nov 2 '23 play In today's episode, we chat with Sylvain Lesage from Hugging Face, a specialist in data visualization and software engineering. Dive in to discover insights about Hugging Face's software engineering environment, invaluable data visualization techniques, and more! Sponsors Zilliz , who makes  a vector database  for the enterprise Chuck's Resume Template Developer Book Club starting Become a Top 1% Dev with a Top End Devs Membership Socials LinkedIn: Sylvain Lesage Advertising Inquiries: https://redcircle.com/brands Privacy & Opt-Out: https://redcircle.com/privacy Episode source Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Your browser does not support the audio element. 1x initializing... × 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://dev.to/privacy#2-personal-information-we-collect
Privacy Policy - DEV Community Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account DEV Community Close Privacy Policy Last Updated: September 01, 2023 This Privacy Policy is designed to help you understand how DEV Community Inc. (" DEV ," " we ," or " us ") collects, use, and discloses your personal information. What's With the Defined Terms? You'll notice that some words appear in quotes in this Privacy Policy.  They're called "defined terms," and we use them so that we don't have to repeat the same language again and again.  They mean the same thing in every instance, to help us make sure that this Privacy Policy is consistent. We've included the defined terms throughout because we want it to be easy for you to read them in context. 1. WHAT DOES THIS PRIVACY POLICY APPLY TO? 2. PERSONAL INFORMATION WE COLLECT 3. HOW WE USE YOUR INFORMATION 4. HOW WE DISCLOSE YOUR INFORMATION 5. YOUR PRIVACY CHOICES AND RIGHTS 6. INTERNATIONAL DATA TRANSFERS 7. RETENTION OF PERSONAL INFORMATION 8. SUPPLEMENTAL DISCLOSURES FOR CALIFORNIA RESIDENTS 9. SUPPLEMENTAL NOTICE FOR NEVADA RESIDENTS 10. CHILDREN'S INFORMATION 11. OTHER PROVISIONS 12. CONTACT US 1. WHAT DOES THIS PRIVACY POLICY APPLY TO? This Privacy Policy applies to personal information processed by us, including on our websites, mobile applications, and other online or offline offerings — basically anything we do. To make this Privacy Policy easier to read, our websites, mobile applications, and other offerings are all collectively called the " Services. " Beyond this Privacy Policy, your use of the Services is subject to our DEV Community Terms and our Forem Terms. The Services include both our own community forum at https://www.dev.to (the " DEV Community ") and the open source tool we provide called " Forem ," available at https://www.forem.com which allows our customers to create and operate their own online forums. We collect personal information from two categories of people: (1) our customers, who use Forem and our hosting services to run and host their own forums (we'll call them " Forem Operators "), and (2) the people who interact with DEV-hosted forums, including forums provided by Forem Operators utilizing Forem and separately our own DEV Community (we'll call them " Users "). An Important Note for Users Since we provide hosting services for Forem Operators, technically we also process your information on their behalf. That processing is governed by the contracts that we have in place with each Forem Operator, not this Privacy Policy. In other words, when you share your data on a DEV-hosted forum operated by a Forem Operator, we at DEV are basically just the "pipes" — we process the data on behalf of the Forem Operator, but don't do anything with it ourselves beyond what we're required to do under our contract (and by law). So, if you post your information on a DEV-powered forum provided by a Forem Operator, that Forem Operator's privacy policy applies, and any questions or requests relating to your data on that service should be directed to that Forem Operator, not us. Likewise, if you use our mobile application, you may also interact with forums that use DEV's open-source tools but do all their hosting and data collection themselves. For those forums, we at DEV have no access to your data, so be sure to read the privacy policy of any third-party hosted forum before posting. 2. PERSONAL INFORMATION WE COLLECT The categories of personal information we collect depend on whether you're a User or Forem Operator, how you interact with us, our Services, and the requirements of applicable law. Breaking it down, we collect three types of information: (1) information that you provide to us directly, (2) information we obtain automatically when you use our Services, and (3) information we get about you from other sources (such as third-party services and organizations). More details are below. A. Information You Provide to Us Directly We may collect the following personal information that you provide to us. Account Creation (for Forem Operators): We'll require your name and email address to get started, as well as some details about the Forem you want to run, such as: whether you're running the Forem on your own behalf or as part of an organization, and details about the community you want to support (how big is it, what topics does it cover, where do members currently communicate, how/if the community earns money, whether the community is open, invite-only or paid, any existing social media accounts, etc.) You'll need to tell us a bit about your personal coding background, and you'll have the option to provide your DEV username as well, if you are a member of the DEV.to community. Account Creation (for Users) : We collect name and email address from users that create an account on DEV Community. For other forums created by Forem Operators using Forem, the Forem Operator determines what information is required for User account creation for their respective forums. Interactive Features (for Users) . Like any other social network, both we and other Users of our Services may collect personal information that you submit or make available through our interactive features (e.g., messaging and chat features, commenting functionalities, forums, blogs, posts, and other social media pages). While we do have private messages that are only between you and the person you're messaging (as well as us and the Forem Operator, as applicable), any information you provide using the public sharing features of the Services, such as the information you post to your public profile or the topics you follow is public, including to recruiters and prospective employers, and is not subject to any of the privacy protections we mention in this Privacy Policy except where legally required. Please exercise caution before revealing any information that may identify you in the real world to others. Purchases . If you buy stuff on our shop site https://shop.dev.to/ (as either a User or Forem Operator), or otherwise if you pay us in connection with your use of the Forem service, we may collect personal information and details associated with your purchases, including payment information. Any payments made via our Services are processed by third-party payment processors, such as Stripe, Shopify, and PayPal. We do not directly collect or store any payment card information entered through our Services, but may receive information associated with your payment card information (e.g., your billing details). Your Communications with Us (Users and Forem Operators) . We may collect personal information, such as email address, phone number, or mailing address when you request information about our Services, register for our newsletter or loyalty program, request customer or technical support, apply for a job, or otherwise communicate with us. Surveys . We may contact you to participate in surveys. If you decide to participate, you may be asked to provide certain information, which may include personal information (for example, your home address). Sweepstakes or Contests . We may collect personal information you provide for any sweepstakes or contests that we offer. In some jurisdictions, we are required to publicly share information of sweepstakes and contest winners. Conferences, Trade Shows, and Other Events . We may collect personal information from individuals when we attend conferences, trade shows, and other events. Business Development and Strategic Partnerships . We may collect personal information from individuals and third parties to assess and pursue potential business opportunities. Job Applications . We may post job openings and opportunities on our Services. If you reply to one of these postings by submitting your application, CV and/or cover letter to us, we will collect and use your information to assess your qualifications. B. Information Collected Automatically We may collect personal information automatically when you use our Services: Automatic Data Collection . We may collect certain information automatically when you use our Services, such as your Internet protocol (IP) address, user settings, MAC address, cookie identifiers, mobile carrier, mobile advertising and other unique identifiers, browser or device information, location information (including approximate location derived from IP address), and Internet service provider. We may also automatically collect information regarding your use of our Services, such as pages that you visit before, during and after using our Services, information about the links you click, the types of content you interact with, the frequency and duration of your activities, and other information about how you use our Services. In addition, we may collect information that other people provide about you when they use our Services, including information about you when they tag you in their posts. Cookies, Pixel Tags/Web Beacons, and Other Technologies . We, as well as third parties that provide content, advertising, or other functionality on our Services, may use cookies, pixel tags, local storage, and other technologies (" Technologies ") to automatically collect information through your use of our Services. Cookies . Cookies are small text files placed in device browsers that store preferences and facilitate and enhance your experience. Pixel Tags/Web Beacons . A pixel tag (also known as a web beacon) is a piece of code embedded in our Services that collects information about engagement on our Services. The use of a pixel tag allows us to record, for example, that a user has visited a particular web page or clicked on a particular advertisement. We may also include web beacons in e-mails to understand whether messages have been opened, acted on, or forwarded. Our uses of these Technologies fall into the following general categories: Operationally Necessary . This includes Technologies that allow you access to our Services, applications, and tools that are required to identify irregular website behavior, prevent fraudulent activity and improve security or that allow you to make use of our functionality. Performance-Related . We may use Technologies to assess the performance of our Services, including as part of our analytic practices to help us understand how individuals use our Services ( see Analytics below ). Functionality-Related . We may use Technologies that allow us to offer you enhanced functionality when accessing or using our Services. This may include identifying you when you sign into our Services or keeping track of your specified preferences, interests, or past items viewed. Analytics . We may use Technologies and other third-party tools to process analytics information on our Services. Some of our analytics partners include Google Analytics. For more information,please visit Google Analytics' Privacy Policy . To learn more about how to opt-out of Google Analytics' use of your information, please click here . Social Media Platforms . Our Services may contain social media buttons such as Twitter, Facebook, GitHub, Instagram, and Twitch (that might include widgets such as the "share this" button or other interactive mini programs). These features may collect your IP address, which page you are visiting on our Services, and may set a cookie to enable the feature to function properly. Your interactions with these platforms are governed by the privacy policy of the company providing it. See the "Your Privacy Choices and Rights" section below to understand your choices regarding these Technologies. C. Information Collected from Other Sources We may obtain information about you from other sources, including through third-party services and organizations. For example, if you access our Services through a third-party application, such as an app store, a third-party login service (e.g., through Twitter, Apple, or GitHub), or a social networking site, we may collect whatever information about you from that third-party application that you have made available via your privacy settings. 3. HOW WE USE YOUR INFORMATION We use your information for a variety of business purposes, including to provide our Services, for administrative purposes, and to market our products and Services, as described below. A. Provide Our Services We use your information to fulfill our contract with you and provide you with our Services, such as: Managing your information and accounts; Providing access to certain areas, functionalities, and features of our Services; Answering requests for customer or technical support; Communicating with you about your account, activities on our Services, and policy changes; Processing your financial information and other payment methods for products or Services purchased; Processing applications if you apply for a job we post on our Services; and Allowing you to register for events. B. Administrative Purposes We use your information for various administrative purposes, such as: Pursuing our legitimate interests such as direct marketing, research and development (including marketing research), network and information security, and fraud prevention; Detecting security incidents, protecting against malicious, deceptive, fraudulent or illegal activity, and prosecuting those responsible for that activity; Measuring interest and engagement in our Services, including for usage-based billing purposes; Short-term, transient use, such as contextual customization of ads; Improving, optimizing, upgrading, or enhancing our Services; Developing new products and Services; Ensuring internal quality control and safety; Authenticating and verifying individual identities, including requests to exercise your rights under this policy; Debugging to identify and repair errors with our Services; Auditing relating to interactions, transactions and other compliance activities; Enforcing our agreements and policies; and Complying with our legal obligations. C. Marketing and Advertising our Products and Services We may use your personal information to tailor and provide you with content and advertisements for our Services, such as via email. If you have any questions about our marketing practices, you may contact us at any time as set forth in the "Contact Us" section below. D. Other Purposes We also use your information for other purposes as requested by you or as permitted by applicable law. Consent . We may use personal information for other purposes that are clearly disclosed to you at the time you provide personal information or with your consent. Automated Decision Making. We may engage in automated decision making, including profiling, such as to suggest topics or other Users for you to follow. DEV's processing of your personal information will not result in a decision based solely on automated processing that significantly affects you unless such a decision is necessary as part of a contract we have with you, we have your consent, or we are permitted by law to engage in such automated decision making. If you have questions about our automated decision making, you may contact us as set forth in the "Contact Us" section below. De-identified and Aggregated Information . We may use personal information and other information about you to create de-identified and/or aggregated information, such as de-identified demographic information, information about the device from which you access our Services, or other analyses we create. For example, we may collect system-wide information to ensure availability of the platform, or measure aggregate data trends to analyze and optimize our Services. Share Content with Friends or Colleagues. Our Services may offer various tools and functionalities. For example, we may allow you to provide information about your friends through our referral services. Our referral services may allow you to forward or share certain content with a friend or colleague, such as an email inviting your friend to use our Services. Please only share with us contact information of people with whom you have a relationship (e.g., relative, friend neighbor, or co-worker). 4. HOW WE DISCLOSE YOUR INFORMATION We disclose your information to third parties for a variety of business purposes, including to provide our Services, to protect us or others, or in the event of a major business transaction such as a merger, sale, or asset transfer, as described below. A. Disclosures to Provide our Services The categories of third parties with whom we may share your information are described below. Service Providers . We may share your personal information with our third-party service providers who use that information to help us provide our Services. This includes service providers that provide us with IT support, hosting, payment processing, customer service, and related services. For example, our Shop site is run by Shopify, who handle your shipping details on our behalf. Business Partners . We may share your personal information with business partners to provide you with a product or service you have requested. We may also share your personal information to business partners with whom we jointly offer products or services. Other Users . As described above in the "Personal Information We Collect" section of this Privacy Policy, our Service allows Users to share their profiles, and any posts, chats, etc. with other Users and with the general public, including to those who do not use our Services. APIs/SDKs . We may use third-party Application Program Interfaces ("APIs") and Software Development Kits ("SDKs") as part of the functionality of our Services. For more information about our use of APIs and SDKs, please contact us as set forth in the "Contact Us" section below. B . Disclosures to Protect Us or Others We may access, preserve, and disclose any information we store associated with you to external parties if we, in good faith, believe doing so is required or appropriate to: comply with law enforcement or national security requests and legal process, such as a court order or subpoena; protect your, our, or others' rights, property, or safety; enforce our policies or contracts; collect amounts owed to us; or assist with an investigation or prosecution of suspected or actual illegal activity. C. Disclosure in the Event of Merger, Sale, or Other Asset Transfers If we are involved in a merger, acquisition, financing due diligence, reorganization, bankruptcy, receivership, purchase or sale of assets, or transition of service to another provider, your information may be sold or transferred as part of such a transaction, as permitted by law and/or contract. 5. YOUR PRIVACY CHOICES AND RIGHTS Your Privacy Choices . The privacy choices you may have about your personal information are determined by applicable law and are described below. Email Communications . If you receive an unwanted email from us, you can use the unsubscribe link found at the bottom of the email to opt out of receiving future emails. Note that you will continue to receive transaction-related emails regarding products or Services you have requested. We may also send you certain non-promotional communications regarding us and our Services, and you will not be able to opt out of those communications (e.g., communications regarding our Services or updates to our Terms or this Privacy Policy). Mobile Devices . We may send you push notifications through our mobile application. You may opt out from receiving these push notifications by changing the settings on your mobile device. "Do Not Track." Do Not Track (" DNT ") is a privacy preference that users can set in certain web browsers. Please note that we do not respond to or honor DNT signals or similar mechanisms transmitted by web browsers. Cookies and Interest-Based Advertising . You may stop or restrict the placement of Technologies on your device or remove them by adjusting your preferences as your browser or device permits. However, if you adjust your preferences, our Services may not work properly. Please note that cookie-based opt-outs are not effective on mobile applications. Please note you must separately opt out in each browser and on each device. Your Privacy Rights . In accordance with applicable law, you may have the right to: Access Personal Information about you, including: (i) confirming whether we are processing your personal information; (ii) obtaining access to or a copy of your personal information; Request Correction of your personal information where it is inaccurate, incomplete or outdated. In some cases, we may provide self-service tools that enable you to update your personal information; Request Deletion, Anonymization or Blocking of your personal information when processing is based on your consent or when processing is unnecessary, excessive or noncompliant; Request Restriction of or Object to our processing of your personal information when processing is noncompliant; Withdraw Your Consent to our processing of your personal information. If you refrain from providing personal information or withdraw your consent to processing, some features of our Service may not be available; Request Data Portability and Receive an Electronic Copy of Personal Information that You Have Provided to Us; Be Informed about third parties with which your personal information has been shared; and Request the Review of Decisions Taken Exclusively Based on Automated Processing if such decisions could affect your data subject rights. If you would like to exercise any of these rights, please contact us as set forth in "Contact Us" below. We will process such requests in accordance with applicable laws. 6. INTERNATIONAL DATA TRANSFERS All information processed by us may be transferred, processed, and stored anywhere in the world, including, but not limited to, the United States or other countries, which may have data protection laws that are different from the laws where you live. We always strive to safeguard your information consistent with the requirements of applicable laws. 7. RETENTION OF PERSONAL INFORMATION We store the personal information we collect as described in this Privacy Policy for as long as you use our Services or as necessary: to fulfill the purpose or purposes for which it was collected, to provide our Services, to resolve disputes, to establish legal defenses, to conduct audits, to pursue legitimate business purposes, to enforce our agreements, and to comply with applicable laws.  8. SUPPLEMENTAL DISCLOSURES FOR CALIFORNIA RESIDENTS Refer-a-Friend and Similar Incentive Programs . As described above in the How We Use Your Personal Information section ("Share Content with Friends or Colleagues" subsection), we may offer referral programs or other incentivized data collection programs. For example, we may offer incentives to you such as discounts or promotional items or credit in connection with these programs, wherein you provide your personal information in exchange for a reward, or provide personal information regarding your friends or colleagues (such as their email address) and receive rewards when they sign up to use our Services. (The referred party may also receive rewards for signing up via your referral.) These programs are entirely voluntary and allow us to grow our business and provide additional benefits to you. The value of your data to us depends on how you ultimately use our Services, whereas the value of the referred party's data to us depends on whether the referred party ultimately becomes a User or Forem Operator and uses our Services. Said value will be reflected in the incentive offered in connection with each program. Accessibility . This Privacy Policy uses industry-standard technologies and was developed in line with the World Wide Web Consortium's Web Content Accessibility Guidelines, version 2.1* . * If you wish to print this policy, please do so from your web browser or by saving the page as a PDF. California Shine the Light . The California "Shine the Light" law permits users who are California residents to request and obtain from us once a year, free of charge, a list of the third parties to whom we have disclosed their personal information (if any) for their direct marketing purposes in the prior calendar year, as well as the type of personal information disclosed to those parties. Right for Minors to Remove Posted Content . Where required by law, California residents under the age of 18 may request to have their posted content or information removed from the publicly-viewable portions of the Services by contacting us directly as set forth in the "Contact Us" section below or by logging into their account and removing the content or information using our self-service tools. 9. SUPPLEMENTAL NOTICE FOR NEVADA RESIDENTS If you are a resident of Nevada, you have the right to opt-out of the sale of certain Personal Information to third parties who intend to license or sell that Personal Information. You can exercise this right by contacting us as set forth in the "Contact Us\" section below with the subject line "Nevada Do Not Sell Request" and providing us with your name and the email address associated with your account. Please note that we do not currently sell your Personal Information as sales are defined in Nevada Revised Statutes Chapter 603A. If you have any questions, please contact us as set forth below. 10. CHILDREN'S INFORMATION The Services are not directed to children under 13 (or other age as required by local law), and we do not knowingly collect personal information from children. If you are a parent or guardian and believe your child has uploaded personal information to our site without your consent, you may contact us as described in the "Contact Us" section below. If we become aware that a child has provided us with personal information in violation of applicable law, we will delete any personal information we have collected, unless we have a legal obligation to keep it, and terminate the child's account if applicable. 11. OTHER PROVISIONS Third-Party Websites or Applications . The Services may contain links to other websites or applications, and other websites or applications may reference or link to our Services. These third-party services are not controlled by us. We encourage our users to read the privacy policies of each website and application with which they interact. We do not endorse, screen or approve, and are not responsible for, the privacy practices or content of such other websites or applications. Providing personal information to third-party websites or applications is at your own risk. Changes to Our Privacy Policy . We may revise this Privacy Policy from time to time in our sole discretion. If there are any material changes to this Privacy Policy, we will notify you as required by applicable law. You understand and agree that you will be deemed to have accepted the updated Privacy Policy if you continue to use our Services after the new Privacy Policy takes effect. 12. CONTACT US If you have any questions about our privacy practices or this Privacy Policy, or to exercise your rights as detailed in this Privacy Policy, please contact us at: support@dev.to . 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV DEV Community — A space to discuss and keep up software development and manage your software career Home DEV++ Podcasts Videos DEV Education Tracks DEV Challenges DEV Help Advertise on DEV DEV Showcase About Contact Free Postgres Database Software comparisons Forem Shop Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . DEV Community © 2016 - 2026. We're a place where coders share, stay up-to-date and grow their careers. Log in Create account
2026-01-13T08:47:43
https://parenting.forem.com/t/education
Education - Parenting Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account Parenting Close # education Follow Hide Discussions on academic programs, online courses, and learning paths in security. Create Post Older #education posts 1 2 3 Posts Left menu 👋 Sign in for the ability to sort posts by relevant , latest , or top . Right menu loading... 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV Parenting — A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Home About Contact Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . Parenting © 2016 - 2026. Navigating the chaos and joy of parenting. Log in Create account
2026-01-13T08:47:43
https://parenting.forem.com/privacy
Privacy Policy - Parenting Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account Parenting Close Privacy Policy Last Updated: September 01, 2023 This Privacy Policy is designed to help you understand how DEV Community Inc. (" DEV ," " we ," or " us ") collects, use, and discloses your personal information. What's With the Defined Terms? You'll notice that some words appear in quotes in this Privacy Policy.  They're called "defined terms," and we use them so that we don't have to repeat the same language again and again.  They mean the same thing in every instance, to help us make sure that this Privacy Policy is consistent. We've included the defined terms throughout because we want it to be easy for you to read them in context. 1. WHAT DOES THIS PRIVACY POLICY APPLY TO? 2. PERSONAL INFORMATION WE COLLECT 3. HOW WE USE YOUR INFORMATION 4. HOW WE DISCLOSE YOUR INFORMATION 5. YOUR PRIVACY CHOICES AND RIGHTS 6. INTERNATIONAL DATA TRANSFERS 7. RETENTION OF PERSONAL INFORMATION 8. SUPPLEMENTAL DISCLOSURES FOR CALIFORNIA RESIDENTS 9. SUPPLEMENTAL NOTICE FOR NEVADA RESIDENTS 10. CHILDREN'S INFORMATION 11. OTHER PROVISIONS 12. CONTACT US 1. WHAT DOES THIS PRIVACY POLICY APPLY TO? This Privacy Policy applies to personal information processed by us, including on our websites, mobile applications, and other online or offline offerings — basically anything we do. To make this Privacy Policy easier to read, our websites, mobile applications, and other offerings are all collectively called the " Services. " Beyond this Privacy Policy, your use of the Services is subject to our DEV Community Terms and our Forem Terms. The Services include both our own community forum at https://www.dev.to (the " DEV Community ") and the open source tool we provide called " Forem ," available at https://www.forem.com which allows our customers to create and operate their own online forums. We collect personal information from two categories of people: (1) our customers, who use Forem and our hosting services to run and host their own forums (we'll call them " Forem Operators "), and (2) the people who interact with DEV-hosted forums, including forums provided by Forem Operators utilizing Forem and separately our own DEV Community (we'll call them " Users "). An Important Note for Users Since we provide hosting services for Forem Operators, technically we also process your information on their behalf. That processing is governed by the contracts that we have in place with each Forem Operator, not this Privacy Policy. In other words, when you share your data on a DEV-hosted forum operated by a Forem Operator, we at DEV are basically just the "pipes" — we process the data on behalf of the Forem Operator, but don't do anything with it ourselves beyond what we're required to do under our contract (and by law). So, if you post your information on a DEV-powered forum provided by a Forem Operator, that Forem Operator's privacy policy applies, and any questions or requests relating to your data on that service should be directed to that Forem Operator, not us. Likewise, if you use our mobile application, you may also interact with forums that use DEV's open-source tools but do all their hosting and data collection themselves. For those forums, we at DEV have no access to your data, so be sure to read the privacy policy of any third-party hosted forum before posting. 2. PERSONAL INFORMATION WE COLLECT The categories of personal information we collect depend on whether you're a User or Forem Operator, how you interact with us, our Services, and the requirements of applicable law. Breaking it down, we collect three types of information: (1) information that you provide to us directly, (2) information we obtain automatically when you use our Services, and (3) information we get about you from other sources (such as third-party services and organizations). More details are below. A. Information You Provide to Us Directly We may collect the following personal information that you provide to us. Account Creation (for Forem Operators): We'll require your name and email address to get started, as well as some details about the Forem you want to run, such as: whether you're running the Forem on your own behalf or as part of an organization, and details about the community you want to support (how big is it, what topics does it cover, where do members currently communicate, how/if the community earns money, whether the community is open, invite-only or paid, any existing social media accounts, etc.) You'll need to tell us a bit about your personal coding background, and you'll have the option to provide your DEV username as well, if you are a member of the DEV.to community. Account Creation (for Users) : We collect name and email address from users that create an account on DEV Community. For other forums created by Forem Operators using Forem, the Forem Operator determines what information is required for User account creation for their respective forums. Interactive Features (for Users) . Like any other social network, both we and other Users of our Services may collect personal information that you submit or make available through our interactive features (e.g., messaging and chat features, commenting functionalities, forums, blogs, posts, and other social media pages). While we do have private messages that are only between you and the person you're messaging (as well as us and the Forem Operator, as applicable), any information you provide using the public sharing features of the Services, such as the information you post to your public profile or the topics you follow is public, including to recruiters and prospective employers, and is not subject to any of the privacy protections we mention in this Privacy Policy except where legally required. Please exercise caution before revealing any information that may identify you in the real world to others. Purchases . If you buy stuff on our shop site https://shop.dev.to/ (as either a User or Forem Operator), or otherwise if you pay us in connection with your use of the Forem service, we may collect personal information and details associated with your purchases, including payment information. Any payments made via our Services are processed by third-party payment processors, such as Stripe, Shopify, and PayPal. We do not directly collect or store any payment card information entered through our Services, but may receive information associated with your payment card information (e.g., your billing details). Your Communications with Us (Users and Forem Operators) . We may collect personal information, such as email address, phone number, or mailing address when you request information about our Services, register for our newsletter or loyalty program, request customer or technical support, apply for a job, or otherwise communicate with us. Surveys . We may contact you to participate in surveys. If you decide to participate, you may be asked to provide certain information, which may include personal information (for example, your home address). Sweepstakes or Contests . We may collect personal information you provide for any sweepstakes or contests that we offer. In some jurisdictions, we are required to publicly share information of sweepstakes and contest winners. Conferences, Trade Shows, and Other Events . We may collect personal information from individuals when we attend conferences, trade shows, and other events. Business Development and Strategic Partnerships . We may collect personal information from individuals and third parties to assess and pursue potential business opportunities. Job Applications . We may post job openings and opportunities on our Services. If you reply to one of these postings by submitting your application, CV and/or cover letter to us, we will collect and use your information to assess your qualifications. B. Information Collected Automatically We may collect personal information automatically when you use our Services: Automatic Data Collection . We may collect certain information automatically when you use our Services, such as your Internet protocol (IP) address, user settings, MAC address, cookie identifiers, mobile carrier, mobile advertising and other unique identifiers, browser or device information, location information (including approximate location derived from IP address), and Internet service provider. We may also automatically collect information regarding your use of our Services, such as pages that you visit before, during and after using our Services, information about the links you click, the types of content you interact with, the frequency and duration of your activities, and other information about how you use our Services. In addition, we may collect information that other people provide about you when they use our Services, including information about you when they tag you in their posts. Cookies, Pixel Tags/Web Beacons, and Other Technologies . We, as well as third parties that provide content, advertising, or other functionality on our Services, may use cookies, pixel tags, local storage, and other technologies (" Technologies ") to automatically collect information through your use of our Services. Cookies . Cookies are small text files placed in device browsers that store preferences and facilitate and enhance your experience. Pixel Tags/Web Beacons . A pixel tag (also known as a web beacon) is a piece of code embedded in our Services that collects information about engagement on our Services. The use of a pixel tag allows us to record, for example, that a user has visited a particular web page or clicked on a particular advertisement. We may also include web beacons in e-mails to understand whether messages have been opened, acted on, or forwarded. Our uses of these Technologies fall into the following general categories: Operationally Necessary . This includes Technologies that allow you access to our Services, applications, and tools that are required to identify irregular website behavior, prevent fraudulent activity and improve security or that allow you to make use of our functionality. Performance-Related . We may use Technologies to assess the performance of our Services, including as part of our analytic practices to help us understand how individuals use our Services ( see Analytics below ). Functionality-Related . We may use Technologies that allow us to offer you enhanced functionality when accessing or using our Services. This may include identifying you when you sign into our Services or keeping track of your specified preferences, interests, or past items viewed. Analytics . We may use Technologies and other third-party tools to process analytics information on our Services. Some of our analytics partners include Google Analytics. For more information,please visit Google Analytics' Privacy Policy . To learn more about how to opt-out of Google Analytics' use of your information, please click here . Social Media Platforms . Our Services may contain social media buttons such as Twitter, Facebook, GitHub, Instagram, and Twitch (that might include widgets such as the "share this" button or other interactive mini programs). These features may collect your IP address, which page you are visiting on our Services, and may set a cookie to enable the feature to function properly. Your interactions with these platforms are governed by the privacy policy of the company providing it. See the "Your Privacy Choices and Rights" section below to understand your choices regarding these Technologies. C. Information Collected from Other Sources We may obtain information about you from other sources, including through third-party services and organizations. For example, if you access our Services through a third-party application, such as an app store, a third-party login service (e.g., through Twitter, Apple, or GitHub), or a social networking site, we may collect whatever information about you from that third-party application that you have made available via your privacy settings. 3. HOW WE USE YOUR INFORMATION We use your information for a variety of business purposes, including to provide our Services, for administrative purposes, and to market our products and Services, as described below. A. Provide Our Services We use your information to fulfill our contract with you and provide you with our Services, such as: Managing your information and accounts; Providing access to certain areas, functionalities, and features of our Services; Answering requests for customer or technical support; Communicating with you about your account, activities on our Services, and policy changes; Processing your financial information and other payment methods for products or Services purchased; Processing applications if you apply for a job we post on our Services; and Allowing you to register for events. B. Administrative Purposes We use your information for various administrative purposes, such as: Pursuing our legitimate interests such as direct marketing, research and development (including marketing research), network and information security, and fraud prevention; Detecting security incidents, protecting against malicious, deceptive, fraudulent or illegal activity, and prosecuting those responsible for that activity; Measuring interest and engagement in our Services, including for usage-based billing purposes; Short-term, transient use, such as contextual customization of ads; Improving, optimizing, upgrading, or enhancing our Services; Developing new products and Services; Ensuring internal quality control and safety; Authenticating and verifying individual identities, including requests to exercise your rights under this policy; Debugging to identify and repair errors with our Services; Auditing relating to interactions, transactions and other compliance activities; Enforcing our agreements and policies; and Complying with our legal obligations. C. Marketing and Advertising our Products and Services We may use your personal information to tailor and provide you with content and advertisements for our Services, such as via email. If you have any questions about our marketing practices, you may contact us at any time as set forth in the "Contact Us" section below. D. Other Purposes We also use your information for other purposes as requested by you or as permitted by applicable law. Consent . We may use personal information for other purposes that are clearly disclosed to you at the time you provide personal information or with your consent. Automated Decision Making. We may engage in automated decision making, including profiling, such as to suggest topics or other Users for you to follow. DEV's processing of your personal information will not result in a decision based solely on automated processing that significantly affects you unless such a decision is necessary as part of a contract we have with you, we have your consent, or we are permitted by law to engage in such automated decision making. If you have questions about our automated decision making, you may contact us as set forth in the "Contact Us" section below. De-identified and Aggregated Information . We may use personal information and other information about you to create de-identified and/or aggregated information, such as de-identified demographic information, information about the device from which you access our Services, or other analyses we create. For example, we may collect system-wide information to ensure availability of the platform, or measure aggregate data trends to analyze and optimize our Services. Share Content with Friends or Colleagues. Our Services may offer various tools and functionalities. For example, we may allow you to provide information about your friends through our referral services. Our referral services may allow you to forward or share certain content with a friend or colleague, such as an email inviting your friend to use our Services. Please only share with us contact information of people with whom you have a relationship (e.g., relative, friend neighbor, or co-worker). 4. HOW WE DISCLOSE YOUR INFORMATION We disclose your information to third parties for a variety of business purposes, including to provide our Services, to protect us or others, or in the event of a major business transaction such as a merger, sale, or asset transfer, as described below. A. Disclosures to Provide our Services The categories of third parties with whom we may share your information are described below. Service Providers . We may share your personal information with our third-party service providers who use that information to help us provide our Services. This includes service providers that provide us with IT support, hosting, payment processing, customer service, and related services. For example, our Shop site is run by Shopify, who handle your shipping details on our behalf. Business Partners . We may share your personal information with business partners to provide you with a product or service you have requested. We may also share your personal information to business partners with whom we jointly offer products or services. Other Users . As described above in the "Personal Information We Collect" section of this Privacy Policy, our Service allows Users to share their profiles, and any posts, chats, etc. with other Users and with the general public, including to those who do not use our Services. APIs/SDKs . We may use third-party Application Program Interfaces ("APIs") and Software Development Kits ("SDKs") as part of the functionality of our Services. For more information about our use of APIs and SDKs, please contact us as set forth in the "Contact Us" section below. B . Disclosures to Protect Us or Others We may access, preserve, and disclose any information we store associated with you to external parties if we, in good faith, believe doing so is required or appropriate to: comply with law enforcement or national security requests and legal process, such as a court order or subpoena; protect your, our, or others' rights, property, or safety; enforce our policies or contracts; collect amounts owed to us; or assist with an investigation or prosecution of suspected or actual illegal activity. C. Disclosure in the Event of Merger, Sale, or Other Asset Transfers If we are involved in a merger, acquisition, financing due diligence, reorganization, bankruptcy, receivership, purchase or sale of assets, or transition of service to another provider, your information may be sold or transferred as part of such a transaction, as permitted by law and/or contract. 5. YOUR PRIVACY CHOICES AND RIGHTS Your Privacy Choices . The privacy choices you may have about your personal information are determined by applicable law and are described below. Email Communications . If you receive an unwanted email from us, you can use the unsubscribe link found at the bottom of the email to opt out of receiving future emails. Note that you will continue to receive transaction-related emails regarding products or Services you have requested. We may also send you certain non-promotional communications regarding us and our Services, and you will not be able to opt out of those communications (e.g., communications regarding our Services or updates to our Terms or this Privacy Policy). Mobile Devices . We may send you push notifications through our mobile application. You may opt out from receiving these push notifications by changing the settings on your mobile device. "Do Not Track." Do Not Track (" DNT ") is a privacy preference that users can set in certain web browsers. Please note that we do not respond to or honor DNT signals or similar mechanisms transmitted by web browsers. Cookies and Interest-Based Advertising . You may stop or restrict the placement of Technologies on your device or remove them by adjusting your preferences as your browser or device permits. However, if you adjust your preferences, our Services may not work properly. Please note that cookie-based opt-outs are not effective on mobile applications. Please note you must separately opt out in each browser and on each device. Your Privacy Rights . In accordance with applicable law, you may have the right to: Access Personal Information about you, including: (i) confirming whether we are processing your personal information; (ii) obtaining access to or a copy of your personal information; Request Correction of your personal information where it is inaccurate, incomplete or outdated. In some cases, we may provide self-service tools that enable you to update your personal information; Request Deletion, Anonymization or Blocking of your personal information when processing is based on your consent or when processing is unnecessary, excessive or noncompliant; Request Restriction of or Object to our processing of your personal information when processing is noncompliant; Withdraw Your Consent to our processing of your personal information. If you refrain from providing personal information or withdraw your consent to processing, some features of our Service may not be available; Request Data Portability and Receive an Electronic Copy of Personal Information that You Have Provided to Us; Be Informed about third parties with which your personal information has been shared; and Request the Review of Decisions Taken Exclusively Based on Automated Processing if such decisions could affect your data subject rights. If you would like to exercise any of these rights, please contact us as set forth in "Contact Us" below. We will process such requests in accordance with applicable laws. 6. INTERNATIONAL DATA TRANSFERS All information processed by us may be transferred, processed, and stored anywhere in the world, including, but not limited to, the United States or other countries, which may have data protection laws that are different from the laws where you live. We always strive to safeguard your information consistent with the requirements of applicable laws. 7. RETENTION OF PERSONAL INFORMATION We store the personal information we collect as described in this Privacy Policy for as long as you use our Services or as necessary: to fulfill the purpose or purposes for which it was collected, to provide our Services, to resolve disputes, to establish legal defenses, to conduct audits, to pursue legitimate business purposes, to enforce our agreements, and to comply with applicable laws.  8. SUPPLEMENTAL DISCLOSURES FOR CALIFORNIA RESIDENTS Refer-a-Friend and Similar Incentive Programs . As described above in the How We Use Your Personal Information section ("Share Content with Friends or Colleagues" subsection), we may offer referral programs or other incentivized data collection programs. For example, we may offer incentives to you such as discounts or promotional items or credit in connection with these programs, wherein you provide your personal information in exchange for a reward, or provide personal information regarding your friends or colleagues (such as their email address) and receive rewards when they sign up to use our Services. (The referred party may also receive rewards for signing up via your referral.) These programs are entirely voluntary and allow us to grow our business and provide additional benefits to you. The value of your data to us depends on how you ultimately use our Services, whereas the value of the referred party's data to us depends on whether the referred party ultimately becomes a User or Forem Operator and uses our Services. Said value will be reflected in the incentive offered in connection with each program. Accessibility . This Privacy Policy uses industry-standard technologies and was developed in line with the World Wide Web Consortium's Web Content Accessibility Guidelines, version 2.1* . * If you wish to print this policy, please do so from your web browser or by saving the page as a PDF. California Shine the Light . The California "Shine the Light" law permits users who are California residents to request and obtain from us once a year, free of charge, a list of the third parties to whom we have disclosed their personal information (if any) for their direct marketing purposes in the prior calendar year, as well as the type of personal information disclosed to those parties. Right for Minors to Remove Posted Content . Where required by law, California residents under the age of 18 may request to have their posted content or information removed from the publicly-viewable portions of the Services by contacting us directly as set forth in the "Contact Us" section below or by logging into their account and removing the content or information using our self-service tools. 9. SUPPLEMENTAL NOTICE FOR NEVADA RESIDENTS If you are a resident of Nevada, you have the right to opt-out of the sale of certain Personal Information to third parties who intend to license or sell that Personal Information. You can exercise this right by contacting us as set forth in the "Contact Us\" section below with the subject line "Nevada Do Not Sell Request" and providing us with your name and the email address associated with your account. Please note that we do not currently sell your Personal Information as sales are defined in Nevada Revised Statutes Chapter 603A. If you have any questions, please contact us as set forth below. 10. CHILDREN'S INFORMATION The Services are not directed to children under 13 (or other age as required by local law), and we do not knowingly collect personal information from children. If you are a parent or guardian and believe your child has uploaded personal information to our site without your consent, you may contact us as described in the "Contact Us" section below. If we become aware that a child has provided us with personal information in violation of applicable law, we will delete any personal information we have collected, unless we have a legal obligation to keep it, and terminate the child's account if applicable. 11. OTHER PROVISIONS Third-Party Websites or Applications . The Services may contain links to other websites or applications, and other websites or applications may reference or link to our Services. These third-party services are not controlled by us. We encourage our users to read the privacy policies of each website and application with which they interact. We do not endorse, screen or approve, and are not responsible for, the privacy practices or content of such other websites or applications. Providing personal information to third-party websites or applications is at your own risk. Changes to Our Privacy Policy . We may revise this Privacy Policy from time to time in our sole discretion. If there are any material changes to this Privacy Policy, we will notify you as required by applicable law. You understand and agree that you will be deemed to have accepted the updated Privacy Policy if you continue to use our Services after the new Privacy Policy takes effect. 12. CONTACT US If you have any questions about our privacy practices or this Privacy Policy, or to exercise your rights as detailed in this Privacy Policy, please contact us at: support@dev.to . 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV Parenting — A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Home About Contact Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . Parenting © 2016 - 2026. Navigating the chaos and joy of parenting. Log in Create account
2026-01-13T08:47:43
https://golf.forem.com/t/seniorgolf
Seniorgolf - Golf Forem Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account Golf Forem Close # seniorgolf Follow Hide Golf for the senior community, focusing on adapted play and gear Create Post Posts Left menu 👋 Sign in for the ability to sort posts by relevant , latest , or top . Right menu loading... 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV Golf Forem — A community of golfers and golfing enthusiasts Home About Contact Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . Golf Forem © 2016 - 2026. Where hackers, sticks, weekend warriors, pros, architects and wannabes come together Log in Create account
2026-01-13T08:47:43
https://share.transistor.fm/s/b094bce2
APIs You Won't Hate | Webhook can't tell you nothin' APIs You Won't Hate 40 ? 30 : 10)" @keyup.document.left="seekBySeconds(-10)" @keyup.document.m="toggleMute" @keyup.document.s="toggleSpeed" @play="play(false, true)" @loadedmetadata="handleLoadedMetadata" @pause="pause(true)" preload="none" @timejump.window="seekToSeconds($event.detail.timestamp); shareTimeFormatted = formatTime($event.detail.timestamp)" > Trailer Bonus 10 40 ? 30 : 10)" class="seek-seconds-button" > 40 ? 30 : 10"> Subscribe Share More Info Download More episodes Subscribe newValue ? setTimeout(() => copied = false, 2500) : null)" @click="copied = copyFeedUrl()" class="form-input-group" > Copied to clipboard Apple Podcasts Spotify Pocket Casts Overcast Castro YouTube Goodpods Goodpods Metacast Amazon Music Pandora CastBox Anghami Anghami Fountain JioSaavn Gaana iHeartRadio TuneIn TuneIn Player FM SoundCloud SoundCloud Deezer Podcast Addict Share newValue ? setTimeout(() => copied = false, 2500) : null)" @click="copied = copyShareUrl()" class="form-input-group" > Share Copied to clipboard newValue ? setTimeout(() => copied = false, 2500) : null)" @click="copied = copyEmbedHtml()" class="form-input-group" > Embed Copied to clipboard Start at Trailer Bonus Full Transcript View the website updateDescriptionLinks($el))" class="episode-description" > Chapters November 22, 2021 by APIs You Won't Hate View the website Listen On Apple Podcasts Listen On Spotify Listen On YouTube RSS Feed Subscribe RSS Feed RSS Feed URL Copied! Follow Episode Details Matt, Phil, and Mike chat about naming APIs - how does "english" grammar factor in to planning the structure of an API? Our discussion is coloured -- err, colored by our own experiences... what do you think? Show Notes Should endpoints be named after the action, like /getThing /updateThing or after the resource with different HTTP verbs, like GET /things POST /things? What are the reasons to go with one or the other? Async operations with REST APIs - how do you do it? long callbacks, short callbacks polling pubsub What's the point of a Webhook? "Working with Webhooks" Lorna Mitchell @ PHP Barcelona 2019 link Creators and Guests Host Mike Bifulco Cofounder and host of APIs You Won't Hate. Blogs at https://mikebifulco.com Into 🚴‍♀️, espresso ☕, looking after 🌍. ex @Stripe @Google @Microsoft What is APIs You Won't Hate? A no-nonsense (well, some-nonsense) podcast about API design & development, new features in the world of HTTP, service-orientated architecture, microservices, and probably bikes. All audio, artwork, episode descriptions and notes are property of APIs You Won't Hate, for APIs You Won't Hate, and published with permission by Transistor, Inc. Broadcast by
2026-01-13T08:47:43
https://golf.forem.com/subforems
Subforems - Golf Forem Forem Feed Follow new Subforems to improve your feed DEV Community Follow A space to discuss and keep up software development and manage your software career Future Follow News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Open Forem Follow A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Gamers Forem Follow An inclusive community for gaming enthusiasts Music Forem Follow From composing and gigging to gear, hot music takes, and everything in between. Vibe Coding Forem Follow Discussing AI software development, and showing off what we're building. Popcorn Movies and TV Follow Movie and TV enthusiasm, criticism and everything in-between. DUMB DEV Community Follow Memes and software development shitposting Design Community Follow Web design, graphic design and everything in-between Security Forem Follow Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Golf Forem Follow A community of golfers and golfing enthusiasts Crypto Forem Follow A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Parenting Follow A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Forem Core Follow Discussing the core forem open source software project — features, bugs, performance, self-hosting. Maker Forem Follow A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. HMPL.js Forem Follow For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Dropdown menu Dropdown menu Skip to content Navigation menu Search Powered by Algolia Search Log in Create account Golf Forem Close Subforems DEV Community A space to discuss and keep up software development and manage your software career Follow Future News and discussion of science and technology such as AI, VR, cryptocurrency, quantum computing, and more. Follow Open Forem A general discussion space for the Forem community. If it doesn't have a home elsewhere, it belongs here Follow Gamers Forem An inclusive community for gaming enthusiasts Follow Music Forem From composing and gigging to gear, hot music takes, and everything in between. Follow Vibe Coding Forem Discussing AI software development, and showing off what we're building. Follow Popcorn Movies and TV Movie and TV enthusiasm, criticism and everything in-between. Follow DUMB DEV Community Memes and software development shitposting Follow Design Community Web design, graphic design and everything in-between Follow Security Forem Your central hub for all things security. From ethical hacking and CTFs to GRC and career development, for beginners and pros alike Follow Golf Forem A community of golfers and golfing enthusiasts Follow Crypto Forem A collaborative community for all things Crypto—from Bitcoin to protocol development and DeFi to NFTs and market analysis. Follow Parenting A place for parents to the share the joys, challenges, and wisdom that come from raising kids. We're here for them and for each other. Follow Forem Core Discussing the core forem open source software project — features, bugs, performance, self-hosting. Follow Maker Forem A community for makers, hobbyists, and professionals to discuss Arduino, Raspberry Pi, 3D printing, and much more. Follow HMPL.js Forem For developers using HMPL.js to build fast, lightweight web apps. A space to share projects, ask questions, and discuss server-driven templating Follow 💎 DEV Diamond Sponsors Thank you to our Diamond Sponsors for supporting the DEV Community Google AI is the official AI Model and Platform Partner of DEV Neon is the official database partner of DEV Algolia is the official search partner of DEV Golf Forem — A community of golfers and golfing enthusiasts Home About Contact Code of Conduct Privacy Policy Terms of Use Built on Forem — the open source software that powers DEV and other inclusive communities. Made with love and Ruby on Rails . Golf Forem © 2016 - 2026. Where hackers, sticks, weekend warriors, pros, architects and wannabes come together Log in Create account
2026-01-13T08:47:43
https://docs.python.org/3/license.html
History and License — Python 3.14.2 documentation Theme Auto Light Dark Table of Contents History and License History of the software Terms and conditions for accessing or otherwise using Python PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1 CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 ZERO-CLAUSE BSD LICENSE FOR CODE IN THE PYTHON DOCUMENTATION Licenses and Acknowledgements for Incorporated Software Mersenne Twister Sockets Asynchronous socket services Cookie management Execution tracing UUencode and UUdecode functions XML Remote Procedure Calls test_epoll Select kqueue SipHash24 strtod and dtoa OpenSSL expat libffi zlib cfuhash libmpdec W3C C14N test suite mimalloc asyncio Global Unbounded Sequences (GUS) Zstandard bindings Previous topic Copyright This page Report a bug Show source Navigation index modules | previous | Python » 3.14.2 Documentation » History and License | Theme Auto Light Dark | History and License ¶ History of the software ¶ Python was created in the early 1990s by Guido van Rossum at Stichting Mathematisch Centrum (CWI, see https://www.cwi.nl ) in the Netherlands as a successor of a language called ABC. Guido remains Python’s principal author, although it includes many contributions from others. In 1995, Guido continued his work on Python at the Corporation for National Research Initiatives (CNRI, see https://www.cnri.reston.va.us ) in Reston, Virginia where he released several versions of the software. In May 2000, Guido and the Python core development team moved to BeOpen.com to form the BeOpen PythonLabs team. In October of the same year, the PythonLabs team moved to Digital Creations, which became Zope Corporation. In 2001, the Python Software Foundation (PSF, see https://www.python.org/psf/ ) was formed, a non-profit organization created specifically to own Python-related Intellectual Property. Zope Corporation was a sponsoring member of the PSF. All Python releases are Open Source (see https://opensource.org for the Open Source Definition). Historically, most, but not all, Python releases have also been GPL-compatible; the table below summarizes the various releases. Release Derived from Year Owner GPL-compatible? (1) 0.9.0 thru 1.2 n/a 1991-1995 CWI yes 1.3 thru 1.5.2 1.2 1995-1999 CNRI yes 1.6 1.5.2 2000 CNRI no 2.0 1.6 2000 BeOpen.com no 1.6.1 1.6 2001 CNRI yes (2) 2.1 2.0+1.6.1 2001 PSF no 2.0.1 2.0+1.6.1 2001 PSF yes 2.1.1 2.1+2.0.1 2001 PSF yes 2.1.2 2.1.1 2002 PSF yes 2.1.3 2.1.2 2002 PSF yes 2.2 and above 2.1.1 2001-now PSF yes Note GPL-compatible doesn’t mean that we’re distributing Python under the GPL. All Python licenses, unlike the GPL, let you distribute a modified version without making your changes open source. The GPL-compatible licenses make it possible to combine Python with other software that is released under the GPL; the others don’t. According to Richard Stallman, 1.6.1 is not GPL-compatible, because its license has a choice of law clause. According to CNRI, however, Stallman’s lawyer has told CNRI’s lawyer that 1.6.1 is “not incompatible” with the GPL. Thanks to the many outside volunteers who have worked under Guido’s direction to make these releases possible. Terms and conditions for accessing or otherwise using Python ¶ Python software and documentation are licensed under the Python Software Foundation License Version 2. Starting with Python 3.8.6, examples, recipes, and other code in the documentation are dual licensed under the PSF License Version 2 and the Zero-Clause BSD license . Some software incorporated into Python is under different licenses. The licenses are listed with code falling under that license. See Licenses and Acknowledgements for Incorporated Software for an incomplete list of these licenses. PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 ¶ 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and the Individual or Organization ("Licensee") accessing and otherwise using this software ("Python") in source or binary form and its associated documentation. 2. Subject to the terms and conditions of this License Agreement, PSF hereby grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python alone or in any derivative version, provided, however, that PSF's License Agreement and PSF's notice of copyright, i.e., "Copyright © 2001 Python Software Foundation; All Rights Reserved" are retained in Python alone or in any derivative version prepared by Licensee. 3. In the event Licensee prepares a derivative work that is based on or incorporates Python or any part thereof, and wants to make the derivative work available to others as provided herein, then Licensee hereby agrees to include in any such work a brief summary of the changes made to Python. 4. PSF is making Python available to Licensee on an "AS IS" basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. 6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. 7. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between PSF and Licensee. This License Agreement does not grant permission to use PSF trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. 8. By copying, installing or otherwise using Python, Licensee agrees to be bound by the terms and conditions of this License Agreement. BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 ¶ BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the Individual or Organization ("Licensee") accessing and otherwise using this software in source or binary form and its associated documentation ("the Software"). 2. Subject to the terms and conditions of this BeOpen Python License Agreement, BeOpen hereby grants Licensee a non-exclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use the Software alone or in any derivative version, provided, however, that the BeOpen Python License is retained in the Software, alone or in any derivative version prepared by Licensee. 3. BeOpen is making the Software available to Licensee on an "AS IS" basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. 4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. 5. This License Agreement will automatically terminate upon a material breach of its terms and conditions. 6. This License Agreement shall be governed by and interpreted in all respects by the law of the State of California, excluding conflict of law provisions. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between BeOpen and Licensee. This License Agreement does not grant permission to use BeOpen trademarks or trade names in a trademark sense to endorse or promote products or services of Licensee, or any third party. As an exception, the "BeOpen Python" logos available at http://www.pythonlabs.com/logos.html may be used according to the permissions granted on that web page. 7. By copying, installing or otherwise using the software, Licensee agrees to be bound by the terms and conditions of this License Agreement. CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1 ¶ 1. This LICENSE AGREEMENT is between the Corporation for National Research Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191 ("CNRI"), and the Individual or Organization ("Licensee") accessing and otherwise using Python 1.6.1 software in source or binary form and its associated documentation. 2. Subject to the terms and conditions of this License Agreement, CNRI hereby grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python 1.6.1 alone or in any derivative version, provided, however, that CNRI's License Agreement and CNRI's notice of copyright, i.e., "Copyright © 1995-2001 Corporation for National Research Initiatives; All Rights Reserved" are retained in Python 1.6.1 alone or in any derivative version prepared by Licensee. Alternately, in lieu of CNRI's License Agreement, Licensee may substitute the following text (omitting the quotes): "Python 1.6.1 is made available subject to the terms and conditions in CNRI's License Agreement. This Agreement together with Python 1.6.1 may be located on the internet using the following unique, persistent identifier (known as a handle): 1895.22/1013. This Agreement may also be obtained from a proxy server on the internet using the following URL: http://hdl.handle.net/1895.22/1013". 3. In the event Licensee prepares a derivative work that is based on or incorporates Python 1.6.1 or any part thereof, and wants to make the derivative work available to others as provided herein, then Licensee hereby agrees to include in any such work a brief summary of the changes made to Python 1.6.1. 4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. 5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. 6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. 7. This License Agreement shall be governed by the federal intellectual property law of the United States, including without limitation the federal copyright law, and, to the extent such U.S. federal law does not apply, by the law of the Commonwealth of Virginia, excluding Virginia's conflict of law provisions. Notwithstanding the foregoing, with regard to derivative works based on Python 1.6.1 that incorporate non-separable material that was previously distributed under the GNU General Public License (GPL), the law of the Commonwealth of Virginia shall govern this License Agreement only as to issues arising under or with respect to Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between CNRI and Licensee. This License Agreement does not grant permission to use CNRI trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. 8. By clicking on the "ACCEPT" button where indicated, or by copying, installing or otherwise using Python 1.6.1, Licensee agrees to be bound by the terms and conditions of this License Agreement. CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 ¶ Copyright © 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands. All rights reserved. Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Stichting Mathematisch Centrum or CWI not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ZERO-CLAUSE BSD LICENSE FOR CODE IN THE PYTHON DOCUMENTATION ¶ Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. Licenses and Acknowledgements for Incorporated Software ¶ This section is an incomplete, but growing list of licenses and acknowledgements for third-party software incorporated in the Python distribution. Mersenne Twister ¶ The _random C extension underlying the random module includes code based on a download from http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/emt19937ar.html . The following are the verbatim comments from the original code: A C-program for MT19937, with initialization improved 2002/1/26. Coded by Takuji Nishimura and Makoto Matsumoto. Before using, initialize the state by using init_genrand(seed) or init_by_array(init_key, key_length). Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura, All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The names of its contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Any feedback is very welcome. http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html email: m-mat @ math.sci.hiroshima-u.ac.jp (remove space) Sockets ¶ The socket module uses the functions, getaddrinfo() , and getnameinfo() , which are coded in separate source files from the WIDE Project, https://www.wide.ad.jp/ . Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the project nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Asynchronous socket services ¶ The test.support.asynchat and test.support.asyncore modules contain the following notice: Copyright 1996 by Sam Rushing All Rights Reserved Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Sam Rushing not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. SAM RUSHING DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL SAM RUSHING BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. Cookie management ¶ The http.cookies module contains the following notice: Copyright 2000 by Timothy O'Malley <timo@alum.mit.edu> All Rights Reserved Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Timothy O'Malley not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. Timothy O'Malley DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL Timothy O'Malley BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. Execution tracing ¶ The trace module contains the following notice: portions copyright 2001, Autonomous Zones Industries, Inc., all rights... err... reserved and offered to the public under the terms of the Python 2.2 license. Author: Zooko O'Whielacronx http://zooko.com/ mailto:zooko@zooko.com Copyright 2000, Mojam Media, Inc., all rights reserved. Author: Skip Montanaro Copyright 1999, Bioreason, Inc., all rights reserved. Author: Andrew Dalke Copyright 1995-1997, Automatrix, Inc., all rights reserved. Author: Skip Montanaro Copyright 1991-1995, Stichting Mathematisch Centrum, all rights reserved. Permission to use, copy, modify, and distribute this Python software and its associated documentation for any purpose without fee is hereby granted, provided that the above copyright notice appears in all copies, and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of neither Automatrix, Bioreason or Mojam Media be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. UUencode and UUdecode functions ¶ The uu codec contains the following notice: Copyright 1994 by Lance Ellinghouse Cathedral City, California Republic, United States of America. All Rights Reserved Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Lance Ellinghouse not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. LANCE ELLINGHOUSE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL LANCE ELLINGHOUSE CENTRUM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. Modified by Jack Jansen, CWI, July 1995: - Use binascii module to do the actual line-by-line conversion between ascii and binary. This results in a 1000-fold speedup. The C version is still 5 times faster, though. - Arguments more compliant with Python standard XML Remote Procedure Calls ¶ The xmlrpc.client module contains the following notice: The XML-RPC client interface is Copyright (c) 1999-2002 by Secret Labs AB Copyright (c) 1999-2002 by Fredrik Lundh By obtaining, using, and/or copying this software and/or its associated documentation, you agree that you have read, understood, and will comply with the following terms and conditions: Permission to use, copy, modify, and distribute this software and its associated documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies, and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Secret Labs AB or the author not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. SECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANT- ABILITY AND FITNESS. IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. test_epoll ¶ The test.test_epoll module contains the following notice: Copyright (c) 2001-2006 Twisted Matrix Laboratories. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Select kqueue ¶ The select module contains the following notice for the kqueue interface: Copyright (c) 2000 Doug White, 2006 James Knight, 2007 Christian Heimes All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. SipHash24 ¶ The file Python/pyhash.c contains Marek Majkowski’ implementation of Dan Bernstein’s SipHash24 algorithm. It contains the following note: <MIT License> Copyright (c) 2013 Marek Majkowski <marek@popcount.org> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. </MIT License> Original location: https://github.com/majek/csiphash/ Solution inspired by code from: Samuel Neves (supercop/crypto_auth/siphash24/little) djb (supercop/crypto_auth/siphash24/little2) Jean-Philippe Aumasson (https://131002.net/siphash/siphash24.c) strtod and dtoa ¶ The file Python/dtoa.c , which supplies C functions dtoa and strtod for conversion of C doubles to and from strings, is derived from the file of the same name by David M. Gay, currently available from https://web.archive.org/web/20220517033456/http://www.netlib.org/fp/dtoa.c . The original file, as retrieved on March 16, 2009, contains the following copyright and licensing notice: /**************************************************************** * * The author of this software is David M. Gay. * * Copyright (c) 1991, 2000, 2001 by Lucent Technologies. * * Permission to use, copy, modify, and distribute this software for any * purpose without fee is hereby granted, provided that this entire notice * is included in all copies of any software which is or includes a copy * or modification of this software and in all copies of the supporting * documentation for such software. * * THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED * WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY * OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. * ***************************************************************/ OpenSSL ¶ The modules hashlib , posix and ssl use the OpenSSL library for added performance if made available by the operating system. Additionally, the Windows and macOS installers for Python may include a copy of the OpenSSL libraries, so we include a copy of the OpenSSL license here. For the OpenSSL 3.0 release, and later releases derived from that, the Apache License v2 applies: Apache License Version 2.0, January 2004 https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS expat ¶ The pyexpat extension is built using an included copy of the expat sources unless the build is configured --with-system-expat : Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. libffi ¶ The _ctypes C extension underlying the ctypes module is built using an included copy of the libffi sources unless the build is configured --with-system-libffi : Copyright (c) 1996-2008 Red Hat, Inc and others. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. zlib ¶ The zlib extension is built using an included copy of the zlib sources if the zlib version found on the system is too old to be used for the build: Copyright (C) 1995-2011 Jean-loup Gailly and Mark Adler This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. Jean-loup Gailly Mark Adler jloup@gzip.org madler@alumni.caltech.edu cfuhash ¶ The implementation of the hash table used by the tracemalloc is based on the cfuhash project: Copyright (c) 2005 Don Owens All rights reserved. This code is released under the BSD license: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. libmpdec ¶ The _decimal C extension underlying the decimal module is built using an included copy of the libmpdec library unless the build is configured --with-system-libmpdec : Copyright (c) 2008-2020 Stefan Krah. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. W3C C14N test suite ¶ The C14N 2.0 test suite in the test package ( Lib/test/xmltestdata/c14n-20/ ) was retrieved from the W3C website at https://www.w3.org/TR/xml-c14n2-testcases/ and is distributed under the 3-clause BSD license: Copyright (c) 2013 W3C(R) (MIT, ERCIM, Keio, Beihang), All Rights Reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of works must retain the original copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the original copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the W3C nor the names of its contributors may be used to endorse or promote products derived from this work without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. mimalloc ¶ MIT License: Copyright (c) 2018-2021 Microsoft Corporation, Daan Leijen Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. asyncio ¶ Parts of the asyncio module are incorporated from uvloop 0.16 , which is distributed under the MIT license: Copyright (c) 2015-2021 MagicStack Inc. http://magic.io Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Global Unbounded Sequences (GUS) ¶ The file Python/qsbr.c is adapted from FreeBSD’s “Global Unbounded Sequences” safe memory reclamation scheme in subr_smr.c . The file is distributed under the 2-Clause BSD License: Copyright (c) 2019,2020 Jeffrey Roberson <jeff@FreeBSD.org> Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following con
2026-01-13T08:47:43