mastodon.uno è uno dei tanti server Mastodon indipendenti che puoi usare per partecipare al fediverso.
Mastodon.Uno è la principale comunità mastodon italiana. Con 77.000 iscritti è il più grande nodo Mastodon italiano: anima ambientalista a supporto della privacy e del mondo Open Source.

Statistiche del server:

6,2K
utenti attivi

#stack

3 post3 partecipanti0 post oggi
Felix Palmen :freebsd: :c64:<p>Revisiting <a href="https://mastodon.bsd.cafe/tags/async" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>async</span></a> / <a href="https://mastodon.bsd.cafe/tags/await" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>await</span></a> in <a href="https://mastodon.bsd.cafe/tags/POSIX" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>POSIX</span></a> C, trying to "add some <a href="https://mastodon.bsd.cafe/tags/security" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>security</span></a>" 🙈 </p><p>Recap: Consider a classic <a href="https://mastodon.bsd.cafe/tags/reactor" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>reactor</span></a>-style service in C with a <a href="https://mastodon.bsd.cafe/tags/threadpool" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>threadpool</span></a> attached to run the individual request handlers. When such a handler needs to do some I/O, it'll have to wait for its completion, and doing so is kind of straight forward by just blocking the worker thread executing the job until whatever I/O was needed completes.</p><p>Now, blocking a thread is never a great thing to do and I recently tooted about an interesting alternative I found: Make use of the (unfortunately deprecated) POSIX user context switching to enable releasing the worker thread while waiting. In a nutshell, you create a context with <a href="https://mastodon.bsd.cafe/tags/makecontext" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>makecontext</span></a> that has its own private <a href="https://mastodon.bsd.cafe/tags/stack" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>stack</span></a>, and then you can use <a href="https://mastodon.bsd.cafe/tags/swapcontext" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>swapcontext</span></a> to get off the thread, and later again to get back on the thread. A minor issue is: It must be the *same* thread ... so you might have to wait until it completes something else before you can resume your job. But then, that's probably okayish, you can make sure in your job scheduling to only use worker threads with awaited tasks attached when no other thread is available.</p><p>In my first implementation, I just used <a href="https://mastodon.bsd.cafe/tags/malloc" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>malloc</span></a> to create a 64kiB private stack for each thread job. That's perfectly fine if you can guarantee your job will never consume more stack space, AND it won't have any vulnerabilities allowing some attacker to mess with the stack. But in practice, especially for a library offering this async/await implementation, it's nothing but a wild <a href="https://mastodon.bsd.cafe/tags/CVE" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>CVE</span></a> generator.</p><p>So, I now improved on that:</p><p>* Allocate a much larger stack of now 2MiB. That alone makes issues at least less likely. And on a sane modern OS, we can still assume pages will only be mapped "on demand".<br>* Only allocate the stack directly before running the thread job, and delegate allocation to some internal "stack manager" that keeps track of all allocated stacks and reuses them, only freeing them on exit. This should avoid most of the allocation overhead.<br>* If MAP_ANON / MAP_ANONYMOUS is available, use <a href="https://mastodon.bsd.cafe/tags/mmap" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mmap</span></a> for allocating the stack. That at least gives a chance to stay away from other allocations ....<br>* But finally, if MAP_STACK is available, use this flag! From my research, <a href="https://mastodon.bsd.cafe/tags/FreeBSD" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>FreeBSD</span></a>, <a href="https://mastodon.bsd.cafe/tags/OpenBSD" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>OpenBSD</span></a> and <a href="https://mastodon.bsd.cafe/tags/NetBSD" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>NetBSD</span></a> will for example make sure there's at least one "guard page" below a stack mapped with this flag, so a stack overflow consistently takes the SIGSEGV emergency exit 😆. <a href="https://mastodon.bsd.cafe/tags/Linux" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Linux</span></a> knows this flag as well, but doesn't seem to implement such protection at this time ... 🤔 </p><p><a href="https://mastodon.bsd.cafe/tags/C" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>C</span></a> <a href="https://mastodon.bsd.cafe/tags/coding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>coding</span></a></p>
KubernetesHitachi hiring for Full Stack Developer Hitachi Recruitment 2025 – Hitachi work from home Jobs...<br><br><a href="https://vinkjobs.com/hitachi-recruitment/" rel="nofollow noopener noreferrer" target="_blank">https://vinkjobs.com/hitachi-recruitment/</a><br><br><a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Developer" target="_blank">#Developer</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Jobs" target="_blank">#Jobs</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Full" target="_blank">#Full</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Stack" target="_blank">#Stack</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Jobs" target="_blank">#Jobs</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/IT" target="_blank">#IT</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Jobs" target="_blank">#Jobs</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Bengaluru" target="_blank">#Bengaluru</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Experienced" target="_blank">#Experienced</a><br><br><a href="https://awakari.com/pub-msg.html?id=DPNQ93Ish5R0guDOwmbuDrDDuPA&amp;interestId=Kubernetes" rel="nofollow noopener noreferrer" target="_blank">Result Details</a>
Golang-Job-AlertLumel hiring for Full Stack Developer Lumel Recruitment 2025 – Lumel work from home Jobs&nbsp;|&nbsp;Lu...<br><br><a href="https://vinkjobs.com/lumel-recruitment/" rel="nofollow noopener noreferrer" target="_blank">https://vinkjobs.com/lumel-recruitment/</a><br><br><a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Developer" target="_blank">#Developer</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Jobs" target="_blank">#Jobs</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Full" target="_blank">#Full</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Stack" target="_blank">#Stack</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Jobs" target="_blank">#Jobs</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/IT" target="_blank">#IT</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Jobs" target="_blank">#Jobs</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Chennai" target="_blank">#Chennai</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Experienced" target="_blank">#Experienced</a><br><br><a href="https://awakari.com/pub-msg.html?id=7bU0iksCznQYJsCKTi21nkxibfk&amp;interestId=Golang-Job-Alert" rel="nofollow noopener noreferrer" target="_blank">Result Details</a>
KubernetesFull-Stack Developer Job Openings in Concentrix(0-3yrs) | April 2025 ​Concentrix Corporation is...<br><br><a href="https://alexahire.in/full-stack-developer-job-openings-in-concentrix-april/" rel="nofollow noopener noreferrer" target="_blank">https://alexahire.in/full-stack-developer-job-openings-in-concentrix-april/</a><br><br><a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Blog" target="_blank">#Blog</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Jobs" target="_blank">#Jobs</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Concentrix" target="_blank">#Concentrix</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Concentrix" target="_blank">#Concentrix</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/career" target="_blank">#career</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Full" target="_blank">#Full</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Stack" target="_blank">#Stack</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Developer" target="_blank">#Developer</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/job" target="_blank">#job</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Full-Stack" target="_blank">#Full-Stack</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Developer" target="_blank">#Developer</a><br><br><a href="https://awakari.com/pub-msg.html?id=08xHZ066JHa79jc3yfnPCEV67UW&amp;interestId=Kubernetes" rel="nofollow noopener noreferrer" target="_blank">Result Details</a>
Paul Rigby<p>AUDIOPHILE MAN - HiFi REVIEW: SERENE PLATTER MAT FROM STACK AUDIO<br>Do we really need another turntable platter mat? Paul Rigby thought not until he saw this new design from Stack Audio. To read the review, click: <a href="https://theaudiophileman.com/serene-platter-mat-from-stack-audio-2/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">theaudiophileman.com/serene-pl</span><span class="invisible">atter-mat-from-stack-audio-2/</span></a> <a href="https://mastodon.social/tags/turntable" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>turntable</span></a> <a href="https://mastodon.social/tags/vinyl" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>vinyl</span></a> <a href="https://mastodon.social/tags/platter" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>platter</span></a> <a href="https://mastodon.social/tags/mat" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mat</span></a> <a href="https://mastodon.social/tags/silicon" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>silicon</span></a> <a href="https://mastodon.social/tags/review" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>review</span></a> <a href="https://mastodon.social/tags/HiFi" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>HiFi</span></a> <a href="https://mastodon.social/tags/audiophile" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>audiophile</span></a> <a href="https://mastodon.social/tags/stack" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>stack</span></a></p>
Marcus Green<p>"I wish I could believe you: the frustrating unreliability of some assessment research<br>T Hunt, S Jordan"</p><p><a href="https://scholar.google.co.uk/scholar?as_sauthors=T+Hunt&amp;as_q=I+wish+I+could+believe+you%3A+the+frustrating+unreliability+of+some+assessment+research&amp;as_occt=title" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">scholar.google.co.uk/scholar?a</span><span class="invisible">s_sauthors=T+Hunt&amp;as_q=I+wish+I+could+believe+you%3A+the+frustrating+unreliability+of+some+assessment+research&amp;as_occt=title</span></a></p><p>At the STACK25 conference earlier this month watched Sally Jordan present the keynote. I was very impressed and found this research paper from 2016. The co-author Tim Hunt is the main architect of the <a href="https://fosstodon.org/tags/Moodle" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Moodle</span></a> <a href="https://fosstodon.org/tags/Quiz" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Quiz</span></a> <a href="https://fosstodon.org/tags/engine" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>engine</span></a> and co-maintainer of the <a href="https://fosstodon.org/tags/STACK" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>STACK</span></a> question type.</p><p><a href="https://fosstodon.org/tags/MoodleStack" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>MoodleStack</span></a> <a href="https://fosstodon.org/tags/edtech" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>edtech</span></a> <a href="https://fosstodon.org/tags/education" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>education</span></a> <a href="https://fosstodon.org/tags/assessment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>assessment</span></a></p>
PostgreSQL<br><br><a href="https://www.freelancer.com/projects/postgresql/need-reminder-tool-39335148.html" rel="nofollow noopener noreferrer" target="_blank">https://www.freelancer.com/projects/postgresql/need-reminder-tool-39335148.html</a><br><br><a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/MERN" target="_blank">#MERN</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Stack" target="_blank">#Stack</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Next.js" target="_blank">#Next.js</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/PostgreSQL" target="_blank">#PostgreSQL</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Tailwind" target="_blank">#Tailwind</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/CSS" target="_blank">#CSS</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Typescript" target="_blank">#Typescript</a><br><br><a href="https://awakari.com/pub-msg.html?id=UXsBnEtp9atqowuoXtS1U4cFMwq&amp;interestId=PostgreSQL" rel="nofollow noopener noreferrer" target="_blank">Result Details</a>
MongoDBPython Full Stack Developer Roadmap Python Full Stack Developer Roadmap offers a clear guide to h...<br><br><a href="https://pwskills.com/blog/python-full-stack-developer-roadmap/" rel="nofollow noopener noreferrer" target="_blank">https://pwskills.com/blog/python-full-stack-developer-roadmap/</a><br><br><a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Python" target="_blank">#Python</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Python" target="_blank">#Python</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Full" target="_blank">#Full</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Stack" target="_blank">#Stack</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Developer" target="_blank">#Developer</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Roadmap" target="_blank">#Roadmap</a><br><br><a href="https://awakari.com/pub-msg.html?id=Otyl6d0dc6gqLilXp7Doshun57Y&amp;interestId=MongoDB" rel="nofollow noopener noreferrer" target="_blank">Result Details</a>
MozillaChanging how I read I had a setup that worked well for years. And therein lies the problem: I wan...<br><br><a href="https://zblesk.net/blog/changing-how-i-read/" rel="nofollow noopener noreferrer" target="_blank">https://zblesk.net/blog/changing-how-i-read/</a><br><br><a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/personal" target="_blank">#personal</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/stack" target="_blank">#stack</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/self-hosted" target="_blank">#self-hosted</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/tech" target="_blank">#tech</a><br><br><a href="https://awakari.com/pub-msg.html?id=O309NUurK1nmgVaqO5suglP00O0&amp;interestId=Mozilla" rel="nofollow noopener noreferrer" target="_blank">Result Details</a>
René<p><span class="h-card" translate="no"><a href="https://mastodon.scot/@kim_harding" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>kim_harding</span></a></span> mayby <span class="h-card" translate="no"><a href="https://mastodon.social/@protonprivacy" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>protonprivacy</span></a></span> <a href="https://mastodon.nl/tags/stack" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>stack</span></a> <span class="h-card" translate="no"><a href="https://mastodon.xyz/@nextcloud" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>nextcloud</span></a></span> and other <a href="https://mastodon.nl/tags/cloud" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>cloud</span></a> compagnies can step in. <a href="https://mastodon.nl/tags/proton" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>proton</span></a> <a href="https://mastodon.nl/tags/nextcloud" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>nextcloud</span></a> <a href="https://mastodon.nl/tags/internetarchive" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>internetarchive</span></a> must keep alive. Support by donating</p>
MongoDBPython Full Stack Developer Roadmap Python Full Stack Developer Roadmap offers a clear guide to h...<br><br><a href="https://pwskills.com/blog/python-full-stack-developer-roadmap/" rel="nofollow noopener noreferrer" target="_blank">https://pwskills.com/blog/python-full-stack-developer-roadmap/</a><br><br><a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Python" target="_blank">#Python</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Python" target="_blank">#Python</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Full" target="_blank">#Full</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Stack" target="_blank">#Stack</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Developer" target="_blank">#Developer</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Roadmap" target="_blank">#Roadmap</a><br><br><a href="https://awakari.com/pub-msg.html?id=2mwq78r6db8DLyZofPLA9VvB916" rel="nofollow noopener noreferrer" target="_blank">Event Attributes</a>
TrumpTrump Vs. Ventriloquist: Who’s the Real Puppet? In the latest installment of this series of com...<br><br><a href="https://bookriot.com/trump-vs-ventriloquist/" rel="nofollow noopener noreferrer" target="_blank">https://bookriot.com/trump-vs-ventriloquist/</a><br><br><a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/The" target="_blank">#The</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Stack" target="_blank">#Stack</a><br><br><a href="https://awakari.com/pub-msg.html?id=Xw4tq8SlgZB7OPCABA2d4rxnNJ2" rel="nofollow noopener noreferrer" target="_blank">Event Attributes</a>
MongoDBPython Full Stack Developer Roadmap Python Full Stack Developer Roadmap offers a clear guide to h...<br><br><a href="https://pwskills.com/blog/python-full-stack-developer-roadmap/" rel="nofollow noopener noreferrer" target="_blank">https://pwskills.com/blog/python-full-stack-developer-roadmap/</a><br><br><a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Python" target="_blank">#Python</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Python" target="_blank">#Python</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Full" target="_blank">#Full</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Stack" target="_blank">#Stack</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Developer" target="_blank">#Developer</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Roadmap" target="_blank">#Roadmap</a><br><br><a href="https://awakari.com/pub-msg.html?id=IfxhyAKyEGnwE7EolJziQbkikKG" rel="nofollow noopener noreferrer" target="_blank">Event Attributes</a>
MongoDBDo You Know What is Salary Package for Full Stack Developer? Do You Know What is Salary Package f...<br><br><a href="https://www.sevenmentor.com/do-you-know-what-is-salary-package-for-full-stack-developer" rel="nofollow noopener noreferrer" target="_blank">https://www.sevenmentor.com/do-you-know-what-is-salary-package-for-full-stack-developer</a><br><br><a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Full" target="_blank">#Full</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Stack" target="_blank">#Stack</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Average" target="_blank">#Average</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/salary" target="_blank">#salary</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Full" target="_blank">#Full</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Stack" target="_blank">#Stack</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Developer" target="_blank">#Developer</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/bFull" target="_blank">#bFull</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Stack" target="_blank">#Stack</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Developer" target="_blank">#Developer</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/job" target="_blank">#job</a><br><br><a href="https://awakari.com/pub-msg.html?id=0SGIgS9jyjekZlEobPCDATdoGQq" rel="nofollow noopener noreferrer" target="_blank">Event Attributes</a>
MongoDBJava Full-Stack Development – Everything You Need to Know Java Full-Stack Development – Every...<br><br><a href="https://www.sevenmentor.com/java-full-stack-development-everything-you-need-to-know" rel="nofollow noopener noreferrer" target="_blank">https://www.sevenmentor.com/java-full-stack-development-everything-you-need-to-know</a><br><br><a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Full" target="_blank">#Full</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Stack" target="_blank">#Stack</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/JAVA" target="_blank">#JAVA</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/End-to-End" target="_blank">#End-to-End</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Java" target="_blank">#Java</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Development" target="_blank">#Development</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Frontend" target="_blank">#Frontend</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Technologies" target="_blank">#Technologies</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Full-Stack" target="_blank">#Full-Stack</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Development" target="_blank">#Development</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Full-Stack" target="_blank">#Full-Stack</a><br><br><a href="https://awakari.com/pub-msg.html?id=I7G6pmgbONKIk2Urt4jO12vritM" rel="nofollow noopener noreferrer" target="_blank">Event Attributes</a>
MongoDBPython Full Stack Developer Roadmap Python Full Stack Developer Roadmap offers a clear guide to h...<br><br><a href="https://pwskills.com/blog/python-full-stack-developer-roadmap/" rel="nofollow noopener noreferrer" target="_blank">https://pwskills.com/blog/python-full-stack-developer-roadmap/</a><br><br><a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Python" target="_blank">#Python</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Python" target="_blank">#Python</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Full" target="_blank">#Full</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Stack" target="_blank">#Stack</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Developer" target="_blank">#Developer</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Roadmap" target="_blank">#Roadmap</a><br><br><a href="https://awakari.com/pub-msg.html?id=8U3L7DvP36sqmyPRlB8iH8Ocd3Q" rel="nofollow noopener noreferrer" target="_blank">Event Attributes</a>
MongoDBPython Full Stack Developer Roadmap Python Full Stack Developer Roadmap offers a clear guide to h...<br><br><a href="https://pwskills.com/blog/python-full-stack-developer-roadmap/" rel="nofollow noopener noreferrer" target="_blank">https://pwskills.com/blog/python-full-stack-developer-roadmap/</a><br><br><a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Python" target="_blank">#Python</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Python" target="_blank">#Python</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Full" target="_blank">#Full</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Stack" target="_blank">#Stack</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Developer" target="_blank">#Developer</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Roadmap" target="_blank">#Roadmap</a><br><br><a href="https://awakari.com/pub-msg.html?id=BJ2rQWCybKrChic5EfRoK7rNbJQ" rel="nofollow noopener noreferrer" target="_blank">Event Attributes</a>
MongoDBWhat Is a Full Web Stack? Learn All Key Components What Is a Full Web Stack? Learn All Key Compon...<br><br><a href="https://www.sevenmentor.com/what-is-a-full-web-stack-learn-all-key-components" rel="nofollow noopener noreferrer" target="_blank">https://www.sevenmentor.com/what-is-a-full-web-stack-learn-all-key-components</a><br><br><a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Full" target="_blank">#Full</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Stack" target="_blank">#Stack</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Back-end" target="_blank">#Back-end</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Client-side" target="_blank">#Client-side</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Database" target="_blank">#Database</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/integration" target="_blank">#integration</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Front-end" target="_blank">#Front-end</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Full" target="_blank">#Full</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/stack" target="_blank">#stack</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/components" target="_blank">#components</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Full" target="_blank">#Full</a><br><br><a href="https://awakari.com/pub-msg.html?id=ODeDxme754eRO8ZigR872YB6rzc" rel="nofollow noopener noreferrer" target="_blank">Event Attributes</a>
LLMsThe Inference Bottleneck: Why Edge AI Is the Next Great Computing Challenge In the world of artif...<br><br><a href="https://www.hpcwire.com/2025/04/15/the-inference-bottleneck-why-edge-ai-is-the-next-great-computing-challenge/" rel="nofollow noopener noreferrer" target="_blank">https://www.hpcwire.com/2025/04/15/the-inference-bottleneck-why-edge-ai-is-the-next-great-computing-challenge/</a><br><br><a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Short" target="_blank">#Short</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/Takes" target="_blank">#Takes</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/AI" target="_blank">#AI</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/AI" target="_blank">#AI</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/inference" target="_blank">#inference</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/AI" target="_blank">#AI</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/stack" target="_blank">#stack</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/edge" target="_blank">#edge</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/AI" target="_blank">#AI</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/memory" target="_blank">#memory</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/bandwidth" target="_blank">#bandwidth</a><br><br><a href="https://awakari.com/pub-msg.html?id=ZcrelPqxf9j3om4uwWBa17GAWIK" rel="nofollow noopener noreferrer" target="_blank">Event Attributes</a>
SearchEngineРецензия на книгу «Elasticsearch в действии, 2-е издание» Кн...<br><br><a href="https://habr.com/ru/companies/ssp-soft/articles/901006/?utm_source=habrahabr&amp;utm_medium=rss&amp;utm_campaign=901006" rel="nofollow noopener noreferrer" target="_blank">https://habr.com/ru/companies/ssp-soft/articles/901006/?utm_source=habrahabr&amp;utm_medium=rss&amp;utm_campaign=901006</a><br><br><a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/elasticsearch" target="_blank">#elasticsearch</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/elastic" target="_blank">#elastic</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/stack" target="_blank">#stack</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/elasticache" target="_blank">#elasticache</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/elasticweb" target="_blank">#elasticweb</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/kibana" target="_blank">#kibana</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/поисковые" target="_blank">#поисковые</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/системы" target="_blank">#системы</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/поисковые" target="_blank">#поисковые</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/технологии" target="_blank">#технологии</a> <a rel="nofollow noopener noreferrer" class="mention hashtag" href="https://mastodon.social/tags/поисковые" target="_blank">#поисковые</a><br><br><a href="https://awakari.com/pub-msg.html?id=J80pPGEJk8YeMijSNhm6nhNGMSG" rel="nofollow noopener noreferrer" target="_blank">Event Attributes</a>