Feeds

Steinar H. Gunderson: Performance confidence intervals

Planet Debian - Fri, 2024-08-09 12:30

I care about performance, and I care about benchmarking. So it really annoys me when people throw out stuff like “this is 0.3% faster so it's a win”, without saying anything about the uncertainty in their benchmark estimates.

Turns out this is actually a fairly hard problem; since performance is essentially sum(before) / sum(after) and dividing anything by anything is rarely well-behaved in statistics. So the best I see is usually something like “worst and best we've seen”, which isn't… all that useful?

So at work, I coded up an implementation of the statistical bootstrap, based on some R code I've used for a while. It gives reasonable 95% and 99% confidence intervals of unpaired data, without relying on assumptions of normality (including via the central limit theorem); here's a set of benchmarks I ran recently over an optimization, as an example:

bigscreen:~/chromium/src> ./out/Default/pinpoint_ci ~/1047b79fc10000.csv Canvas Arcs [ -0.1%, +0.9%] Canvas Lines [ -0.6%, +0.4%] 👎 Design [ -1.5%, -0.2%] Images [ -1.3%, +0.8%] 👍 Leaves [ +0.6%, +1.3%] 👍 Multiply [ +0.7%, +1.3%] Paths [ -0.2%, +0.5%] 👍 Suits [ +1.4%, +3.2%] 👍 motionmark_ramp_composite [ +0.2%, +0.7%]

The program itself is geared towards interpreting a Chromium-specific output format (it is not a test runner), but the actual statistics code is encapsulated in a class with no other dependencies than a PRNG, a simple sorter and a math library, so it should be simple to port to other languages and environments. Like the rest of Chromium, it is liberally licensed.

You can find the code here. Happy benchmarking!

Categories: FLOSS Project Planets

Ruslan Spivak: 7 Things That Helped Me Grow as a Software Engineer

Planet Python - Fri, 2024-08-09 12:26

Hi everyone,

Growth as a software engineer is an ongoing journey. Looking back, a few key principles helped me progress during the early days of my career. These lessons shaped my path, and many of them continue to guide me today, even though I’m no longer an individual contributor:

  1. Drive

    Ambition isn’t a skill — it’s a will. You either have it or you don’t. To grow, you need that inner drive pushing you forward. Sometimes it’s a conscious choice, and other times, you just can’t help it — something inside you refuses to stand still, driving you to keep learning and moving forward. I remember diving into Python and CI/CD back in the day, teaching it even when I was still learning myself.

  2. Delivering results

    You might have gaps in your technical or soft skills, but if you consistently deliver, that goes a long way.  I always gave extra effort (probably leaning a bit on the workaholic side), especially on projects that excited me. Delivering results also helps you build your reputation and credibility — a win-win.

  3. Choosing the right projects

    Whenever possible, work on projects that have the highest impact for the company and that interest you personally. There are two benefits: high impact projects give you the visibility and future opportunities you need, and personal interest helps you push forward when the going gets tough, and the going will get tough at some point — pretty much guaranteed.

  4. Craft

    Delivering high impact with speed and quality requires deep expertise in your field. Which, in turn, requires understanding what’s going on under the hood. Expanding the breadth of your knowledge while diving deep into specific technologies (the so-called T-shaped expertise) served me well.

  5. Teaching

    Teaching is a great way to solidify your knowledge and identify gaps in your understanding. Teaching also boosts your visibility and can establish you as a go-to person. Sharing what you know helps others and also helps you deepen your understanding. Personally, I view well-done code reviews as a form of teaching too.

  6. Tolerance for conflict

    Criticism comes with the territory. Sometimes it’s called feedback, and other times it’s just plain criticism. I took many classes at the University of Hard Knocks on this one: I missed deadlines, over-engineered technical solutions, cut corners, and delivered feedback in a less-than-perfect way at that stage of my career. My advice: start building a thick skin sooner, but be smart about it. Know when to stand your ground and when to let things slide. Above all, don’t be a jerk.

  7. Learning how business works

    This one’s underrated, and it took me a long, long time to learn. I wish I’d figured it out sooner, but better late than never.  While you can succeed at a certain level without focusing on this, understanding how the business works helps you identify high-impact projects and stand out as a valued partner — not just another tech person from a cost center.

As the saying goes, “The only way to do great work is to love what you do.” I’d add — love the challenges, love the process, and love the growth that comes with them.

Stay curious,

Ruslan

Categories: FLOSS Project Planets

Wim Leers: XB week 11: live updates

Planet Drupal - Fri, 2024-08-09 12:20

This week started with undoing the horrors that y’all were subjected to last week: TwoTerribleTextAreasWidget featured prominently. The follow-up that I mentioned landed (Ben “bnjmnm” Mullins and I collaborated on it), which with a +110,-245 diff resulted in something that still is nowhere near a final UX, but is starting to look reasonable.

The evolved component instance props form: much simpler (it looked Frankensteinish a week ago!), by using the appropriate field widgets directly. Issue #3461422.

(Next up on that front: #3462310: Component props form: make form elements match design.)

That right sidebar is overlaid on top of the canvas, which also saw a big leap forward this week — thanks to Jesse “jessebaker” Baker, Harumi “hooroomoo” Jang, Ben “bnjmnm” Mullins and Lauri — a true team effort:

Component states in action: hover and active/focus. Issue #3460783, image by Jesse.

The images you saw last week showed actual component previews … but we cheated by using inline styles :P.
This week, Ben rectified that: CSS/JS assets are now loaded inside the preview <iframe>s.

But I saved the best for last: the last MR to land this week was Ben’s Redux integration issue … which brought with it: live updates of the component’s preview:

Live updating of component previews while the props are edited in the right sidebar! Issue #3462441, image by Ben.

This currently always requires a round trip to the server, but in many cases we’d actually be able to update the preview without a round trip (better for UX obviously!). See #3453690: [META] Real-time preview: supporting back-end infrastructure, where Lee “larowlan” Rowlands intends to work on parsing a Single-Directory Component’s Twig template into an Abstract syntax tree, which would allow eliminating that round trip in typical cases.1

I omitted less interesting MRs, but there’s one more issue that landed that deserves a mention: Ted “tedbow” Bowman and Ben landed CI: use a snapshot of core’s phpcs rules as changes in Drupal core will break MRs with limited benefit to module development, which was a very welcome addition: recently, Drupal 11 development has picked up steam … and hence several coding standards were added to Drupal core. Result: XBs phpcs CI job started failing overnight, with zero changes on our end. Doing the right thing can be painful! So, Ted and Ben changed that so we’d be notified instead: far less disruptive.

In progress/where to contribute

P.S.: issues that were picked up by somebody do not exclude you from contributing too — as you can see above, almost every issue is a multi-person effort!

Missed a prior week? See all posts tagged Experience Builder.

Goal: make it possible to follow high-level progress by reading ~5 minutes/week. I hope this empowers more people to contribute when their unique skills can best be put to use!

For more detail, join the #experience-builder Slack channel. Check out the pinned items at the top!

Week 11 was July 22–28, 2024.

  1. If the SDC prop value is rendered as-is, with no transformations applied, then no round trip is necessary. Otherwise, that might be needed. ↩︎

Categories: FLOSS Project Planets

The Drop Times: Visit The DropTimes' Stall at Drupal GovCon 2024

Planet Drupal - Fri, 2024-08-09 09:03
The Drop Times will host a stall at Drupal GovCon 2024 from August 13th to 15th. Stop by to discuss Drupal’s impact on public sector digital transformation and explore its future potential.
Categories: FLOSS Project Planets

rush @ Savannah: GNU Rush Version 2.4

GNU Planet! - Fri, 2024-08-09 08:37

Version 2.4 of GNU Rush is available for download.

New in this release:

  • Use getgrouplist(3) call, if available;
  • Fixes in the rush-po script;
  • Bugfixes
Categories: FLOSS Project Planets

Web Review, Week 2024-32

Planet KDE - Fri, 2024-08-09 08:16

Let’s go for my web review for the week 2024-32.

A New Type of Neural Network Is More Interpretable - IEEE Spectrum

Tags: tech, ai, machine-learning, neural-networks, physics

Exciting new type of neural networks. There are limits to use them at large scale for now. Still, they have very interesting properties like the interpretability. And also, they tend to give similar performance to traditional neural networks for a smaller size.

https://spectrum.ieee.org/kan-neural-network


What do people really ask chatbots? It’s a lot of sex and homework

Tags: tech, ai, gpt

If you’re wondering what people do with chat bots, there are some clues here.

https://www.washingtonpost.com/technology/2024/08/04/chatgpt-use-real-ai-chatbot-conversations/


Judge rules that Google ‘is a monopolist’ in US antitrust case - The Verge

Tags: tech, monopoly, law

Looks like the US Department of Justice is back pushing for antitrust trials. This is likely a good thing, will it go all the way to breaking down some of the big tech companies? I doubt it but it’d probably be welcome.

https://www.theverge.com/2024/8/5/24155520/judge-rules-on-us-doj-v-google-antitrust-search-suit


Google Search speculation

Tags: tech, google, mozilla, law

Interesting guesses at what could change with the Google ruling. It doesn’t look too good for Mozilla.

https://micro.webology.dev/2024/08/06/google-search-speculation.html


Y’all are sleeping on HTTP/3

Tags: tech, quic, http, networking

Clearly there’s a silent transition going on. It’s not necessarily bad that it’s on-going without making too much noise.

https://kmcd.dev/posts/yall-are-sleeping-on-http3/


How to Get or Create in PostgreSQL

Tags: tech, databases, postgresql

Definitely not as simple as it sounds. The devil is once again in the details.

https://hakibenita.com/postgresql-get-or-create


Go debug your core dumps somewhere else

Tags: tech, debugging

You need to understand how core dumps work? This article is for you.

https://trace.yshui.dev/2024-08-copy-core-dumps.html


Code auditing productivity multiplier.

Tags: tech, c++, tools

Looks like an interesting tool for indexing and querying C++ code.

https://github.com/trailofbits/multiplier?tab=readme-ov-file


The difference between undefined behavior and ill-formed C++ programs

Tags: tech, programming, c++, safety

This is a very important distinction to keep in mind. It’s one of those source of bad mistakes in C++.

https://devblogs.microsoft.com/oldnewthing/20240802-00/?p=110091


Enum class improvements for C++17, C++20 and C++23

Tags: tech, c++

Enum classes keep being improved. Nice features are already available, more might be coming through reflection in C++26.

https://www.cppstories.com/2024/enum-improvements/


[JDK-8303099] Null-Restricted and Nullable Types (Preview) - Java Bug System

Tags: tech, programming, java, safety

This would definitely be a nice change to the Java language.

https://bugs.openjdk.org/browse/JDK-8303099


What the heck are reverse mapped types?

Tags: tech, typescript, type-systems

The TypeScript type system is really a beast. There are little known features in this, looks definitely like one of them.

https://andreasimonecosta.dev/posts/what-the-heck-are-reverse-mapped-types/


Reliable JavaScript benchmarking with Tachometer

Tags: tech, javascript, benchmarking, tools

Looks like a nice tool for benchmarking Javascript in the browser.

https://nolanlawson.com/2024/08/05/reliable-javascript-benchmarking-with-tachometer/


GM Shaders Guest: Radiance Cascades

Tags: tech, 3d, shader

Very neat technique for global illumination. Very effective but still has some issues.

https://mini.gmshaders.com/p/radiance-cascades


Store Code Discussions in Git using Git Notes

Tags: tech, tools, git, version-control, codereview

I like the idea of getting all the review comments back into Git once things are merged. This works offline, makes you less dependent on the forge for historical data etc. Now we’d probably need to have the notes feature easier to use somehow.

https://wouterj.nl/2024/08/git-notes


Build metrics and budgets with git-metrics

Tags: tech, tools, git, version-control, quality

Maybe we could store metrics about the code in the history as well? This would indeed reduce vendor lock-in. This tool makes it easy. Unsurprisingly seems built upon git notes.

https://dev.to/jdrouet/build-metrics-and-budgets-with-git-metrics-4pb4


Humans >> Data - by Kent Beck

Tags: tech, engineering, productivity, metrics

Aren’t we loosing something if we focus on productivity numbers too much? A good reminder that intrinsic motivation is an important driver in people behavior. I wouldn’t throw all the metrics out of the door but they’d better be a limited amount and they’d better be informative rather than objectives.

https://tidyfirst.substack.com/p/humans-data


Bye for now!

Categories: FLOSS Project Planets

Real Python: The Real Python Podcast – Episode #216: Learning Through Building the Black Python Devs Community

Planet Python - Fri, 2024-08-09 08:00

What hurdles must be cleared when starting an international organization? How do you empower others in a community by sharing responsibilities? This week on the show, we speak with Jay Miller about Black Python Devs.

[ Improve Your Python With 🐍 Python Tricks 💌 – Get a short & sweet Python Trick delivered to your inbox every couple of days. >> Click here to learn more and see examples ]

Categories: FLOSS Project Planets

The Drop Times: Elevating Drupal Beyond a CMS: Dominique De Cooman

Planet Drupal - Fri, 2024-08-09 07:50
Dominique De Cooman shares his plans to position Drupal as a leader in the open Digital Experience Platform (DXP) ecosystem as the Drupal Association&#039;s board election approaches. In this interview, he outlines his strategy for expanding Drupal’s influence in the midmarket and fostering innovation through stronger connections with other open-source platforms. Read on to discover how Dominique aims to help shape Drupal&#039;s future.
Categories: FLOSS Project Planets

mark.ie: My Drupal Core Contributions for week-ending August 9th, 2024

Planet Drupal - Fri, 2024-08-09 07:14

Here's what I've been working on for my Drupal contributions this week. Thanks to Code Enigma for sponsoring the time to work on these.

Categories: FLOSS Project Planets

PyPy: Conda-forge proposes sunsetting support for PyPy

Planet Python - Fri, 2024-08-09 02:27

Conda-forge has kindly been providing support for PyPy since 2019. The conda-forge team has been very patient and generous with resources, but it seems the uptake of PyPy has not justified the effort. Major packages still are not available on PyPy, others find it hard to update versions. We don't get much feedback at all about people using PyPy, and even less about PyPy on conda-forge. The conda-forge team has proposed sunsetting PyPy going forward, which means current packages would remain but no new packages would be built. If you have an opinion, you can comment on that PR, or on this blog post.

Since conda-forge supports PyPy3.9 but not PyPy3.10, we have continued releasing PyPy3.9 even though we typically support only one version of PyPy3. With the sunsetting proposal, we will not release any more updates to PyPy3.9. I opened a poll about the intention to drop PyPy3.9. If you have an opinion, please chime in.

Categories: FLOSS Project Planets

Matt Layman: Go Standard Library App - Building SaaS #197.4

Planet Python - Thu, 2024-08-08 20:00
In this episode, we are taking a break from JourneyInbox and exploring what kind of Go app we can make by just using the Go standard library. This is the final continuation after an internet disconnection.
Categories: FLOSS Project Planets

Reproducible Builds (diffoscope): diffoscope 274 released

Planet Debian - Thu, 2024-08-08 20:00

The diffoscope maintainers are pleased to announce the release of diffoscope version 274. This version includes the following changes:

[ Chris Lamb ] * Add support for IO::Compress::Zip >= 2.212. (Closes: #1078050) * Don't include debug output when calling dumppdf(1). * Append output from dumppdf(1) in more cases. (Closes: reproducible-builds/diffoscope#387) * Update copyright years. [ Mattia Rizzolo ] * Update the available architectures for test dependencies.

You find out more by visiting the project homepage.

Categories: FLOSS Project Planets

KDE Ships Frameworks 6.5.0

Planet KDE - Thu, 2024-08-08 20:00

Friday, 9 August 2024

KDE today announces the release of KDE Frameworks 6.5.0.

KDE Frameworks are 72 addon libraries to Qt which provide a wide variety of commonly needed functionality in mature, peer reviewed and well tested libraries with friendly licensing terms. For an introduction see the KDE Frameworks release announcement.

This release is part of a series of planned monthly releases making improvements available to developers in a quick and predictable manner.

New in this version Attica
  • Support new version field on DownloadDescription. Commit.
Bluez Qt
  • Manager: Fix connections for the connectedDevices list property. Commit.
Breeze Icons
  • Add 22px color (and monochrome, using *-symbolic) category icons. Commit. Fixes bug #489347
  • Make 16px list-remove-symbolic be a link to the base icon. Commit.
  • Add symlinks for Crow Translate icons. Commit. Fixes bug #489984
  • Add flatpak symlink for Git Cola. Commit.
  • Add icon to indicate adding to a playlist immediately after the current track. Commit. See bug #429942
Extra CMake Modules
  • Prefix.sh.cmake add MANPATH. Commit.
  • FindWaylandScanner: Add flag to use private-code. Commit.
Framework Integration
  • Plasma_workspace.notifyrc: relabel to match button. Commit.
KArchive
  • Allow passing QIODevice::Truncate in open mode. Commit.
KAuth
  • Allow the dbus backend to pass file descriptors as arguments. Commit.
  • Ensure that qt dbus macros are available with KAUTH_BUILD_CODEGENERATOR_ONLY=ON. Commit.
KCMUtils
  • AbstractKCM: Document what extraFooterTopPadding is for. Commit.
  • AbstractKCM: remove false deprecation notice. Commit.
KCodecs
  • Add static build support. Commit.
KColorScheme
  • Bundle essential breeze color schemes as resource. Commit.
KConfig
  • Ksharedconfig: move statercs to state dir. Commit.
  • Explain what "desktop entry spec separator semantics" means. Commit.
  • Reapply "don't create root-only readable files in /etc/xdg". Commit.
  • Make Qt6Quick dependency for QML plugin private. Commit.
  • Expose KWindowStateSaver in the QML interface. Commit.
  • Sync config group on KWindowStateSaver::timerEvent. Commit.
  • Don't do tests in ~/.kde-unit-test. Commit.
KCoreAddons
  • Enable cppcheck. Commit.
  • Add missing license header. Commit.
  • Add QML Format example. Commit.
  • [qml/formats] Drop no longer needed function. Commit.
  • Remove obsolete doc comment. Commit.
  • Replace deprecated globalMatch with globalMatchView. Commit.
KCrash
  • Metadata: Include frameworks version number. Commit.
  • Metadata: pass along qt version. Commit.
  • Don't capture unused variable. Commit.
  • Add CMakelint formatting commit to .git-blame-ignore-revs. Commit.
  • ./CMakeLists.txt:26: Extra spaces between 'if' and its () [whitespace/extra]. Commit.
KDeclarative
  • KeySequenceItem: be Accessible.Button, not Checkbox. Commit.
  • KeySequenceItem: Use KMessageDialog for displaying conflict messages. Commit.
  • Kquickcontrols: Drop validation code from KeySequenceHelper. Commit.
  • Kquickcontrols: Use KeySequenceValidator in KeySequenceItem. Commit. Fixes bug #483199
  • Kquickcontrols: Introduce private KeySequenceValidator type. Commit. See bug #483199
KFileMetaData
  • [Extractors] Clarify Qt::Gui dependencies. Commit.
KGuiAddons
  • Add missing license text. Commit.
KHolidays
  • Kazakhstan: Add National Book Day. Commit.
KI18n
  • Use more specific names for the functions. Commit.
  • Add comment for translators in example code. Commit.
  • Code cleanup. Commit.
  • Minor Doxygen change. Commit.
  • Build with older clang versions too. Commit.
  • Test also retranslateFormatString. Commit.
  • Make retranslateFormatString() call function from correct namespace and adjust code documentation. Commit.
  • Add helper method for setting a plural-aware spin box prefix/suffix. Commit.
KIconThemes
  • Fix icon recoloring for portable installers. Commit.
  • Overhaul KIconEngine docs. Commit.
  • Deprecate KIconLoader::drawOverlays. Commit.
  • Deprecate movie loading API. Commit.
  • Add back effect into cache key. Commit. Fixes bug #490795
  • Deprecate KIconEffect::apply API. Commit.
  • Refactor icon effect application. Commit.
  • [kiconeffect] Add static API for active effect. Commit.
  • [kiconeffect] Add static API for disabled effect. Commit.
  • [kiconeffects] Drop color and color2 members. Commit.
  • [kiconeffects] Don't read effect settings from kconfig. Commit.
  • [kiconeffect] Replace raw numbers with relevant enum. Commit.
  • Add note to prefer QIcon::fromTheme over KIconLoader. Commit.
  • Remove edit-specific directives. Commit.
KImageformats
  • JXL: added ImageTransformation option. Commit.
  • Xcf: Fix crash on malformed files. Commit.
  • Pcx: Fix crash in broken files. Commit.
  • Xcf: Fix crash on broken files. Commit.
  • Pcx: fix crash on invalid files. Commit.
  • Pcx: fix crash on invalid files. Commit.
  • Exr: added some usefull attributes. Commit.
  • Pcx: Read 16 color images that are 4bpp and 1 plane. Commit.
  • Full range HDR support. Commit.
  • Prepare gitlab for files that are coming int the next commit. Commit.
  • Avif: check return values. Commit.
  • Raw: Fix compiler warning with macro redefinition in Windows. Commit.
KIO
  • KFileWidget: reset preview to selected file on hover leave. Commit. See bug #418655
  • Drop unused methods from ConnectionServer. Commit.
  • Un-PIMPL ConnectionServer. Commit.
  • Properly log errors in ConnectionServer::listenForRemote(). Commit.
  • Beef up connection error logging. Commit.
  • [kprocessrunner] Also request an XDG activation token with StartupNotify=false. Commit.
  • Port from KIconLoader::drawOverlays to KIconUtils::addOverlays. Commit.
  • Kdirmodel: fix case when first deleted item was hidden. Commit.
  • Kfileitem: show relative path for rel symlink. Commit. Fixes bug #456198
  • File_unix: extract readLinkToBuffer to fn. Commit.
  • Kshellcompletion: remove unused variable. Commit.
  • KFilePlacesView: Show free space info in the tooltip. Commit.
  • KFilePlacesView: Show label in tooltip if it is elided. Commit. Fixes bug #454436
  • KFilePlacesItem: Add tooltip. Commit.
  • Ksamba: correct isAclValid regex. Commit.
  • DeleteOrTrashJob: emitResult with ERR_USER_CANCELED when cancelling prompt. Commit.
  • Alter permissions of the right file. Commit.
  • Try to fix test if umask is not as expected. Commit.
  • Enable one more test that works for me. Commit.
  • Ensure the wanted one second diff. Commit.
  • Make test more deterministic. Commit.
  • Less pollution of the home with test tmp files. Commit.
  • Port away from deprecated KIconEffect API. Commit.
  • Kprocessrunner: small code improvements. Commit.
  • Lookup QWidget parent at runtime. Commit.
  • Remove unused includes. Commit.
  • Drop SessionData. Commit.
  • Move useragent handling code into HTTP worker. Commit.
  • Remove unused member. Commit.
  • Drop dead metadata. Commit.
  • Cache KFileItem::isHidden result. Commit.
  • Avoid reparsing mount points for each directory on destruction. Commit.
  • Remove parent for DropMenu. Commit. Fixes bug #490183
  • Systemdprocessrunner: escape $ in arguments. Commit.
  • API dox: help doxygen to not auto-detect first sentence end after "i.e.". Commit.
  • API dox: document CamelCase include for KFileFilter. Commit.
Kirigami
  • Relicense MenuDialog and PromptDialog to LGPL. Commit.
  • GlobalDrawerActionItem: Fix tooltip. Commit.
  • ContextualHelpButton: make text always accessible. Commit.
  • Convert license headers to SPDX. Commit.
  • Port dialogs to pragma ComponentBehavior: Bound. Commit.
  • Dialog: Support variable base padding. Commit.
  • Dialog: Add some null safety. Commit.
  • Dialog: Fix ScrollView::contentItem management. Commit.
  • We can Use directly nullptr. Commit.
  • Fix: install KirigamiPrivate soversion. Commit.
  • NavigationTabButton: Drop bold font workaround. Commit.
KItemModels
  • Fix incorrect QML element name in documentation. Commit.
KNewStuff
  • Support new version field on DownloadLinkInformation. Commit.
  • QML: Use some better property types. Commit.
  • EntryDetails.qml: Qualify newStuffModel, use downloadItemId. Commit. Fixes bug #483659
  • Use KPackageJob::update instead of ::install. Commit.
KNotifications
  • Allow to build on oses without dbus and any other backend. Commit.
KParts
  • Use the correct check to determine whether initial preference should be read from KParts or KPlugin. Commit.
KPeople
  • Make locks actually lock. Commit.
KService
  • Store canonicalFilePath instead of looking it up twice. Commit.
  • Use canonicalFilePath instead of absoluteFilePath. Commit.
  • Use absolute path to mimeapps.list. Commit.
KStatusNotifieritem
  • Add API to control quit behavior. Commit.
KSVG
  • FindInCache: Compare last modified to boot time if timestamp is 0. Commit. Fixes bug #453876
  • Drop dead code. Commit.
KTextEditor
  • Fix drag pixmap with wrapped lines. Commit. Fixes bug #476979
  • Add actions to convert spaces to tabs and vice versa. Commit. Fixes bug #456736
  • Use ktexteditor-script-tester6 for javascript tests. Commit.
  • Fix -Woverflow warning with gcc. Commit.
  • Templates: Remove one level of nesting. Commit.
  • Ignore buffer signals in completion on undo/redo. Commit.
  • CursorToOffset: remove unnecessary line variable. Commit.
  • Fix formatting. Commit.
  • Src/view/kateview.cpp (KTextEditor::ViewPrivate::setupActions) : Fix typo in m_toggleShowSpace and m_toggleDynWrap whatsThis text. Commit.
  • Treat 0x0000 to 0x001F as non-printable. Commit.
  • Add action to quick toggle space visibility. Commit.
KWidgetsAddons
  • Fix that last line in fonts list is only half visible. Commit. Fixes bug #488079
  • Avoid the creation of toplevel widget. Commit. Fixes bug #490712
  • Remove unused license text. Commit.
  • Partially revert cccaa8f89897146043a535d45a276e3a57412815. Commit.
  • Deprecate KJobWidgets::setWindowHandle,windowHandle. Commit.
  • Fix tab not highlighted in some cases. Commit.
  • Fix multiple overlays being installed over tab. Commit. Fixes bug #490213
KXMLGUI
  • Remove QTreeWidgetHack, the methods are public now. Commit.
  • Fix compile error of krichtexteditor on Craft on Windows. Commit.
Network Manager Qt
  • ConnectionSettings: Support MeCard SAE security type. Commit.
QQC2 Desktop Style Solid
  • Udev/cpuinfo_arm: add M2 Pro/Max core variants. Commit.
Sonnet
  • Downgrade qCWarning to qCDebug. Commit.
  • Avoid initializing full HSpellDict when getting languages. Commit. Fixes bug #421451
  • Fix SONNET_USE_QML=OFF by moving ECMQmlModule behind the conditional. Commit.
Syntax Highlighting
  • Earthfile.xml: modernize highlighter to support Earthly 0.8 features. Commit.
  • C++: add floating-point literal suffixes of C++23. Commit.
  • Python: add some special variables and fix '' line continuation after a string. Commit.
  • Add .clang-format and .clang-tidy files with YAML. Commit.
  • Zig: fix range operator preceded by a number: [0..]. Commit.
  • Odin: add raw string color. Commit.
  • Update syntax highlighting for kdesrc-buildrc. Commit.
  • Cmake.xml: update syntax for CMake 3.30. Commit.
  • Inc version after done type adding. Commit.
  • Hare: add done keyword. Commit.
Threadweaver
  • Ensure windows tests work. Commit.
  • Only enter loop if signal didn't arrive before that. Commit.
  • Try to fix windows hang in tests. Commit.
Categories: FLOSS Project Planets

Théodore 'nod_' Biadala: A Summer of Sponsored Drupal Contribution

Planet Drupal - Thu, 2024-08-08 17:00

Much like my last update things are going well. I am able to spend 2 full days every week on contribution and my commit activity has increased quite a lot. Many thanks to my sponsors: Palantir.net, OPTASY, and new ones who joined in the past few weeks: Vardot, OpenSense Labs, and Liip.ch.

Now some numbers, since the last update I committed 82 issues (worth 820 weighted issue credits), that’s about 33 issues per month (or 330 issue credits). That’s a few more issues per week than before. There is still room to increase the commit activity with more sponsors so don’t hesitate to check out how to sponsor my contribution in core.

  1. Navigation LayoutBuilder UI has dead click zone
  2. Update the Drupal logo in Drupal core with the 2024 brand evolution I like the new brand very much, it’s good to update the default icon
  3. Update documentation for table.html.twig around table cells
  4. Regression: The drawer in Safari is missing the drop shadow
  5. Update the Drupal logo on the project page
  6. Meeting notes: May 20th 2024 - Isomorphic rendering Meetings take time, I can now spend it more easily to keep updated and make sure everyone is aligned
  7. Remove JavaScript from Views configuration form now that it is only CSS Removing JS code because CSS is so good now is always nice
  8. Navigation overlay z-index is not defined
  9. Update stylelint rule unit-allowed-list to include container query units
  10. Navigation: Avoid layout builder form submit
  11. Tab highlights for current/hover/click are too high up when other tabs have 2 lines of text
  12. Mobile version of Navigation menu doesn’t properly reset Drupal.displace() on closing
  13. core.libraries.yml mis-implements moved_files syntax
  14. When configuring a field on a content type’s “manage display” tab the spinner shifts the label and format column
  15. #states not working correctly when built from a logical combination of multliple fields
  16. Responsive image width/height values are not used from fallback image style
  17. Custom Navigation logo is disconnected from new Layout template
  18. CKEditor 5 Styles dropdown broken when in off-canvas sidebar
  19. [drupalMedia] Ability to mark image media as “decorative”
  20. Refactor (if feasible) use of jquery parseHTML function to use vanillaJS removing jQuery one method at a time
  21. drupalInstallModule nightwatch function does not work with Experimental modules
  22. Prefer to use Array.prototype.includes() for some of Array.prototype.indexOf()
  23. Claro: Autocomplete dropdown bleeds through sticky table header
  24. Refactor Claro’s table–file-multiple-widget stylesheet
  25. “Single-Directory Components” needs to be hyphenated because of English grammar and content style rules
  26. Trigger a JavaScript deprecation error for dialogClass in forked dialog.js
  27. Update to jquery UI 1.14.0 beta 2 Bleeding edge of web development :)
  28. Implement Nightwatch tests for Navigation module
  29. Visually-hidden refresh button in Field UI fails WCAG Focus Visible.
  30. Olivero: Incorrect positioning of close button on mobile device when navigation module is enabled.
  31. The core/drupal.message library requires a status_messages render element
  32. The [0] hatch in misc/vertical-tabs.js causes issues if there are multiple forms with vertical tabs. One thing jQuery does well is handle uncertainty much better than vanilla JS, and removing jQuery exposes us to that kind of things
  33. Drupal core committers team meeting - Dev Days Burgas 2024
  34. Reorder checkboxes on “Development settings” page
  35. Secondary tabs design is distorted on block view page
  36. Drupal core committers meeting 2024-06-11
  37. Remove decoupled menus and media initiatives from MAINTAINERS
  38. Update Drupal’s default throbber icons Using svg instead of gifs, overdue
  39. Update loading icon and use SVG
  40. Layout shift on displays in views page
  41. Remove documentation for readmore, logged_in and is_admin from node.html.twig
  42. Remove legacy ‘metadata’ variable from node.html.twig
  43. Prevent simultaneous open/close on simultaneous click/hover Navigation still needs polish, this one helped quite a bit with regular use
  44. Long string breaks the layout of Claro (reapply fix)
  45. Spacing issue in Home > Search page on Advanced search section
  46. Autocomplete input text can visibly overflow under magnifier icon
  47. Refactor Claro’s tabledrag stylesheet
  48. Have a dedicated category for blocks provided by the Navigation module
  49. ToolbarStoredStateTest needs wait after resizing window
  50. The link on the Image tag is redirecting to an undefined page from the node preview screen
  51. clarify db settings for run-tests.sh example command
  52. Parameters doc for views “row” should be at the top level of the array
  53. Consolidate Umami performance tests
  54. Optimize TelephoneFieldTest
  55. hook_local_tasks_alter() and hook_menu_local_tasks_alter() need mutual @see links
  56. Update to ckeditor 42.0.2
  57. Consolidate methods on FormElementsLabelsTest
  58. Merge the build and lint stages in core MR pipelines Tests go faster
  59. Fix Field UI tests that rely on UID1’s super user behavior
  60. Single directory component CSS asset library not picked up in admin theme immediately after module install without cache clear
  61. Replace t() calls inside of Controllers that do not use StringTranslationTrait
  62. Render API overview should include a link to the list of elements
  63. Resync .gitlab-ci.yml and .gitignore following Yarn 4 in 11.x
  64. Merge test methods in FieldUIRouteTest for better performance
  65. Fix File tests that rely on UID1’s super user behavior
  66. Stop using a data provider in UserPasswordResetTest
  67. More efficient route lookup caching
  68. Update deprecation notices in ajax.js
  69. Consolidate ckeditor5’s FunctionalJavascript tests More test speed
  70. Drupal Displace outputs invalid value for --drupal-displace-offset-right when opening top dialog
  71. Subpixel rounding issue causes dialog to resize unnecessarily That one had a funky side effect when resizing the browser window. It’s gone now :)
  72. Document that Uuid::isValid() only considers lowercase UUIDs as valid
  73. Menu system docs section gives wrong alter hook
  74. standardize docs on how to use the 4 types of test base
  75. Update to jQuery UI 1.14.0
  76. Add example and sections to Block API documentation
  77. FileSystemInterface::copy documentation is inaccurate
  78. Use artifacts to share the eslint and styleint caches from core to MRs
  79. New throbber SVG images lack xmlns attribute
  80. Drupal core committers meeting 2024-08-05
  81. Drupal core committers meeting 2024-07-01
  82. Document the recommended ways to obtain the database connection object

There were too many to comment each one individually. Many issues on stabilizing the new navigation module, making core tests faster, and documentation.

If you’re interested in supporting my work on Drupal core and keep the frontend fixes coming, consider sponsoring me.

Categories: FLOSS Project Planets

Twin Cities Drupal Camp: Only Seven Days to Submit Your Session!

Planet Drupal - Thu, 2024-08-08 16:47
Only Seven Days to Submit Your Session! Published Date Thursday, August 8th, 2024 - 04:47 pm bcross Thu, 08/08/2024 - 16:47 Do It This Week! 

Twin Cities Drupal Camp 2024 kicks off on September 12th-13th, on the University of Minnesota Twin Cities campus. The deadline for Session Submission is only a week away on August 15th. You still have time to send in your session proposals to help create this event. 

We have received many great new sessions for Twin Cities Drupal Camp 2024. Read our the Blog post “Send Us Your Session” to find a sampler of accepted sessions and ideas from last year's camp.

Submitting Your Session is Easy 

Simply fill out the submission form with your session title, description, and any additional details you’d like to provide. 

Our session review team will go through all submissions in order to select a diverse and engaging lineup of sessions for Twin Cities Drupal Camp 2024. Sessions will be accepted on a rolling basis. This means you are more likely to get your session accepted if you send it in today! 

Submit a Session

Posted In Drupal Planet
Categories: FLOSS Project Planets

Reuven Lerner: Level up your Python skills this August

Planet Python - Thu, 2024-08-08 15:07

It’s August! For many of us, that means it’s time for hot weather and perhaps even a vacation.

But if you’re a Python/Pandas nerd like me, it’s is the perfect time to level up your programming skills. And in the coming weeks, I’ll be offering 13 (!) live, online courses on a wide variety of Python and Pandas topics, including some I’ve never before taught online.

Here’s what you can expect in all of these courses:

  • In-depth explanations that go beyond the syntax
  • Examples, including practical connections to real-world problems
  • Exercises that help you to solidify the ideas I’ve taught
  • Live coding into Jupyter, rather than teaching with slides
  • Plenty of time for you to ask questions
  • Lots of dad jokes

All of the classes will be recorded, so if you cannot make them at the official time, you can always watch later. I’ll also provide the Jupyter notebook and any other files I used, so that you can replay the lesson at home.

Here’s what I’ve scheduled so far; I expect to release more dates and topics in the coming weeks:

You can, of course, buy these courses individually. But they’re included in my membership programs, via LernerPython.com. The Python and Web courses are available to all members, while the Pandas and machine-learning courses are available to people who join my Python+Data membership level.

Which means: If you join me at LernerPython.com, then you get access to these courses, plus my entire catalog, plus a forum for discussion and questions, plus office hours where you can ask any questions you have. If you get a Python+Data membership, then you’ll get Bamboo Weekly, as well, with weekly Pandas challenges based on current events.

Note that my normal discounts for students, retirees/pensioners, and people in non-rich countries all apply; e-mail me at reuven@lerner.co.il if you qualify for any of these.

I’m super excited to be offering these courses, and will be back in a few weeks with even more offerings.

Meanwhile, I’m always happy to hear your questions and thoughts at reuven@lerner.co.il. All messages go straight to my personal inbox!

The post Level up your Python skills this August appeared first on Reuven Lerner.

Categories: FLOSS Project Planets

Drupal Starshot blog: Growing the Starshot team with new track leads

Planet Drupal - Thu, 2024-08-08 12:22

A few weeks ago, we introduced the concept of "tracks" as the next step in progressing the Drupal Starshot project. Tracks are smaller, focused parts of the project that allow for targeted development and contributions.

At the same time, we put out a call for Starshot track leads, and were overwhelmed by the response. We received nearly 65 submissions, showcasing a wide range of expertise and ambitious vision that made for a difficult review process.

Announcing new track leads

We are proud to announce the newest track leads, who bring to the Starshot team an impressive depth of experience both in Drupal and in their respective track space:

Although we announced the concurrent editing track, this is an aspirational feature that we would love to see but have postponed because it will depend heavily on Experience Builder.

Further opportunities with tracks

If you've read the Starshot strategy that Dries shared, you may have noticed that there are capabilities listed that do not yet have a track. We will be creating more tracks ongoing, to align with this strategy as the need arises (and as our capacity allows!).

There are also three existing tracks that we have not yet assigned a lead:

If you are interested in leading one of these, make sure to review the issues for information about what we are aiming for, as well as the track lead role description. Your vision for the track, which need only be a short summary of how you plan to approach it, should take these into account when you submit an application

Next steps for tracks

For most tracks, the initial work will be to put together a proposal, which may require research to define the key requirements for our target persona and determine what feature parity with market leaders looks like. The proposals will be shared with the community for consultation.

We also expect track leads to provide regular progress updates, with the format and frequency still to be determined.

If you want to contribute to one of the tracks, or just follow along, keep an eye on the meta issues in the Starshot queue or post a comment to put your hand up.

Categories: FLOSS Project Planets

Electric Citizen: What to Know About Drupal 11

Planet Drupal - Thu, 2024-08-08 12:08

Are you ready for 11?

Even though you may have just upgraded your current site to Drupal 10, there’s a new version that’s already here! Do you need to upgrade? If so, when?

Let's take a quick look at what 11.0 has to offer.

Categories: FLOSS Project Planets

Kushal Das: 20 years of this blog

Planet Python - Thu, 2024-08-08 12:04

I started writing blog 20 years ago, not on this domain, but this blog still has all the old posts starting from 8th August 2004. Though I used to write mostly one line blog posts, which is equivalent of Mastodon posts these days.

I started writing another blog, but in Swedish. So that I can feel less scared with the language.

Tools used
  • Started on blogspot in 2004
  • Moved to Wordpress in 2007
  • Moved to Nikola, first time for me in static blogging system in 2012.
  • Moved to Shonku my Golang based static blogging tool in 2013.
  • Moved to khata moved to my Rust based blogging tool in 2019.

Hopefully I will write more in the coming months. But, who knows :)

Categories: FLOSS Project Planets

mark.ie: My LocalGov Drupal contributions for week-ending August 9th, 2024

Planet Drupal - Thu, 2024-08-08 12:00

Here's what I've been working on for my LocalGov Drupal contributions this week. Thanks to Big Blue Door for sponsoring the time to work on these.

Categories: FLOSS Project Planets

Pages