[-] MarshReaper@lemmy.world 10 points 4 months ago

In today's news, Microsoft commits treason against the United States Government.

!remindme 6 months

I wonder what the outcome will be.

[-] MarshReaper@lemmy.world 4 points 5 months ago* (last edited 5 months ago)

I am having thoughts that I wonder if others may agree with. What if with the use of this tool on most linux newbie systems, the background processes of clamav scanning causes slowdown on their computers causing doubt in their try of Linux?

[-] MarshReaper@lemmy.world 5 points 5 months ago

"ClamAV is a free and open-source antivirus software and a cross-platform antivirus toolkit. Its primary purpose is to detect various kinds of malicious software, i.e. viruses, worms, trojans, rootkits, and many other forms of possible threats to your system."

As ClamAV only offers a command line interface to its features, I elected to make a pretty UI to give less technical end users an easy way to manage this antivirus backend.

[-] MarshReaper@lemmy.world 5 points 5 months ago

I do not find it very useful to myself as we all know that "common sense is the best antivirus", but I was a bit upset how run down the front end applications for it have been.

[-] MarshReaper@lemmy.world 7 points 5 months ago

It's the best I know 😆

[-] MarshReaper@lemmy.world 9 points 5 months ago

Do not worry! There is no need to install the game engine at all or compile your own binary. I just write that on the release description because it's bad practice to run random files from the internet with escalated privileges.

If it were to be distributed, all one would need is to install and open.

63
ClamAV Frontend in Godot (autumn.revolt.chat)
submitted 5 months ago by MarshReaper@lemmy.world to c/linux@lemmy.world

This might be good. Hope you enjoy what I made.

cross-posted from: https://lemmy.world/post/16356895

I hope this software is useful to those who feel they need it.

Available on codeberg: https://codeberg.org/MarshReaper/GuardianSecurityCenter/releases/latest

This is a client that makes use of the ClamAV packages available in most repositories. It is made to replace ClamTK and check that box for people wanting to use Linux.

Some features are still in development, so not for production use just yet. But, you can run a quick scan and update signatures which is basic enough for most users.

I saw a video DistroTube posted and it made me a bit confused. It was about the Kasperky being offered on Linux. If you have seen the comments you would understand.

Anyways, this had me remember people I know ask me about anti viruses on Linux. I tried ClamTK, but it is very unintuitive and has a somewhat broken workflow.

I hopped on Godot and searched for an image of a popular antivirus software. I then made the software using the pretty layout that many people are used to.

I learned some things about Godot and I hope others will too with this project. Enjoy!

Also, if anyone could help me find the best way to distribute this software that would be great! (flatpak? repos? it requires administrative privileges)

[-] MarshReaper@lemmy.world 13 points 5 months ago

Linux Mint. She opens Firefox to check her emails and work panel. Only complaint is that it is my old giant laptop that I let her have. I will give her a different one soon.

85
ClamAV Frontend in Godot (autumn.revolt.chat)

This might be good. Hope you enjoy what I made.

cross-posted from: https://lemmy.world/post/16356895

I hope this software is useful to those who feel they need it.

Available on codeberg: https://codeberg.org/MarshReaper/GuardianSecurityCenter/releases/latest

This is a client that makes use of the ClamAV packages available in most repositories. It is made to replace ClamTK and check that box for people wanting to use Linux.

Some features are still in development, so not for production use just yet. But, you can run a quick scan and update signatures which is basic enough for most users.

I saw a video DistroTube posted and it made me a bit confused. It was about the Kasperky being offered on Linux. If you have seen the comments you would understand.

Anyways, this had me remember people I know ask me about anti viruses on Linux. I tried ClamTK, but it is very unintuitive and has a somewhat broken workflow.

I hopped on Godot and searched for an image of a popular antivirus software. I then made the software using the pretty layout that many people are used to.

I learned some things about Godot and I hope others will too with this project. Enjoy!

Also, if anyone could help me find the best way to distribute this software that would be great! (flatpak? repos? it requires administrative privileges)

0
ClamAV Frontend in Godot (autumn.revolt.chat)
submitted 5 months ago* (last edited 5 months ago) by MarshReaper@lemmy.world to c/godot@programming.dev

I hope this software is useful to those who feel they need it.

Available on codeberg: https://codeberg.org/MarshReaper/GuardianSecurityCenter/releases/latest

This is a client that makes use of the ClamAV packages available in most repositories. It is made to replace ClamTK and check that box for people wanting to use Linux.

Some features are still in development, so not for production use just yet. But, you can run a quick scan and update signatures which is basic enough for most users.

I saw a video DistroTube posted and it made me a bit confused. It was about the Kasperky being offered on Linux. If you have seen the comments you would understand.

Anyways, this had me remember people I know ask me about anti viruses on Linux. I tried ClamTK, but it is very unintuitive and has a somewhat broken workflow.

I hopped on Godot and searched for an image of a popular antivirus software. I then made the software using the pretty layout that many people are used to.

I learned some things about Godot and I hope others will too with this project. Enjoy!

Also, if anyone could help me find the best way to distribute this software that would be great! (flatpak? repos? it requires administrative privileges)

1

Godot web socket client is not receiving anymore updates from Revolt web socket server (https://developers.revolt.chat/stack/bonfire/establishing) after first data is received

first data is an Authentication success message:

{
  "type": "Authenticated"
}

This success message comes when a successful token is received.

Since there are no updates and you cannot send any data after initial connection (data_received never called again, so put_packet() not working apparently), the token will have to be in query parameters:

wss://ws.revolt.chat/?version=1&format=json&token={token}

in order to even receive that success message.

An issue relating to web sockets was opened: https://github.com/godotengine/godot/issues/27560

The user claims that one of the headers causes the connection to cease.

The problem header is Connection: close, Upgrade

    GET / HTTP/1.1
    Pragma: no-cache
    Cache-Control: no-cache
    Host: echo.websocket.org
    Upgrade: websocket
    Connection: close, Upgrade
    Sec-WebSocket-Key: HKWU1xOVV6PP6HXjcIWMDQ==
    Sec-WebSocket-Version: 13

    HTTP/1.1 101 Web Socket Protocol Handshake
    Connection: Upgrade
    Date: Sun, 31 Mar 2019 19:09:01 GMT
    Sec-WebSocket-Accept: 0IHc3riAKJz52YmkLVcWrDHvaYs=
    Server: Kaazing Gateway
    Upgrade: websocket

IMPORTANT!!

What SHOULD happen and what happens on other clients like websocketking, piehost, or this one is receiving a READY update

the big issue:

connect_to_url() is the only thing that sends data or the connection closes or a protocol error

It would be of great help if anyone could give any little piece of knowledge or suggestion on this. code

104
submitted 1 year ago by MarshReaper@lemmy.world to c/linux@lemmy.ml

This is a simple request for information regarding the current viability of RISC-V hardware out in the market and others experience with performance and stability.

I have done minimal online searching before posting here, but I would like to hear the present opinions of everyone. I am not a super computer guy, so I don't quite understand the current ability of Lichee Pi and VisionFive other than having capability for 8gb and above 1.0 GHz.

Somewhat paranoid as to what my intel cpu is doing right now, so I have had RISC-V on my mind for a few years. I have never had the most advanced computers and the highest graphics in games I play would be SuperTuxKart or GMOD.

I just got an i7 for a cheap bundle and it amazed me. On an Intel Architecture scale, what would be the highest comparison of latest hardware taking advantage of RISC-V without the suspicious backdoors and proprietary nonsense.

I have seen ExplainingComputers run applications I use. From what I've seen, it just looks like any old laptop performance I'd pick up on ebay. Is this the time to switch? What are your predictions on consumer hardware for the next decade in relation to RISC-V?

I use Godot 3.5.2 to develop games for x86_64, can I just open that with some compatibility system?

Feel free to bash me for not finding a search result that was plain as day. It happens sometimes.

[-] MarshReaper@lemmy.world 3 points 1 year ago

I believe that all of these major players are being controlled at almost gunpoint into destroying their platforms and making horrible business decisions (facebook, twitter, youtube, etc).

[-] MarshReaper@lemmy.world 18 points 1 year ago

Maybe after a few too wrong moves, he's trying to tank the company and make people think he's doing it on purpose so he could say that all this time he's been doing it on purpose. On purpose on purpose.

[-] MarshReaper@lemmy.world 4 points 1 year ago

I know there are some configurations that manage to disguise themselves as a real machine. I would like to look into that as it could be very useful. At the same time, I also wonder how deep the kernel level whatever go into my personal device.

[-] MarshReaper@lemmy.world 7 points 1 year ago

It probably wouldn't work out for the spyware that doesn't want you running a VM for "anti-cheating" purposes.

[-] MarshReaper@lemmy.world 10 points 1 year ago

Guys guys guys c/lemmyshitpost c/lemmyshitpost

view more: next ›

MarshReaper

joined 1 year ago