Growth in Watertown: Council Accepts Infrastructure for Prairie Haven, Harmony Hills, and Willow Creek Developments
#KXLGNews #KXLGRadio991 #LiveandLocal #LocalNews #WatertownSD
#SouthDakota #news #CityCouncil #development
Growth in Watertown: Council Accepts Infrastructure for Prairie Haven, Harmony Hills, and Willow Creek Developments
#KXLGNews #KXLGRadio991 #LiveandLocal #LocalNews #WatertownSD
#SouthDakota #news #CityCouncil #development
60/40 Restaurant On-Sale Liquor License Fee Proposal Postponed by Watertown Council
#KXLGNews #KXLGRadio991 #LiveandLocal #LocalNews #WatertownSD
#SouthDakota #CityCouncil #economy #development
Hi #fediverse !
I'm getting my MS in #computerscience & been tasked with doing an anonymous ethics interview of someone who works in #tech , and has experienced (or an acquaintance has shared) a few ethical dilemmas on either the technical and/or personnel side
I myself am in #software #development (in tech since 2018), & would love to use the opportunity to network on here (& maybe I've experienced the similar issues, too)
Thanks for any boosts or consideration!
e-mail: marc@ochsner.me
PM Modi to Inaugurate Projects Worth ₹12,000 Crore in Gaya on 22 August.
https://aliyesha.com/sub/articles/news/display/bh_pm_modi_gifts_for_bihar_aug_22_visit
#patna #bihar #india #news #press #PMModiji #Modiji #ModiJiBiharVisit #Development #infrastructure
Enjoy tracker free reading with us. #privacy #privacymatters
https://www.europesays.com/uk/354193/ Foster + Partners Reveals Design for Mixed-Use Development in Central Seoul, South Korea #Architecture #Arts #ArtsAndDesign #Design #Development #Entertainment #Foster+Partners #hotel #MixedUse #MixedUseArchitecture #MixedUseDevelopment #OfficeTower #park #Seoul #SouthKorea #UK #UnitedKingdom #UrbanDesign
"A time-lapse film offers a glimpse of a hidden milestone of human development: the moment when the newly formed embryo latches onto the uterine lining. Researchers have captured real-time footage of an embryo pulling on a high-fidelity replica of the lining to bury itself inside, effectively remodelling its new home."
I updated my post "Do I need a Lisp Machine comeback?". I have added the new information I've found with chatting with folks on lisp IRC channels.
https://far.chickenkiller.com/computing/do-i-need-a-lisp-machine-comeback/
Seems like I was looking for was "residential style development" or something. Dunno yet what does it mean. But for sure I am digging something out of grave!
Ubuntu’s New “Dangerous” Daily Builds – What Are They? #news ##tofro #canonical #daily_builds #development #snaps #ubuntu_25.10
https://www.omgubuntu.co.uk/2025/08/ubuntu-dangerous-daily-builds-snap-testing
Let's start the week with this inclusive (and implicitly humanist) message from Philip Schellekens (UNDP).
Of course, there are all sorts of questions this begs, from what actually *is* development to the Q. of whether development should still be pursued in the same way in the face of the climate crisis... but its central message that more links us than divides us remains vital if the human race is to (continue to?) prosper.
#development #climate #politics
h/t LinkedIn
Climate Change and mental health: without adaptation support, or possibilities, vulnerable communities facing ever worse farming conditions can fall into despair.
#Development #Guides
New HTML attribute ‘hidden=until-found’ · How it makes hidden content findable via browser search https://ilo.im/1665vp
_____
#HTML #Findability #Content #Webpage #Interoperability #Browser #WebDev #Frontend
Japan to train 30,000 African students in AI to spur development
Matsuo Lab held a two-day intensive lecture in July at the University of Cape Town in South Africa, the first of its kind in Africa. (Matsuo-Iwasawa Lab) KANA BABA August 16, 2025 03:37 JST TOKYO — Japan plans to train 30,000 people ac…
#Japan #JP #JapanNews #000 #30 #african #AI. #development #JapanTopics #news #spur #Students #train
https://www.alojapan.com/1347498/japan-to-train-30000-african-students-in-ai-to-spur-development/
https://www.alojapan.com/1347498/japan-to-train-30000-african-students-in-ai-to-spur-development/ Japan to train 30,000 African students in AI to spur development #000 #30 #african #AI. #development #Japan #JapanNews #JapanTopics #news #spur #Students #train Matsuo Lab held a two-day intensive lecture in July at the University of Cape Town in South Africa, the first of its kind in Africa. (Matsuo-Iwasawa Lab) KANA BABA August 16, 2025 03:37 JST TOKYO — Japan plans to train 30,000 people across Africa in the field of artificial intelligenc
This is THE largest PR i've single handed made, EVER. #Git #Github #Code #Development
Question for accessibility folks and people who rely on screen readers.
I code nav so there’s no link when you’re on a respective page. Like this:
<dd>One</dd>
<dd><a href="/two">Two</a></dd>
But the aria-current attribute can be used with persistent links:
<dd><a href="/one" aria-current="page">One</a></dd>
<dd><a href="/two">Two</a></dd>
Which of these, or using aria-current on a non-linked item, feels the most accessible?
Having coded #C for a long time (and on platforms that are bit skimpier on resources) I have a special dislike for excessive stack space allocation. Stack space is precious, and gobbling it unnecessarily is the minimum bad style, if not even a bug. If the functions need temporary workspace, and if the area would grow larger than couple of kilobytes in my opinion use of heap is warranted.
One reason to dislike excessive stack size usage is that there are platforms that do not auto-expand the stack on the fly. To cater for excessive stack use you'd have to predefine a huge stack size of the application for no other reason than to cater for the lazy/bad code. Most of the time the stack space would sit unused, only to be truly used when the affected functions are called.
I recently ported Python 3.13.x to #MorphOS and now decided to look into cleaning things up for the port. This involved detecting and patching any excessive stack usage with malloc()ated buffers.
I was somewhat dismayed to spot https://github.com/python/cpython/blob/dc53a3e52a54beef450e4bf451e09b65e0df8043/Modules/_decimal/libmpdec/transpose.c#L179 and https://github.com/python/cpython/blob/dc53a3e52a54beef450e4bf451e09b65e0df8043/Modules/_decimal/libmpdec/transpose.c#L77
Such use of large arrays makes transpose_pow2() utilize 128KB (or 256KB of size_t is 64-bit) of stack space, regardless of the number of rows and columns. Boo, what a waste!
I fixed this by making swap_halfrows_pow2 and squaretrans_pow2 take a pointer to struct that has a union that holds buf1 and buf2 for both functions and then allocating and freeing the buffer in transpose_pow2 as needed.