ExploreTrendingAnalytics
Nostr Archives
ExploreTrendingAnalytics

Danie

42a419…aea03e

danie@nostr.fan

121Followers37Following6Notes62Received

Testing out new wallet

6 total
Danie2d ago
10 Hacks Every Signal User Should Know “Signal is one of my favourite messaging apps because of its focus on privacy and security. I use it to message my closest friends regularly, and in the process, I've discovered a fair few hidden features that I now use every day. From shielding your phone number from other users, to preventing hackers from breaking into your account, these hacks will help you make the most of Signal.” Very solid tips these, especially as most hacking of secure messengers actually takes place on the end-user device. See https://lifehacker.com/tech/10-hacks-every-signal-user-sh… #technology #security #signal
#technology#security#signal
0000 sats
Danie2d ago
Hister indexes every web page you visit and lets you search the full text of your browsing history offline “Have you ever wished your browser history was more than just a collection of URLs? As it is, the standard search history is kind of useless. Sure, you can see the title of the page you visited, maybe a bit of metadata, but not much more than that. For any actual functionality, like searching for a specific page you visited that you can't quite remember the name of, your browser's built-in history search falls flat on its face (like my six-month-old did as I was writing this sentence). That's where Hister comes in. This open-source, self-hosted tool does more than just track your activity; it indexes every site you visit, capturing the contents of the page for easy search and retrieval later.” I was a bit sceptical on first reading this, especially where browser extensions are involved, but it is an open source project, and there is this privacy statement in their documention: Hister clients only communicate with the designated server, and the server does not “phone home” or share any of your browsing history with anyone else. The source code is publicly accessible, so we can be audited by anyone who wants to check! What is interesting is that many self-hosted server applications that do this sort of thing, have quite resource intensive browsers running, and are often fooled by anti-bot detection. Hister actually has your browser doing this so no wasted resources, and you have the full power of your main browser at hand. The server needs to be available, but could also run on your own PC so no NAS etc setup needs to be run. However, the server side can also run in a docker container if you already have that setup. It can on something as light as a Raspberry Pi. As far as I can see it is only saving the text of pages you visit, and not PDF or HTML archives of the pages, so again this side is extremely lightweight. See https://www.xda-developers.com/hister-indexes-every-page-… or https://hister.org. #technology #search #history #browsers #opensource
#technology#search#history
0200 sats
Danie3d ago
DBAN is a relic for HDD wiping, and ShredOS is the only software you should use “When “wiping a hard drive clean,” a quick format doesn't actually erase anything at all. Instead, it just removes the drive's file index. That leaves the underlying data sitting there until something overwrites it. That's why recovery tools like Recuva and EaseUS can still dig up photos, documents, and entire folder structures long after you think they're gone. Software tools like DBAN (Darik's Boot and Nuke) and ShredOS solve that problem by overwriting every sector of the drive multiple times with different patterns over the course of multiple passes.” DBAN bring back old memories from decades ago when I did IT field support. It was what we used to wipe all drives we had to remove from PCs before auctioning them off or otherwise disposing of them. I'd completely forgotten about it until now. I seem to think Norton Utilities also had a wipe disk program. Good to see there is a modern equivalent out now. See https://www.xda-developers.com/dban-is-a-relic-for-hdd-wi… or https://github.com/PartialVolume/shredos.x86_64 #technology #opensource #security
#technology#opensource#security
0000 sats
Danie5d ago
The Creator of Wordle Just Came Out With a New Game, and It’s Difficult “Cryptic crosswords, on the other hand, treat each clue as its own puzzle. Instead of straightforward definitions, the clues rely on wordplay that hints at the answer. The rules can be tricky to explain, and there are many different ways a clue can be constructed.” Yes, not so easy as just plugging letters in or looking for patterns of letters. This requires a lot more thought. Still I started out with hit-and-miss until I got used to Wordle. It's like a new muscle that one must exercise a bit. The tutorial examples were not too difficult, but they were mostly three word combinations. The daily puzzle for today is 6 words which must be reduced to 8 letters for a word that relates to “slant”. But even if you think you know what the word is, you still have to manipulate the 6 words with the transformations, to arrive at the correct word. This is a whole different kettle of fish. This really makes the old concise crossword look like child's play. See https://gizmodo.com/the-creator-of-wordle-just-came-out-w… or https://www.parseword.com #technology #puzzles #words #games
#technology#puzzles#words
0000 sats
Danie5d ago
Europe is building an alternative to Microsoft Office “Office EU is a cloud-based office suite built entirely on open-source software and hosted exclusively on European servers, has launched as a direct competitor to Microsoft 365 and Google Workspace. Its pitch is straightforward: keep data in the EU, run on transparent open-source components and comply with EU law by design. The platform combines file storage, e-mail, calendar, document editing, chat and video conferencing in a single browser-based interface.” It is really time that the Microslop monopoly was broken. It is not just about digital sovereignty, but also this belief that one must by MS Office to do documents. It is just not true, and so many non-profits and governments are spending a lot of money on what could have gone directly towards societal services. But the big problem has been up to now you had to self-host or install something, and there were an array of free choices to choose from. Surprisingly, many users do not want choices and it paralyses them. Contrary to belief, the other party receiving your documents does not actually need the same brand of software to read your documents! Ideally you'd want to also use a proper open standard document format like ODF, but you could also use the MS OOXML standard that MS Office uses. Hopefully with such an enterprise effort behind Office EU, it will get traction. This is a cloud based solution which uses NextCloud in the background, and anyone can self-host NextCloud themselves too, so there is no vendor lock-in. See https://techcentral.co.za/europe-is-building-an-alternati… or https://office.eu #technology #opensource #digitalsovereignty
#technology#opensource#digitalsovereignty
1000 sats
Danie33d ago
This Docker Compose visual builder is the tool I wish I had as a beginner “If you’ve ever attempted to run too many containers on the same machine, you may have encountered failed deployments because multiple services tried accessing the same port. Fortunately, DCM sidesteps that issue by checking for port conflicts in your multi-container Compose files. Going back to our network stack example, Nginx and Pi-hole both use ports 80 and 443 on the host. If you try to deploy these services with the same Compose files, DCM detects the port conflicts and assigns different numbers to the second container.” With over 40 to 50 containers running on one of my servers I constantly run into that ports clashing issue (when ports are exposed to the host machine). This tool does look quite interesting as well as how it handles volume mappings. It also makes me realise how Portainer really needs to take a few steps forward with regard to better stack editing. I'm going to be looking a bit deeper into this app. It looks like it will work in tandem with Portainer too. Basically DCM will help you create a clean and functional docker-compose file to paste into Portainer. See https://www.xda-developers.com/this-docker-compose-visual… or the project site at https://github.com/ajnart/dcm #technology #docker #selfhosting
#technology#docker#selfhosting
1200 sats

Network

Following

NoottiNostrigaignacio
Mike Dilger ☑️
Andrew
Ccfac7b…0a73a6
Matt Lorentz
Vitor Pamplona
nossence
Snort
rabble
Openvibe
REUZ
Ryan
fiatjaf
SimpleX Chat
rejon
Edward Snowden

Followers

AnonZaikaboyTroyArtur…qywrinpcelsatAldocstrtruegrithodlBBNBTCJudge HardcaseEl GuirriMajereDanMarksHugh JanusHallo BitcoinPinguimdarelva⚡Walt Munny