Skip to content
Menu
Open World News Open World News
  • Privacy Policy
Open World News Open World News

Category: News

Reverse Engineering UndefinedBehaviorSanitizer (UBScan)

Posted on August 30, 2023 by Michael G

Reverse Engineering UndefinedBehaviorSanitizer (UBScan)An insight into the inner functionality Click to Read More at Oracle Linux Kernel Development

The post Reverse Engineering UndefinedBehaviorSanitizer (UBScan) appeared first on Linux.com.

Protect your information with email masks now available in Firefox

Posted on August 30, 2023 by Michael G

Earlier this year, we announced that we were testing a new way for Firefox Relay users to access their email masks directly from Firefox. Today, we’re taking it to the next level and rolling this feature over the next couple of weeks out to millions of Firefox Account users in Firefox. Signing up for a […]

The post Protect your information with email masks now available in Firefox appeared first on The Mozilla Blog.

coreutils @ Savannah: coreutils-9.4 released [stable]

Posted on August 30, 2023 by Michael G

This is to announce coreutils-9.4, a stable release.
This is a stabilization release coming about 19 weeks after the 9.3 release.
See the NEWS below for a summary of changes.

There have been 162 commits by 10 people in the 19 weeks since 9.3.
Thanks to everyone who has contributed!
The following people contributed changes to this release:

  Andreas Schwab (1)      Jim Meyering (1)
  Bernhard Voelker (3)    Paul Eggert (60)
  Bruno Haible (11)       Pádraig Brady (80)
  Dragan Simic (3)        Sylvestre Ledru (2)
  Jaroslav Skarvada (1)   Ville Skyttä (1)

Pádraig [on behalf of the coreutils maintainers]
==================================================================

Here is the GNU coreutils home page:
    http://gnu.org/s/coreutils/

For a summary of changes and contributors, see:
  http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=shortlog;h=v9.4
or run this command from a git-cloned coreutils directory:
  git shortlog v9.3..v9.4

Here are the compressed sources:
  https://ftp.gnu.org/gnu/coreutils/coreutils-9.4.tar.gz   (15MB)
  https://ftp.gnu.org/gnu/coreutils/coreutils-9.4.tar.xz   (5.8MB)

Here are the GPG detached signatures:
  https://ftp.gnu.org/gnu/coreutils/coreutils-9.4.tar.gz.sig
  https://ftp.gnu.org/gnu/coreutils/coreutils-9.4.tar.xz.sig

Use a mirror for higher download bandwidth:
  https://www.gnu.org/order/ftp.html

Here are the SHA1 and SHA256 checksums:

  7dce42b8657e333ce38971d4ee512c4313b8f633  coreutils-9.4.tar.gz
  X2ANkJOXOwr+JTk9m8GMRPIjJlf0yg2V6jHHAutmtzk=  coreutils-9.4.tar.gz
  7effa305c3f4bc0d40d79f1854515ebf5f688a18  coreutils-9.4.tar.xz
  6mE6TPRGEjJukXIBu7zfvTAd4h/8O1m25cB+BAsnXlI=  coreutils-9.4.tar.xz

Verify the base64 SHA256 checksum with cksum -a sha256 –check
from coreutils-9.2 or OpenBSD’s cksum since 2007.

Use a .sig file to verify that the corresponding file (without the
.sig suffix) is intact.  First, be sure to download both the .sig file
and the corresponding tarball.  Then, run a command like this:

  gpg –verify coreutils-9.4.tar.gz.sig

The signature should match the fingerprint of the following key:

  pub   rsa4096/0xDF6FD971306037D9 2011-09-23 [SC]
        Key fingerprint = 6C37 DC12 121A 5006 BC1D  B804 DF6F D971 3060 37D9
  uid                   [ unknown] Pádraig Brady <P@draigBrady.com>
  uid                   [ unknown] Pádraig Brady <pixelbeat@gnu.org>

If that command fails because you don’t have the required public key,
or that public key has expired, try the following commands to retrieve
or refresh it, and then rerun the ‘gpg –verify’ command.

  gpg –locate-external-key P@draigBrady.com

  gpg –recv-keys DF6FD971306037D9

  wget -q -O- ‘https://savannah.gnu.org/project/release-gpgkeys.php?group=coreutils&download=1’ | gpg –import –

As a last resort to find the key, you can try the official GNU
keyring:

  wget -q https://ftp.gnu.org/gnu/gnu-keyring.gpg
  gpg –keyring gnu-keyring.gpg –verify coreutils-9.4.tar.gz.sig

This release was bootstrapped with the following tools:
  Autoconf 2.72c.32-cb6fb
  Automake 1.16.5
  Gnulib v0.1-6658-gbb5bb43a1e
  Bison 3.8.2

NEWS

* Noteworthy changes in release 9.4 (2023-08-29) [stable]

** Bug fixes

  On GNU/Linux s390x and alpha, programs like ‘cp’ and ‘ls’ no longer
  fail on files with inode numbers that do not fit into 32 bits.
  [This bug was present in “the beginning”.]

  ‘b2sum –check’ will no longer read unallocated memory when
  presented with malformed checksum lines.
  [bug introduced in coreutils-9.2]

  ‘cp –parents’ again succeeds when preserving mode for absolute directories.
  Previously it would have failed with a “No such file or directory” error.
  [bug introduced in coreutils-9.1]

  ‘cp –sparse=never’ will avoid copy-on-write (reflinking) and copy offloading,
  to ensure no holes present in the destination copy.
  [bug introduced in coreutils-9.0]

  cksum again diagnoses read errors in its default CRC32 mode.
  [bug introduced in coreutils-9.0]

  ‘cksum –check’ now ensures filenames with a leading backslash character
  are escaped appropriately in the status output.
  This also applies to the standalone checksumming utilities.
  [bug introduced in coreutils-8.25]

  dd again supports more than two multipliers for numbers.
  Previously numbers of the form ‘1024x1024x32’ gave “invalid number” errors.
  [bug introduced in coreutils-9.1]

  factor, numfmt, and tsort now diagnose read errors on the input.
  [This bug was present in “the beginning”.]

  ‘install –strip’ now supports installing to files with a leading hyphen.
  Previously such file names would have caused the strip process to fail.
  [This bug was present in “the beginning”.]

  ls now shows symlinks specified on the command line that can’t be traversed.
  Previously a “Too many levels of symbolic links” diagnostic was given.
  [This bug was present in “the beginning”.]

  pinky, uptime, users, and who no longer misbehave on 32-bit GNU/Linux
  platforms like x86 and ARM where time_t was historically 32 bits.
  Also see the new –enable-systemd option mentioned below.
  [bug introduced in coreutils-9.0]

  ‘pr –length=1 –double-space’ no longer enters an infinite loop.
  [This bug was present in “the beginning”.]

  shred again operates on Solaris when built for 64 bits.
  Previously it would have exited with a “getrandom: Invalid argument” error.
  [bug introduced in coreutils-9.0]

  tac now handles short reads on its input.  Previously it may have exited
  erroneously, especially with large input files with no separators.
  [This bug was present in “the beginning”.]

  ‘uptime’ no longer incorrectly prints “0 users” on OpenBSD,
  and is being built again on FreeBSD and Haiku.
  [bugs introduced in coreutils-9.2]

  ‘wc -l’ and ‘cksum’ no longer crash with an “Illegal instruction” error
  on x86 Linux kernels that disable XSAVE YMM.  This was seen on Xen VMs.
  [bug introduced in coreutils-9.0]

** Changes in behavior

  ‘cp -v’ and ‘mv -v’ will no longer output a message for each file skipped
  due to -i, or -u.  Instead they only output this information with –debug.
  I.e., ‘cp -u -v’ etc. will have the same verbosity as before coreutils-9.3.

  ‘cksum -b’ no longer prints base64-encoded checksums.  Rather that
  short option is reserved to better support emulation of the standalone
  checksum utilities with cksum.

  ‘mv dir x’ now complains differently if x/dir is a nonempty directory.
  Previously it said “mv: cannot move ‘dir’ to ‘x/dir’: Directory not empty”,
  where it was unclear whether ‘dir’ or ‘x/dir’ was the problem.
  Now it says “mv: cannot overwrite ‘x/dir’: Directory not empty”.
  Similarly for other renames where the destination must be the problem.
  [problem introduced in coreutils-6.0]

** Improvements

  cp, mv, and install now avoid copy_file_range on linux kernels before 5.3
  irrespective of which kernel version coreutils is built against,
  reinstating that behavior from coreutils-9.0.

  comm, cut, join, od, and uniq will now exit immediately upon receiving a
  write error, which is significant when reading large / unbounded inputs.

  split now uses more tuned access patterns for its potentially large input.
  This was seen to improve throughput by 5% when reading from SSD.

  split now supports a configurable $TMPDIR for handling any temporary files.

  tac now falls back to ‘/tmp’ if a configured $TMPDIR is unavailable.

  ‘who -a’ now displays the boot time on Alpine Linux, OpenBSD,
  Cygwin, Haiku, and some Android distributions

  ‘uptime’ now succeeds on some Android distributions, and now counts
  VM saved/sleep time on GNU (Linux, Hurd, kFreeBSD), NetBSD, OpenBSD,
  Minix, and Cygwin.

  On GNU/Linux platforms where utmp-format files have 32-bit timestamps,
  pinky, uptime, and who can now work for times after the year 2038,
  so long as systemd is installed, you configure with a new, experimental
  option –enable-systemd, and you use the programs without file arguments.
  (For example, with systemd ‘who /var/log/wtmp’ does not work because
  systemd does not support the equivalent of /var/log/wtmp.)

The popularity of DOS/4GW made Windows 95 game compatibility a little easier, but with higher stakes

Posted on August 30, 2023 by Michael G
By far, the most popular so-called DOS Extender in the early 1990’s was DOS/4GW. MS-DOS game compatibility occupied a very large portion of my time during Windows 95 development, so I saw a lot of DOS Extender banners, most frequently the DOS/4GW banner. Now, you might wonder, “How did these games even run in Windows 95 if they came with a DOS Extender? Wouldn’t the extender try to enter protected mode and fail, because Windows was already managing protected mode?” When Raymond Chen speaks, we listen. That’s the rules.

Daura e Tarjuma e Quran – Surah e Baqrah ayat 178 to ayat 192 – 29th August 2023 – ARYQtv

Posted on August 29, 2023 by Michael G
Daura e Tarjuma e Quran – Host: Shuja Uddin Sheikh

1st Time in Electronic Media’s History Complete Translation & Tafseer of Quran Kareem.

#ShujaUddinSheikh #DauraeTarjumaeQuran #ARYQtv

Subscribe Here: https://bit.ly/3dh3Yj1

Official Facebook: https://www.facebook.com/ARYQTV/
Official Website: https://aryqtv.tv/
Watch ARY Qtv Live: http://live.aryqtv.tv/
Programs Schedule: https://aryqtv.tv/schedule/
Islamic Information: https://bit.ly/2MfIF4P
Android App: https://bit.ly/33wgto4

Novela Os Mutantes – Caminhos do Coração – 1ª Temporada – Capítulo 55

Posted on August 29, 2023 by Michael G
Os Mutantes – Caminhos do Coração

Love Island star Adam Collard opens up about childhood trauma

Posted on August 29, 2023 by Michael G
Love Island lothario Adam Collard opens up about childhood trauma on E4’S new series of Celebs go Dating

Pourquoi les monteur.euses Youtube se font exploiter

Posted on August 29, 2023 by Michael G
#montage #montageyoutube #droitdutravail

Depuis quelques années, les gros youtubeurs, ainsi que certains youtubeurs plus petits ne montent plus leur vidéos eux-même : ils font appels à des monteurs qui sont la plupart du temps en auto-entreprise ou freelance.
Une habitude s’est faite dans ce milieu où les monteur.euses sont payé.es à la vidéo.
Sauf que cela ne se passe pas comme ça ailleurs même pour les monteurs en dehors de Youtube, et cela entraine certains problèmes assez dérangeants.
Il est temps de mettre tout ceci en lumière…

Liens :

– Page de l’URSSAF disant que l’on ne peut pas amortir son matériel en auto-entreprise : https://www.autoentrepreneur.urssaf.fr/portail/accueil/sinformer-sur-le-statut/lessentiel-du-statut.html (dans la rubrique Comptabilité allégée)
– Calculer son salaire, son taux horaire ou sa durée de travail : https://calculatrice-zen.com/taux-horaire-salaire/
– Live de SamEzTwitch évoqué et montré dans la vidéo : https://www.twitch.tv/videos/1875283249
– La durée légale du travail (pour les SALARIÉ.ES) : https://travail-emploi.gouv.fr/droit-du-travail/temps-de-travail/article/la-duree-legale-du-travail

====================================================
SAUVEZ UN PONEY : COMMENTEZ ET PARTAGEZ CETTE VIDÉO ! 😉

➪ J’ai aussi une chaîne de jeux vidéos ainsi qu’une chaîne de jeux bonus ! Retrouvez-les dans le À propos de la chaîne ! 😉 : https://www.youtube.com/channel/UC0jVEiJu2oz_5NaftErHMgg/about

➪ Pour être au courant de la sortie des prochaines vidéos un peu avant leur sortie, découvrir des liens de vidéos ou autres trucs sympas, et bien plus encore, suivez-moi sur mon WordPress : http://blogmangatd.byethost33.com/

➪ Quand je live sur Twitch, c’est par là : https://www.twitch.tv/mangatd

➪ TheChangebook – “Le réseau social alternatif autogéré” : https://www.thechangebook.org/profile-25405/

➪ Mastodon : https://framapiaf.org/@mangatd

➪ Serveur Discord : https://discord.gg/AMTUwmz

Please join us for the Moodle Academy webinar “Setting up a Moodle development environment” on Tuesday 5 September at 10:00 UTC

Posted on August 29, 2023 by Michael G
by Mary Cooch.  

Are you new to Moodle development or looking to enhance your Moodle development skills? Join us for this free webinar on Tuesday 5 September at 10:00 UTC where we will guide you through the process of setting up a Moodle development environment. We’ll discuss the key components of a development environment, including the installation of a web server, database, and the Moodle codebase. In this session we will also discuss how to work with the Moodle App.

Everybody has their own preferences and you can do Moodle development using the tools you are comfortable with. You will also hear from some Moodle HQ developers who will share how they set up their own development environments.

In the second half of this webinar, our Moodle HQ developers will walk you through what you can expect at this year’s Dev Jam session at the MoodleMoot Global in Barcelona. The Dev Jam is going to be a hands-on session and we hope everyone attending the Dev Jam comes prepared to reap the most benefits.

Note: this webinar is part of the course ‘Moodle Academy webinars‘. You have to be enrolled in this free course to register and join the webinar.

Register at Moodle Academy: https://moodle.me/moodledevelopmentenvironment. 

Please join us for the Moodle Academy webinar

The British Library Loves Manuscripts on Wikisource

Posted on August 29, 2023 by Michael G
The British Library has joined hands with the Wikimedia Foundation to support the Wikisource Loves Manuscripts (WiLMa) project, sharing 76 Javanese manuscripts, including what is…
  • Previous
  • 1
  • …
  • 462
  • 463
  • 464
  • 465
  • 466
  • 467
  • 468
  • …
  • 821
  • Next

Recent Posts

  • SmartEsq has launched an AI-powered MFN Election tool
  • Open Source email Clients
  • When and how to use benchmarking
  • How Plotly AI revolutionizes the dashboard development process
  • [TUT] LoRa & LoRaWAN – MikroTik wAP LR8 kit mit The Things Network verbinden [4K | DE]

Categories

  • Android
  • Linux
  • News
  • Open Source
©2025 Open World News | Powered by Superb Themes
We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept All”, you consent to the use of ALL the cookies. However, you may visit "Cookie Settings" to provide a controlled consent.
Cookie SettingsAccept All
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT