• 0 Posts
  • 59 Comments
Joined 2 years ago
cake
Cake day: July 6th, 2023

help-circle

  • Proton had a reputation for being the good guy. In the span of a month, we saw them bend the knee, flip flop and throw shade at competition; all while pretending to be the hero. We essentially have to trust them with our data and they are showing signs that they are willing to act against that trust with worrisome agendas and biases. It’s not a good look, and since this marketing to users key issues, it’s going to cause some responses.





  • Pretty much all languages are middleware, and most of the original code was shell/bash. All new employees in platform/devops want to immediately push their preferred language, they want java and rust environments. It’s a pretty safe bet if they insist on using a specific language; then they don’t know how awk or sed. Bash has all the tools you need, but good developers understand you write libraries for functionality that’s missing. Modern languages like Python have been widely adopted and has a friendlier onboarding and will save you time though.

    Saw this guy’s post in another thread, he’s strawmanning because of lack of knowledge.



  • Eli5 VPN: https://dnsleaktest.com/ Visit this site unsecured and it will display your general geographic location (county/region). Connect to your VPN and try again incognito and under most circumstances it will display the VPN location instead.

    Example scenario: you are in Canada and connect to Netflix and are incredibly disappointed with the Canadian selection. You connect toa VPN from New York a few miles away and you get access to the full United States catalogue. (Netflix is fighting this)

    Example 2: you setup your smart vacuum on your home network and being concerned about security, you disabled access outside your home. You can connect to a personal VPN you configure to “spoof” being inside the house while on vacation to modify your vacuum settings.

    Vpns are also commonly used as “public transit” for users to obfuscate their identity.

    Benefit: When you make a request against a website, they often put trackers on you including your operating system, browser application, and store data like your geographic location. Advertisers are tracking your history, sites are using cookies to charge more with dynamic pricing when you revisit, data brokers are selling that data. There have been use cased where whistle blowers are identified off that purchased data from known journalist meetings. There’s a lot of reasons to have a VPN, but never use a free one. Adding an extra jump to your VPN location is definitely adding latency, if you don’t need one, it’s just extra weight.


    • VLC media player is the gold standard
    • Open broadcasting software / stream labs for broadcasting and studio management
    • Ffmpeg for video editing
    • Yt-dlp for downloading video
    • audacity MP3 editing
    • Plex / jellyfin / Stashapp for media server
    • Pixlr for cloud photo editing
    • Yarn / chocolatey / Asdf / node / poetry - package management
    • Flaresolver, pihole, home automation, nginx
    • Qbit-*arr for file sharing
    • Massgrave for windows activation
    • Filezilla for ftp (upgrade hosting)
    • Depending on bullshit level: discord, Google workspace offers custom domain Google accounts
    • Anything past that I write for myself or find a project with a dockerfile











  • thirteene@lemmy.worldtoMemes@lemmy.mlDecision time
    link
    fedilink
    arrow-up
    3
    ·
    6 months ago

    First off, it’s important to understand Responsive Design responsive design and why you shouldn’t be writing your own css these days as a newbie. Bootstrap is a public css doc with a lot of those problems pre-solved, so you might want to look up some of their tooling.

    As far as a website: you’ll need a domain name, you can get some for free, but they usually have short renewals otherwise this is unavoidable.

    You can pay for “shared hosting” at any of the major vendors like blue host or GoDaddy and get apache or aspx file hosting for like you said $X0/year.

    You can use an s3 static website for ~free. Creating a DNS hosted zone is $.50. but you can create an s3 bucket (think flash drive in the cloud) store a threshold of free documents, and publish them as a website all within the free tier of AWS. This has some technical background and AWS can get expensive of you make mistakes (although this shouldn’t scale much unless you upload a thousands ton of files repeatedly)

    Alternatively you can use GitHub pages . Git is a tool used by developers to share and edit code, they let you publish free HTML as well, but requires learning git or figuring out a tool with a UI like source tree. I don’t think you can use custom domains with this though.

    Although if you have any interest in tech, you can also create a free nginx docker container through a lot of services like ecs, but you can also self host in a “sandbox”. Docker creates a mini virtual machine with all of the code required to run self contained. Nginx let’s you create HTML docker containers by mounting a directory. ~ docker start nginx /website/directory And it just runs self contained.