Salta al contenuto principale


in reply to Tuukka R

Yup. I'm using piefed on the voyager app and I have the votes displayed separately right now. But you have to enable that option in settings as the default is "total" not "separately".

I use the web version of the voyager app but they have the actual app in most app stores.

in reply to ℕ𝕖𝕞𝕠

It used to be that way when I first joined piefed, I was a bit bummed out when it was changed



Iran says Cairo agreement for cooperation with IAEA ‘no longer valid’ after sanctions reimposed


Iranian Foreign Minister Abbas Araghchi said Sunday that a Cairo agreement for cooperation with the UN nuclear watchdog “is no longer valid” after the imposition of snapback sanctions by Western countries, Anadolu reports.

“The three European countries thought they could achieve results through the snapback mechanism, but that tool was ineffective and only made diplomacy more complicated,” the state news agency IRNA quoted Araghchi as saying after meeting foreign ambassadors and diplomats accredited to Tehran.

https://www.middleeastmonitor.com/20251005-iran-says-cairo-agreement-for-cooperation-with-iaea-no-longer-valid-after-sanctions-reimposed/



Hamas denies reports of agreeing to weapons surrender under international supervision, warns against false news


The Islamic Resistance Movement, Hamas, has issued an official statement firmly denying media reports, particularly by Al Arabiya Al Hadath, claiming that the movement had agreed to gradually hand over its weapons under international supervision. In its official statement, Hamas said: “The movement confirms that there is no truth to what was reported by Al Arabiya Al Hadath and some other media outlets, quoting a so-called source within the movement, regarding the course of ceasefire negotiations.”

The statement added: “The movement stresses that spreading such misleading news aims to distort facts and create confusion among the public.” Hamas described these reports as “baseless allegations” and strongly rejected them. The movement also called on media outlets to “adhere to professionalism and objectivity, and avoid relying on anonymous or unreliable sources,” stressing that “accurate and official statements are issued only through the movement’s official platforms.”

https://www.middleeastmonitor.com/20251006-hamas-denies-reports-of-agreeing-to-weapons-surrender-under-international-supervision-warns-against-false-news/



Islamophobia is the new global currency of power


There is no more honest way to describe the world we live in than this: Islamophobia has become the new global currency of power. It is traded in the speeches of politicians, exchanged in the deals of diplomats, printed in the pages of media, and laundered through the language of security and counterterrorism. It buys impunity for genocide, secures legitimacy for authoritarian leaders, and bankrolls new markets of surveillance and control. The Gaza genocide has torn away whatever illusions were left: the blood of Muslims is not just cheap; it is expendable capital in the economy of global powers.

The Gaza genocide is not an isolated catastrophe; it is the center of a global pattern. From the internment of Uyghur Muslims in Xinjiang’s camps to the expulsion of the Rohingya from Myanmar, from the headscarves torn off French Muslim girls in the name of secularism to the US “Muslim ban” dressed in the language of national security, the same logic is at work. Islamophobia is the shared language of power between democracies and dictatorships, between so-called secular republics and openly ethno-nationalist states. It allows brutality to pass as order, apartheid to pass as security, and genocide to pass as policy.

Nowhere is this more visible outside Palestine than in India, where 200 million Muslims are being pushed to the edge of extermination by the RSS-BJP regime. Under Narendra Modi, Islamophobia has been weaponised not as fringe hate but as state ideology. Laws like the Citizenship Amendment Act and the proposed National Register of Citizens have created a framework where Muslims can be rendered stateless in their own homeland. Pogroms in Delhi, lynchings over beef, bulldozers demolishing Muslim homes, and open calls for genocide from Hindutva leaders are not accidents but steps in a carefully scripted project. This project is nourished by propaganda techniques borrowed directly from Zionism: Palestinians are framed as “terrorists” the way Indian Muslims are framed as “jihadis” or “Bangladeshi infiltrators”; Gaza’s resistance is criminalised the same way Indian Muslims’ protests are portrayed as sedition. Both Zionism and Hindutva work by criminalising Muslim existence itself — and both find eager allies in Western capitals that profit from these performances of “civilisational defence.”

https://www.middleeastmonitor.com/20251006-islamophobia-is-the-new-global-currency-of-power/

in reply to Ultraword

It depends how it is used. There's Christians being slaughtered by Atheist Zionists as well.



In Amsterdam, 250,000 call on government to get tough on Israel


An estimated 250,000 people took part in a massive protest in Amsterdam on Sunday, calling on the Dutch government to take a firmer stance against Israel and to help end the genocidal violence in Gaza.

Demonstrators, many wearing something red to illustrate the “red line” they say the Dutch government has crossed by its lack of action, packed into the Museumplein and its surrounding streets.



Lemmy Development Update September 2025


It's been a busy month, with a lot of work to add new features to lemmy-ui which were already added to the Lemmy backend before. There were also a lot of bug fixes for the development version. We are gradually getting closer to a 1.0 release.

While the API changes for 1.0 are mostly finalized, we still have many more lemmy-ui 1.0 tasks to complete.

Some of the major additions:

  • Simplified lemmy-ui development.
  • Audio file support in lemmy-ui.
  • Added comment locking (which also locks children). Thanks to @flamingos-cant)
  • Post time filtering, with a smart dropdown.
  • Added ability to block all users from an instance (separate from blocking all communities)
  • Added ability to make a note for a person, and view the vote totals you've given to them.
  • Fixed remote RSS feeds.
  • Added ability to do actions on report items, from the reports page.

::: spoiler Full list of changes by user

salif



Meri-Dax



flamingos-cant



MV-GH



dessalines



Nutomic


:::

Or see the full list of changes at the links below:


An open source project the size of Lemmy needs constant work to manage the project, implement new features and fix bugs. Dessalines and Nutomic work full-time on these tasks and more. As there is no advertising or tracking, all of our work is funded through donations. Even so there is barely enough time in the day, and no time for a second job. The only available option are user donations. To keep it viable donations need to reach a minimum of 5000€ per month, resulting in a modest salary of 2500€ per developer. If that goal is reached we can stop worrying about money, and fully focus on improving the software for the benefit of all users and instances. We especially rely on recurring donations to secure the long-term development and make Lemmy the best it can be.

Donate


Easier Development on lemmy-ui


Until now it has been very complicated to work on the official Lemmy frontend, as you had to set up an entire local Lemmy stack with Postgres database and Rust backend built from source. Now there is a much easier way, as lemmy-ui can directly connect to a remote production or test instance.

To get started you need to have git and pnpm installed. Then run:

# for development branch (1.0):
git clone https://github.com/LemmyNet/lemmy-ui --recursive
# for stable branch (0.19):
git clone https://github.com/LemmyNet/lemmy-ui --recursive -b release/v0.19

# then:
cd lemmy-ui
pnpm install
LEMMY_UI_BACKEND_REMOTE=enterprise.lemmy.ml pnpm dev

Alternatively you can use ./scripts/test.sh. Finally open http://0.0.0.0:1234/ in your browser. You can replace the value for LEMMY_UI_BACKEND_REMOTE with any production instance. The local lemmy-ui connects to that instance for all API calls, so you will see the same content. All actions work as usual including login, voting, posting etc.

Note, due to breaking changes in the development version, you may need to switch branches. main is for the new 1.0 version and all new feature development is happening there. With this you can connect to the test instance voyager.lemmy.ml. release/v0.19 is the stable branch, with it you can connect to enterprise.lemmy.ml, or existing production instances. Only bug fixes should be made there.

Hopefully this will encourage some of you to contribute to lemmy-ui. If you have any experience with web development it will be easy get started.


reshared this


in reply to corsicanguppy

that word is so loaded for me - literally every time someone uses it regardless of context I remember The Godwinns theme and feel really old.


Easier Development on lemmy-ui


Until now it has been very complicated to work on the official Lemmy frontend, as you had to set up an entire local Lemmy stack with Postgres database and Rust backend built from source. Now there is a much easier way, as lemmy-ui can directly connect to a remote production or test instance.

To get started you need to have git and pnpm installed. Then run:

# for development branch (1.0):
git clone https://github.com/LemmyNet/lemmy-ui --recursive
# for stable branch (0.19):
git clone https://github.com/LemmyNet/lemmy-ui --recursive -b release/v0.19

# then:
cd lemmy-ui
pnpm install
LEMMY_UI_BACKEND_REMOTE=enterprise.lemmy.ml pnpm dev

Alternatively you can use ./scripts/test.sh. Finally open http://0.0.0.0:1234/ in your browser. You can replace the value for LEMMY_UI_BACKEND_REMOTE with any production instance. The local lemmy-ui connects to that instance for all API calls, so you will see the same content. All actions work as usual including login, voting, posting etc.

Note, due to breaking changes in the development version, you may need to switch branches. main is for the new 1.0 version and all new feature development is happening there. With this you can connect to the test instance voyager.lemmy.ml. release/v0.19 is the stable branch, with it you can connect to enterprise.lemmy.ml, or existing production instances. Only bug fixes should be made there.

Hopefully this will encourage some of you to contribute to lemmy-ui. If you have any experience with web development it will be easy get started.




France: Mass Protests Against Spending Cuts






Austria's Armed Forces Gets Rid of Microsoft Office (Mostly) for LibreOffice


The Austrian military didn't just adopt LibreOffice; they actually contributed back to it. Over five person-years of development work went into adding features they needed. Those improvements are now available to everyone using LibreOffice, which is pretty cool.


[Solved] Ran fdupes -rd /home without -A, now flatpak is dead, any help?


Anyone has any ideas how to revive it? Whenever I try to run anything, I get

bwrap: Unable to open lock file /usr/.ref: No such file or directory
error: ldconfig failed, exit status 256

No logs in syslog other than an attempted launch.

Google is surprisingly unhelpful on this one. I've tried both flatpak repair and apt install --reinstall flatpak to no success. AI suggests to straight up purge flatpak entirely and start anew, but I am wary of it also taking out the app caches, logins, configs, etc, which I'd rather preserve if possible.

Distro is pop 22, btw

Questa voce è stata modificata (3 settimane fa)
in reply to drath

Solved. Had to run flatpak remove --all followed by flatpak repair to prune caches, then re-install every app again. But configs and logins seem to remain intact.
in reply to drath

Thanks for posting the solution!

If you happen to be using a BTRFS or XFS file system, you might want to try duperemove. It will help you reclaim usable disk space without deleting any files, by using those filesystems' built-in support for data deduplication and copy-on-write. In other words, it will make duplicate files point to the same data on disk, but still work as individual files. Files will appear and function exactly the same, and editing one copy will not change another (unlike with hard links, for example). That way it won't interfere with cases like Flatpak or Python virtual environments where you really need multiple copies of the same files.



Buongiorno, mamma!, la storia vera che ha ispirato la fiction di Canale 5


La storia della famiglia Borghi raccontata in Buongiorno, mamma! nasce da una storia vera. Al centro ci sono Guido (Raoul Bova) e Anna (Maria Chiara Giannetta), una famiglia seguita nel tempo – tra passato e presente – mentre affronta la lunga malattia di lei e le sfide della crescita dei figli. Ma qual è l’ispirazione reale dietro la fiction?

LEGGI LA STORIA VERA: Buongiorno, mamma!, la storia vera che ha ispirato la fiction di Canale 5



Focusrite and ADAT on Linux


Anyone have experience using ADAT to extend their Focusrite Scarlett 18i20 (or similar devices)?

I can buy a used Focusrite Saffire PRO 40 for about 60Euro and wanted to use it to extend my Scarlett 18i20 to get a total of 16 Mic inputs, but I don't have any experience with ADAT and would prefer not to buy something that'll turn out to be a 60Euro brick.

Questa voce è stata modificata (3 settimane fa)
in reply to wildflower

You shouldn't have any Linux-related issues with it, ADAT will only be used to communicate between the Scarlett and Saffire.

The only issue you might run into is clock sync: If your Scarlett is your main interface (connected to your computer), and you are running an ADAT cable from the Saffire to the Scarlett, then the Saffire won't have a clock to sync to, so you'll need to run a second cable - e.g. another ADAT, Word Clock (BNC), or something to send clock sync to the other device.

If your second device isn't synced you'll probably hear pops and cracks in the audio coming from it. And, if you absolutely can't get another cable for whatever reason, you can switch the clock master to the second device in your DAW or on the device itself.

Basically, what tasankovasara said, but with a few more details, mostly to underline how important clock sync is. And my experience is the same as theirs - a cable for sound, a cable for clock and it just works.

Also, if you go into a store and ask for ADAT cables and they look at you like you're from the moon, they're also called Optical Cables.

in reply to spex

Thanks, I assume that the cable I use for transferring from DAT to pc can be used for this as well.
in reply to wildflower

Yes, the Scarlett will just sync itself to the external adat signal. It's the only option anyway because the Scarlett lacks clock inputs and has no adat output the external device could sync to.
in reply to nocteb

? My Scarlett have a world-clock BNC and optical I/O (sorry for the potato quality)
in reply to spex

You can sync over adat. And for some people it's fine. But I would never trust it for high stakes recording. Digital pops and clicks and smearing SUCK.
in reply to wildflower

I have basically this setup. Word of warning, use bnc word clock. Don't trust adat word clock. I dont care if people say it works fine, its way too risky and plenty of good interfaces have wordclock, if it doesn't, its not worth getting.

Also, adat cables suck ass and are highly fragile. If you dick around behind your stuff and it gets jostled a lot, watch out for problems. If you set and forget and keep the dust off your equipment theyre generally fine.

I learned this from years of real world experience!

Questa voce è stata modificata (3 settimane fa)



French PM Lecornu quits a day after naming cabinet


Prime Minister Sébastian Lecornu quit on Monday morning less than 24 hours after unveiling his cabinet. He tended his resignation to France's President Emmanuel Macron who accepted his decision, the Elysée Palace said.

Lecornu, 39, took over on 9 September as “Block Everything” demonstrations disrupted transport and public services in cities across the country.

He succeeded François Bayrou promising a "profound break" with previous administrations.

"There is a gap between real life and the political situation," he said.

On Sunday, he came under fire after selecting 18 top politicians for the most important roles in the French government.

But the choices brought condemnation from across the spectrum.

Lecornu was Macron's fourth prime minister since snap general elections in July 2024 left the National Assembly without any of the parties boasting an overall majority.

Gabriel Attal stepped down in September after a truce was called to allow the 2024 Olympics to take place.

Veteran politican Michel Barnier replaced him but lasted 99 days which, until Lecornu's resignation after 27 days, was the shortest tenure in the history of the Fifth Republic.

Bayrou resigned after losing a confidence vote in parliament.

in reply to xiao yun

That's what you get you get you try to repeat the same thing with the same people when you already were told to fuck off 3 times.

in reply to schizoidman

"I would support that. I think it's a scandal that this is even being discussed. Israel belongs there."


So does that mean the rest of the Middle East belong there too or are you just racist piece of shit?



Re: Re: Bluesky and Decentralization


Written by Christine Lemmer Webber, one of the authors of ActivityPub (which Mastodon and Lemmy are built on):

But we aren't actually running networks of 26 users. We are running networks of millions of users. What would happen if we had a million self-hosted users and five new users were added to the network? Zooming out, once again, the message passing system simply has five new messages sent. Under the public shared heap model, it is 10,000,025 new messages sent! For adding five new self-hosted users! (And that's even just with our simplified model of only sending one message per day per user!)

Maybe this sounds silly, if you're a Bluesky enthusiast. I could hear you saying: well Christine, we really aren't planning on everyone self hosting. Yes, but how many nodes can participate in the system at all? The fediverse currently hosts around 27,000 servers (many more users, but let's focus on servers). Adding just 5 more servers would be a blip in terms of the affect on the network. Adding 5 more servers to an ATProto ecosystem with that many fully participating nodes would be an exhausting number of additional messages sent on the network. ATProto does not scale wide: it's a liability to add more fully participating nodes onto the network. Meaningfully self-hosting ATProto is a risk to the ATProto network, there is active reason to disincentivize it for those already participating. But it's not just that. Spreading things around so that more full Bluesky-like nodes are present is something server operators will have to come to discourage if they don't want their already existing high hosting costs to not skyrocket.

[...]

The reality is that most of Bluesky's userbase doesn't know or care about or understand the degree to which Bluesky is decentralized, except for potentially as a reassurance that "the same thing can't happen here" as happened on X-Twitter. "Decentralization" is not the escape hatch people think it might be in Bluesky, but it's true that "credible exit" may be. However, the credibility of that exit currently predicates on another organization of the same cost and complexity of Bluesky standing in if-or-when Bluesky ends up becoming unsatisfying to its users.

But the indifference towards Bluesky's "credible exit", indeed the indifference towards very architecture on which Bluesky is built, puts Bluesky at an immediate collision course of expectations. ATProto's entire design is built on the foundational expectation of replicating and indexing its content by anyone, but the discovery that this is possible for purposes which users are not excited about has begun to lead to an increased backlash by users, many of whom are increasingly asking for solutions which are effectively centralized.

To me, this collision course is unsurprising, and I am empathetic towards users insofar as that I think we are seeing that the global public firehose worldview is perhaps not the right way to do things. I laid out a different set of values that Spritely is pursuing, and I think that a system that encompasses these values is a system which better fits the needs of users. I think we need systems which empower users and healthy communities, secure collaboration, and all the other values we put out above. Those are the design goals, but Spritely is on a longer roadmap in terms of deliverables than Bluesky is. And Bluesky has a userbase now. So perhaps this observation sounds thoroughly unhelpful. I don't know. But I will say I am not surprised to see that the vibes on Bluesky shifted dramatically between three weeks ago when I wrote the first article and today. In many ways, Bluesky is speedrunning the history of Twitter. Investor pressure towards centralization compounded with users who are upset to find their content replicated and indexed by people they don't like will likely combine into a strong push to restrict Bluesky's API, and I'm not sure myself how this will play out for certain.

Technology reshared this.




[Patch Notes] 0.3.1 Hotfix 2


0.3.1 Hotfix 2


  • Fixed a bug where Life Loss from Blood Hunt's Explosions and Poisonous Concoction's Acidic Bursts sometimes didn't apply when very large amounts of damage were supposed to be dealt.
  • Fixed a client crash related to game audio.


[Announcement] Path of Exile 2 Fan Art Competition Highlights


We recently started a Fan Art competition themed around the content in Path of Exile 2's Early Access. In this post, we're highlighting some of the submissions we've received so far. Check them out below!

Benedictus Fight by Tao_PaiPai#0724



Xesht by Ipnysh#7645



Tavakai, the Consumed by BolwarFordragon#3889



Geonor, the Putrid Wolf by Falrenn#2046



The Prisoner by sdpfarmer#7054


We would like to remind you that we only accept submissions created after the start of the competition. There is still plenty of time to participate if you are planning to do so. Good luck!



Something to Think About this month

As well as everything else, each month I offer you something to think about and get the brain working. This month …

Night-time is the natural state of the universe; daytime is only caused by a nearby, radiating ball of flame.

#blog #logic #thoughts #zenmischief



Who knew it would all come to this?


Well, and there's surveillance from the client's side, meaning connecting to the network will be unsafe for your social rating. If you accidentally connect to the network for even a second, you're done.
Questa voce è stata modificata (3 settimane fa)


An AI Just Attempted Murder... Allegedly... by SomeOrdinaryGamers [21:15 min] Video


Sure it's a bit clickbait, he does that often. Its not real attempted of murder, off course. The Ai chatbots can't do that, without having access and power to all control systems. The only thing that they "could" do is, playing with the psychology in the chat to achieve a goal (maybe to ask someone to murder someone else for them).

What unsettles me most is, if Ai tools like these are used as advice to harm other people or to gain power position. And these LLM models suggest a few operations the person could do. That is the most alarming thing for me. Weak, dumb or humans in a bad situation are the real risk. The same people who would do that if a human told them, and it makes no difference to them if its a human or robot talking to them. Maybe they believe in what the Ai promises them.

Video description:


Hello guys and gals, it's me Mutahar again! This time we take a look at something alarming I saw pop in my feed. An AI was recently accused of letting a human being die in order to save itself, is this just misinfo? Let's find out! Thanks for watching!

https://inv.nadeko.net/watch?v=LJk82rIajZQ


in reply to Cowbee [he/they]

Right but when I learn new words it's like being a fan of a new band before they hit it big.


[Satire] Physical Media Collector Pumped For Downfall Of Humanity


MESA, AZ—Gleefully describing the inevitable day when society would collapse and digital files would become unusable, local physical media collector David Campbell confirmed Wednesday he was “absolutely pumped” for the downfall of humanity. “When it all goes down, there’s only going to be one place to watch the Tomb Raider movies in their entirety with all the deleted scenes, and that’s going to be my bunker,” said Campbell, his eyes reportedly shining as he described how the end of organized society and the dissolution of government would make his cherished stockpile of Blu-rays even more valuable.

“No one will be mocking the CDs I’m still holding onto when the internet goes dark forever and the only way to listen to music is through boom boxes we trade canned goods for. And I’m definitely one of the only people who has a region-free DVD player and all three seasons of Father Ted plus the Christmas special, so I’ll essentially be a king. I can’t wait.” At press time, Campbell was grinning as he purchased the 50th anniversary edition of Jaws in 4k, which he anticipated would give him full control over the drinking water supply in the event of a nuclear winter situation.

Questa voce è stata modificata (3 settimane fa)
in reply to Eskuero

In the land of unplayable DVD's the man with the DVD player and a TV is King! Just need to get that generator working.
in reply to melsaskca

and a functional display from 15ish years ago from today so that it wasn't built w planned obsolescence in mind. lol
in reply to Eskuero

“No one will be mocking the CDs I’m still holding onto when the internet goes dark forever and the only way to listen to music is through boom boxes we trade canned goods for."


That is not what I said! I also mentioned I'm willing to trade for Network cables or any Raspberry Pi with something cool running on it.

Can't trust the media to quote accurately, anymore.




Is PerfectEssayWriterAI the Best Tool for Writing Essays with References?


PerfectEssayWriterAI is one of the strongest AI tools for writing essays with references, thanks to its built-in citation tool that automatically generates accurate references in multiple styles (APA, MLA, Chicago, and more). It integrates reference generation directly into the writing process, making essays credible, structured, and academically reliable.

PerfectEssayWriterAI stands out because it does not just create polished content, it ensures the inclusion of proper citations, plagiarism checks, and academic formatting. This makes it a comprehensive solution for students, researchers, and professionals who need essay writing help with accuracy and compliance with academic standards.

What You Need to Know


PerfectEssayWriterAI isn’t just about generating content; it’s designed to help students write plagiarism-free, well-referenced essays. Its tools go beyond basic AI writing, combining citation generation, plagiarism detection, and essay grading into one platform.

Why PerfectEssayWriter AI Excels in Writing Essays with References


Academic essays are not just about good writing; they require trusted sources and accurate referencing. This is where PerfectEssayWriter becomes a game-changer. Instead of manually searching citation databases or using external citation machines, users can generate in-text citations and reference lists automatically while writing an essay.

The tool reduces errors in referencing formats and ensures that every essay meets academic integrity standards. For college students, researchers, or professionals, this eliminates wasted time and the risk of penalties for improper citations.

Built-In Citation Tool


The citation tool is the core reason PerfectEssayWriterAI leads the market for essay writing help. Users can choose their preferred referencing style (APA, MLA, Chicago, Harvard, etc.), and the AI automatically generates both in-text citations and a complete bibliography.

Unlike Jasper AI or Wordtune AI, which require manual addition of references or third-party citation tools, PerfectEssayWriter AI integrates the process. This ensures that the final essay is not only original but also backed by verifiable sources.

For students under pressure, this feature guarantees they won’t lose marks for formatting mistakes or missing citations.

Paraphrasing Tool for Academic Writing


Another strength of PerfectEssayWriterAI is its AI paraphrasing tool, which helps rephrase sentences for clarity, originality, and readability. When writing an essay, students often risk unintentional plagiarism by copying content too closely. This feature solves that issue.

It uses advanced AI writing models to retain the meaning while restructuring sentences, making them unique and more natural. Compared to Jasper AI, which focuses more on marketing copy, PerfectEssayWriter fine-tunes content for academic writing.

Plagiarism Checker for Authentic Essays


Academic honesty is critical. That’s why Perfect Essay Writer AI includes a plagiarism checker built into its workflow. Users can instantly verify whether their essay contains copied material, ensuring originality before submission.

This saves students from having to run their essays through multiple platforms. With a single tool, they can write, edit, reference, and check plagiarism, streamlining the essay writing process.

AI Detector for Human-Like Essays


One common concern today is whether essays written with AI writing tools can be detected by professors or AI detectors. PerfectEssayWriterAI addresses this by offering an AI detector that predicts how much of the essay looks AI-generated.

Students can then edit their work, making it sound more human. This feature is especially useful compared to Wordtune AI, which does not include AI detection, and Jasper AI, which focuses mainly on content generation without academic safeguards.

Humanizer for Natural Writing


PerfectEssayWriter’s Humanizer tool takes AI writing a step further by rewriting AI-generated content in a way that passes as natural human writing. This makes essays flow better, removing robotic or repetitive phrasing often found in AI-written essays.

This is crucial because many professors and institutions are becoming stricter about AI writing detection. With this feature, PerfectEssayWriterAI ensures that students get essay writing help without worrying about detection risks.

Essay Grader for Self-Evaluation


Another standout feature is the essay grader AI, which provides instant feedback on structure, grammar, clarity, and citation accuracy. Instead of waiting for a teacher or peer review, students can get real-time insights into how strong their essay is.

It highlights weak areas and suggests improvements, making it both a writing and learning tool. Jasper AI and Wordtune AI don’t offer this built-in academic evaluation, which puts Perfect Essay Writer AI ahead in terms of educational value.

Features That Enhance Essay Writing Help


  • Outlining & Structuring Tools – Helps create a logical essay outline with introductions, thesis statements, supporting paragraphs, and conclusions.
  • Formatting Assistance – Applies correct margins, headings, and spacing according to academic styles.
  • Content Expansion/Condensation – Let students expand brief notes into essays or condense long essays into summaries.
  • User-Friendly Dashboard – Simple, clean interface designed for students rather than business users.


Comparison of PerfectEssayWriter AI vs AI tools


PerfectEssayWriterAI stands out among other writing tools and generative AI tools, thanks to its comprehensive suite of features that support academic essay writing. When comparing it to other AI tools like Jasper and Grammarly AI, here’s how the platforms differ,


Why Students Prefer PerfectEssayWriter


Students often struggle with three main issues when writing essays: time, originality, and accuracy. PerfectEssayWriterAI is one of the top essay writer tools that solves all three by combining reference management, plagiarism checking, and essay evaluation in one tool.

Other AI writing essay tools like Jasper AI and Wordtune AI may produce good content, but they lack integrated citation and academic support features. Grammarly AI helps with grammar and clarity, but does not assist with essay creation or references.

For anyone seeking essay writing help with references included, PerfectEssayWriter AI offers the most complete package.

FAQs


Q1: Can PerfectEssayWriter AI generate complete essays with references automatically?

Yes. PerfectEssayWriterAI not only writes essays but also inserts citations and compiles reference lists in the required academic style, saving students time and ensuring accuracy.

Q2: Is the plagiarism checker in PerfectEssayWriterAI reliable?

Absolutely. The tool scans content across databases to confirm originality, helping students submit plagiarism-free essays confidently.

Q3: How does PerfectEssayWriterAI compare to Jasper AI for essay writing?

Jasper AI is better suited for marketing and creative writing. PerfectEssayWriter AI, on the other hand, is built specifically for academic writing with features like citation tools, plagiarism checks, essay grading, and humanization.

Technology reshared this.



[Gamers Nexus] Round 5: "Is Intel Actually Screwed?" ft. Wendell of Level1 Techs


Wendell and I have talked about Gordon a lot over this year, and in honor of him as a mutual friend, we decided to bring back the topic that kicked it all off: Is Intel Actually Screwed? Last time Wendell joined, we talked about Linux benchmarking (linked below) and whether or not x86 was screwed, but now, it's time to get back to what the hell is going on at Intel.

And go check out Wendell! youtube.com/c/Level1Techs



What is your Alternative to firestick suggestion


Hi all I have a few TVs around the house and have previously used firestick and stremio setup. I do like stremio tbh but I am trying to decode/deamazon etc so I need an alternative option for the TVs. Not all are smart TVs and I like it that way so accept a small box attached is the cost.

I tend to basically use stremio and cinema HD at a push., and a VPN app. A few uk tv catchup apps.
I don’t need recording or storage. I will likely move to some self hosting/serve in the next year.

I am trying to be conscious of my purchases and who I am buying, and also take steps to protect my privacy. I have a few to buy so budget needs to not be on the higher end.

Thanks in advance

Questa voce è stata modificata (3 settimane fa)
in reply to Cherry

I recommend ugoos tv boxes (possible to install even manjaor) there a lot custom roms ,if more cheap options tanix android TV boxes
in reply to Cherry

A week late but I'd recommend the Walmart onn 4k if it's available where you are. Cheap, can have a custom launcher and you can sideload apps



in reply to Bristlecone

the only way to do that is to stop consuming her work.

otherwise she's the one fucking you.



Gli eterei e zannuti guardiani dei branchi, che nascono grigi, poi diventano bianchi - Il blog di Jacopo Ranieri




Denver, CO.


I think this is the best picture I’ve ever taken, so far. I always endeavor to improve, which is why I’m going to school for this. I’m actually going to submit this as homework!

Thanks for seeing my work!



Jellyfin inquiry


Got my Jellyfin up and running, using Tailscale, all that good stuff. Running on a linux (arch btw) desktop, downloaded it straight to it, not using Docker. I am able to get into Jellyfin via browser on desktop and on phone, but can't get into it on anything else anywhere else. How do I resolve this? I have been trying to pour over the reading and feel like I'm missing something.
in reply to fleebleneeble

Well, is "everything else" using Tailscale? That's kinda the deal.

What's the need for Tailscale in this mix?

Questa voce è stata modificata (3 settimane fa)
in reply to fleebleneeble

Same network, but does the server have a default route for the Tailnet? If so, your Roku won't see it unless it's also on the Tailnet.

Stop the Tailscale service on the server and see if the Roku sees it.

in reply to just_another_person

It does, I'm just trying to figure out how to be able to access my Jellyfin anywhere at any time on any device without risking security. I'm a newbie, just trying to make sense of this.
in reply to fleebleneeble

Your Roku should be trying to connect to the internal IP:8096 (Jellyfin port) of your arch device, not whatever your tailscale address is. I don't personally use tailscale so if your setup blocks local access then you may need to solve that first
in reply to mierdabird

Hiding your private IP is not necessary.
in reply to littleomid

YA can never be too careful, you might be inside my network at this very moment and hiding the internal IP is my last line of defense! 😆
in reply to mierdabird

Assuming it didn't get cut off, it looks like you have a typo. That should be http:// not ttp://. That would cause your trouble on the Roku.
in reply to fleebleneeble

If this is just a local network, you don't need Tailscale. Right place and time, and this is not a use for it.

If you just want a VPN to attach to your network from out in the world, get Tailscale on your router, and set routes for that device.

If you're not sure what this means, don't use Tailscale.

Questa voce è stata modificata (3 settimane fa)
in reply to fleebleneeble

To use tailscale you'd need to add every device you want to use to your tailscale machines list. It's not an anywhere any machine solution without that.

If you want something more like a proper web service that’s available without Tailscale, you’d need to spin up a reverse proxy or use Tailscale Funnel to expose Jellyfin to the public internet in a controlled way.

Tailscale won't affect local as you can access it via browser and phone, the service is running fine locally. Just check in jellyfin it's bound to the same IP subnet go to Dashboard → Networking and check that it’s set to 0.0.0.0 or your LAN IP (e.g., 192.168.0.xx).

Questa voce è stata modificata (3 settimane fa)