Category: News
Golems GABB: Illustration with Shapes
Editor
Tue, 03/07/2023 – 17:12
We are so interested in who you are. Are you a designer? We can suppose it as you are interested in this topic. However, it can be assumed that you are not. Basically, you may not even be related to design, and the last time you drew was in school. Did we guess? Whoever you are, we’ve written this blog for you!
A Beginner’s Guide to Ractors in Ruby
https://www.honeybadger.io/blog/ractors/
Python 3.12.0 alpha 6 released
I’m pleased to announce the release of Python 3.12 alpha 6.
https://www.python.org/downloads/release/python-3120a6/
Major new features of the 3.12 series, compared to 3.11
- Even more improved error messages. More exceptions potentially caused by typos now make suggestions to the user.
- Support for the Linux perf profiler to report Python function names in traces.
- The deprecated wstr and wstr_length members of the C implementation of unicode objects were removed, per PEP 623.
- In the unittest module, a number of long deprecated methods and classes were removed. (They had been deprecated since Python 3.1 or 3.2).
- The deprecated smtpd and distutils modules have been removed (see PEP 594 and PEP 632). The setuptools package (installed by default in virtualenvs and many other places) continues to provide the distutils module.
- A number of other old, broken and deprecated functions, classes and methods have been removed.
- Invalid backslash escape sequences in strings now warn with SyntaxWarning instead of DeprecationWarning, making them more visible. (They will become syntax errors in the future.)
- The internal representation of integers has changed in preparation for performance enhancements. (This should not affect most users as it is an internal detail, but it may cause problems for Cython-generated code.)
- (Hey, fellow core developer, if a feature you find important is missing from this list, let Thomas know.)
More resources
- Online Documentation
- PEP 693, the 3.12 Release Schedule
- Report bugs at https://github.com/python/cpython/issues.
- Help fund Python and its community.
And now for something completely different
Let me not to the marriage of true mindsAdmit impediments. Love is not loveWhich alters when it alteration finds,Or bends with the remover to remove:O, no! it is an ever-fixed mark,That looks on tempests and is never shaken;It is the star to every wandering bark,Whose worth’s unknown, although his height be taken.Love’s not Time’s fool, though rosy lips and cheeksWithin his bending sickle’s compass come;Love alters not with his brief hours and weeks,But bears it out even to the edge of doom.If this be error, and upon me prov’d,I never writ, nor no man ever lov’d.
Enjoy the new releases
Initial support for guided disk encryption in the installer
from the installer.
Initial support, likely to be expanded upon, was
committed
by Klemens Nanni (kn@
) on
March 7, 2023.
The commit reads,
Subject: CVS: cvs.openbsd.org: src From: Klemens Nanni <kn () cvs ! openbsd ! org> Date: 2023-03-07 17:29:42
OpenSSF Membership Growth Signals Technical Communities’ Continued Commitment to Investing in Security
Read the original post at: Read More
The post OpenSSF Membership Growth Signals Technical Communities’ Continued Commitment to Investing in Security appeared first on Linux.com.
a2ps @ Savannah: a2ps 4.15 released [stable]
I am delighted to announce the first stable release of GNU a2ps since 2007!
This release contains few user-visible changes. It does however contain a
lot of changes “under the hood”: code clean-up, etc. Therefore, it’s likely
that there are new bugs. Do report them to Savannah[1], or the mailing list
please!A big thank-you to all those who tested pre-releases, and especially to
Bruno Haible’s tireless work to promote portability: he both tested a2ps on
many systems and found lots of minor portability problems, and advised on
their solution (often, gnulib code that he wrote). Remaining problems are of
course mine![1] https://savannah.gnu.org/projects/a2ps
Here are the compressed sources and a GPG detached signature:
https://ftpmirror.gnu.org/a2ps/a2ps-4.15.tar.gz
https://ftpmirror.gnu.org/a2ps/a2ps-4.15.tar.gz.sigUse a mirror for higher download bandwidth:
https://www.gnu.org/order/ftp.htmlHere are the SHA1 and SHA256 checksums:
807667f838c29bde73bb91fae60ef98826bd460e a2ps-4.15.tar.gz
pa3FqSIvmESKV8a162lItydD6vmjDGehNN8ILpnHZlI a2ps-4.15.tar.gzThe SHA256 checksum is base64 encoded, instead of the
hexadecimal encoding that most checksum tools default to.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 a2ps-4.15.tar.gz.sig
The signature should match the fingerprint of the following key:
pub rsa2048 2013-12-11 [SC]
2409 3F01 6FFE 8602 EF44 9BB8 4C8E F3DA 3FD3 7230
uid Reuben Thomas <rrt@sc3d.org>
uid keybase.io/rrt <rrt@keybase.io>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 rrt@sc3d.org
gpg –recv-keys 4C8EF3DA3FD37230
wget -q -O- ‘https://savannah.gnu.org/project/release-gpgkeys.php?group=a2ps&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 a2ps-4.15.tar.gz.sigThis release was bootstrapped with the following tools:
Autoconf 2.71
Automake 1.16.5
Gnulib v0.1-5857-gf17d397771NEWS
* Noteworthy changes in release 4.15 (2023-03-07) [stable]
* New maintainer, Reuben Thomas.
* Features:
– Replace the ‘psmandup’ utility with simpler ‘lp2’ to directly print
documents to a simplex printer.
– Remove the outdated ‘psset’ and ‘fixnt’, and simplify ‘fixps’ to
always process its input with Ghostscript.
– Use libpaper’s paper sizes. This includes user-defined paper sizes
when using libpaper 2. It is still possible to define custom margins
using “Medium:” specifications in the configuration file, and the
one size defined by a2ps that libpaper does not know about, Quarto, is
retained for backwards compatiblity, and as an example.
* Documentation
– Remove some obsolete explanations.
– Reformat –help output consistently to 80 columns.
– Some English fixes.
* Bug fixes:
– Avoid a crash when a medium is not specified; instead, use the default
libpaper size (configured by the user or sysadmin, or the locale
default).
– Fix some other potential crashes and compiler warnings.
– Fixes for security bugs CVE-2001-1593, CVE-2015-8107 and CVE-2014-0466.
– Minor bugs fixed.
* Predefined delegations:
– Remove support for defunct Netscape and proprietary Acrobat Reader.
– Add lpr wrapper for automatic detection of different printing systems,
including CUPS support.
* Encodings:
– Use libre fonts for KOI-8.
– Composite fonts support.
* Build
– Update build system to more recent autotools and gettext versions.
– Build man pages in a simpler and more robust way.
– Document runtime dependencies.
– Minor code quality improvements.
– Minor tidy up and removal of obsolete code.
– Require libpaper.
– Remove OS/2 support.
Customizing the startup chime on a 1999 G3 iMac
Qawwali Session – Abdullah Niazi & Waqas Niazi – Mehfil e Sama – Niazi Brothers – ARY Qtv
#Mehfilesama #Qawali #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
Ios App: https: https://apple.co/2v3zoXW
Six-year-old born with no fingers on one hand is set to be the youngest in the UK to be fitted…
Caitlin Hutson was born with only one fully formed hand due to a rare congenital condition.
Her left hand did not fully develop giving what she calls her “nubbins” instead of fully working fingers.
Despite her confidence as a keen acrobat and cyclist, she’s unable to do up her coat or open an ice cream packet without help and becomes self-conscious out in public.
But this is all about to change- if her family can raise the £13,000 needed for a bionic hand she will become the youngest to receive a ‘Hero Arm’ from UK-based company Open Bionics.
Her family say Caitlin’s confidence is deteriorating as people stop and stare at her whilst out so the Hero Arm will be “life-changing” for their little girl.
Dad Terry Hutson, 45, an engineer from Wymondham, Norfolk, said: “Caitlin hides her hand under her sleeve- at her request we don’t adapt any clothing so her sleeve dangles.
“When we’re out people will point. Some kids bother her too- they are tolerant but are interested so ask about it.
“Some days she’s happy to talk about it whilst other days she’ll keep it hidden away.
“But when I watched her first test out a bionic hand she lit up. Getting a bionic arm will give her confidence.”
Prosthetics are often only fitted from age eight, but this year Caitlin was deemed eligible for one by Open Bionics, a company which develops low-cost bionic ‘Hero Arms’.
Thanks to the muscles in her arm she’s able to use the bio-electric sensors that link to the bionic hand, making it move as a normal hand would.
The thousands the family aim to raise will give Caitlin a bionic arm which can be recast as she grows.
The money will also be used to keep the arm upgraded with the latest updates and modifications so she’ll be able to grab, pinch, high-five, fist bump and more.
Terry said: “As her parents, it breaks our hearts when we see her struggle and we do our best to not just jump in and help her out.
“We are so proud of her perseverance in never giving up trying to do something. We are not exaggerating when we say a Hero Arm will change her life.”
Terry and his wife Maria, 41, didn’t know about Caitlin’s hand abnormality, called Symbrachydactyly, until she was born.
She was born with five boneless “fingers”, a wrist and an underdeveloped hand on one arm.
The determined little girl currently uses a specially designed socket to cycle with and a rubber Koalaa Mitt to help with her handstands and cartwheels.
The active young girl currently wants to grow up to be like her mum, who is a swimming instructor.
To help her achieve her dreams the couple has kept up to date with all the developments in prosthetics for their first child, who also have a son, age four.
This meant they were delighted to find out Caitlin is eligible for her first hand at age six.