ohshit604

joined 3 months ago
MODERATOR OF
[–] ohshit604 2 points 22 hours ago (1 children)

Have you tried a user-agent switcher? Trick their website into thinking you’re using Safari on MacOS?

[–] ohshit604 4 points 1 day ago

Reverse proxying was tricky for me, I started with Nginx Proxy Manager and it started out fine, was able to reverse proxy my services in the staging phase however, once I tried to get production SSL/TLS certificates it kept running into errors (this was a while ago I can’t remember exactly) so that pushed me to SWAG and swag worked great! Reverse proxying was straight forward, SSL/TLS certificates worked well however, overall it felt slow, so now I’m using Traefik and so far have no complaints.

It’s honestly whatever works for you and what you prefer having.

[–] ohshit604 16 points 2 days ago* (last edited 2 days ago) (1 children)

My company has their own llm now meant for internal employees, what baffles me is they exposed the domain to the internet. Can’t wait for this to backfire.

[–] ohshit604 2 points 3 days ago

I honestly never tried Ventoy myself so I can’t really give you a proper answer to this however, after reading into it I see no reason why it wouldn’t work? So long as GParted can access the systems disks there shouldn’t be an issue.

[–] ohshit604 5 points 3 days ago* (last edited 3 days ago) (3 children)

Put a GParted ISO on a thumb drive using Rufus or BalenaEtcher, in your BIOs change the boot order so that GParted boots first, boot into GParted an then readjust/delete your partition as you need be.

Pretty straightforward for the most part.

[–] ohshit604 1 points 3 days ago

I agree, hence why I left the note at the bottom of that comment, yes it does encourage bad practices but, if all OP cares about is that it works then it should be fine.

In my other comment I instructed OP to move the volume to their users home directory so they don’t run into permission issues like this again.

[–] ohshit604 1 points 4 days ago* (last edited 4 days ago)

Taking a look at your docker-compose.yml I see this volume mount:

volumes: 
- /volume1/SN/Docker/searxng-stack/searxng:/etc/searxng:rw

Whereas /volume1/SN/Docker/searxng-stack/searxng is the directory on your system docker is attempting to use to store the files inside the container from /etc/searxng.

Example of a volume mount that’ll likely work better for you;

volumes:
- ~/docker/config/searxng:/etc/searxng:rw

The tilde (~) acts as your current users home directory (aka: /home/YourUser) not owned by root and where docker persistent volumes should be stored.

After making the change over to that directory and configuring SearXNG how you like re-create your docker container with sudo docker compose up -d —force-recreate

Apologies for the poor formatting, typing this on mobile.

Edit:

Note: if you want to expose the port do not add the 127.0.0.1 like how I have in my docker-compose.yml.

[–] ohshit604 2 points 4 days ago* (last edited 4 days ago) (4 children)

have you checked the directory & file permissions with ls -la /Your/SearXNG/WorkingDir ?

The error in your log is telling you that the container does not have permission to that directory/file, you can essentially bypass this with sudo chmod 777 /Your/SearXNG/WorkingDir/* and sudo chown 1000:1000 /Your/SearXNG/WorkingDir/*

However, if you’re looking for security best practices this is not advisable but if all you care about is that it works it should be fine.

[–] ohshit604 1 points 4 days ago* (last edited 4 days ago) (1 children)

Wow, UK laws in regard to acquiring your license are more wild than ours! I’m shocked to see you cannot own a Shotgun with a barrel shorter than 24 inches and, by the looks of it all rifles must be chambered in .22 Lr.

Not too sure about GB firearm related crime but hopefully one day regulations ease up on licensed owners over there!

[–] ohshit604 2 points 4 days ago* (last edited 4 days ago) (3 children)

If I lived in America I'd 100% get a gun

Check with your local laws! I’m Canadian and have a firearms license, our government reclassified roughly 140 families of firearms as prohibited hence why I can no longer use my Kriss Vector.

My coworkers took me to the range one day and I immediately went and got my license afterwards by completing the Canadian Firearms Safety Course, it’s such a fun hobby!

-19
Don't be fooled! (sh.itjust.works)
 
33
submitted 4 weeks ago* (last edited 4 weeks ago) by ohshit604 to c/[email protected]
 

Afternoon y’all.

My company is trying to get me to go to the US to train some folks in our department, the problem is I don’t trust the US border agency whatsoever especially when it comes to my digital devices.

My boss crosses weekly so it makes me think there won’t be an issue however, I really don’t want to take the chance of being searched.

What’s been your recent experience crossing the border?

Edit: I should note that I haven’t left my province in about 15 years so this is all new to me.

Edit 2: Thank you all for the responses, I spoke with a majority of my co-workers and HR and for the most part everyone agrees that the Americans should come up to Canada or we train someone who is comfortable entering the US.

My HR department is going to speak with my boss hopefully sorts out a plan that works with everyone.

 

Evening y’all, me and a buddy of mine have been scouting locations around the Squamish area that work well for Camping that also won’t cause issues if firearms are discharged.

We checked out Furry Creek trying to see Witch Peak today however, the trail was gated off and had a sign up from BC Hydro/BC Wildlife that stated no shooting which bummed us out, any suggestions are much appreciated!

Note: Hunting isn’t our intention, we intend to bring paper/metal targets with us for our non-pal/CORE holding friends.

Edit: Doesn’t have to be the Squamish area, we hoped the area would work because of the views.

27
submitted 2 months ago* (last edited 2 months ago) by ohshit604 to c/[email protected]
 

Long story short, my bank/credit-union doesn’t support debit-visa and the only way I can make online payments through my bank account is via PayPal.

PayPal is a pain in the ass to work with and I would like to use Privacy.com’s virtual debit/credit cards however, they lack support for banks/credit-unions outside the US.

Note: I like to use my CC as less as possible hence why I use my bank for majority of my online payments.

45
submitted 2 months ago* (last edited 2 months ago) by ohshit604 to c/[email protected]
 

Currently have nice long docker compose file that hosts my PiHole V6 container (along with a bunch of other containers) however, reason i ask this question is because whenever I go to pull an updated image and recreate the container I experience about 20 minutes of no DNS resolution which to my knowledge is due to the NTP clock being out of sync.

What’s the best way to host a DNS sinkhole/resolver that can mitigate this issue?

Was thinking of utilizing Proxmox & LXC but I suspect I’ll get the same experience.


~~Update: Turns out PiHole doesn’t support two instances, I got both of them on separate devices also set the 2nd DNS server in my routers WAN & LAN DNS settings which did in fact split DNS between both instances however, I lost access to my routers web-ui, my Traefik instance & reverse proxies died and I lost all internet access.~~

~~So, don’t do what I did.~~

Update 2: So everything I said in my first update let’s disregard that, turns out I had my router forcing all DNS to PiHole server 1 which caused my issues mentioned above.

Two servers appears to work!

 

"Today's Liberal government announcement is as deceitful and deceptive as every other action they've taken on the firearm file. Since 2020, the Liberals have insisted that their relentless targeting of exclusively licensed gun owners has had no effect on hunting or sport shooting. This is clearly and entirely false. In fact licensed gun owners are the only group that have been targeted by everything the Liberals have done on guns.

Since 2020, the Liberals have insisted that there are innumerable replacements for the firearms they were banning. The Prime Minister himself even announced on CTV that inevitably the Liberals will have to ban some firearms that license gun owners have been using for hunting, but they can simply replace those firearms with others that are not on the list.

And as predicted, almost every year since then, they have generated lists of the firearms that Canadians have spent untold sums of their own resources replacing their banned firearms, all the while trusting the government at its word. The Liberals have gleefully and overtly enjoyed the misplaced trust of gun owners and the damage they have caused them.

The CCFR cannot adequately condemn the Liberals, the NDP, and the Bloc Quebecois for supporting this treatment of only those in our country who follow the rules to the letter. It is yet another betrayal and a black mark on Canada's history, its relationship with the government, and its relationship with the RCMP. The conduct of all the above towards law-abiding, hard-working citizens is nauseating and immoral.

It should not be overlooked that while the government is damaging the above-mentioned relationships beyond repair, gun toting criminals are still kicking in Canadian doors and letting bullets fly on Canadian streets. Liberals haven't lifted a finger to stop this.

The CCFR is laser focused on fighting these measures without end. We will not rest until these measures are repealed and those who show such contempt to society's most trusted citizens are held accountable for their actions."

“For comment or interviews, contact the CCFR via email at [email protected]


https://firearmrights.ca/media-advisory-march-7-2025/

 

Good afternoon y'all.

I recently installed Steam on a laptop running a fresh install of Debian 12 & KDE Plasma. I've done this dance numerous times on other hardware however, this time when installing games through Steam they hang at 100% Downloaded & Installed and only complete when i pause them, one occasion two games simply wouldn't install and took me a full day fighting with Steam to finish them and clear the queue.

Steam can't seem to move files between drives (note: one drive is an SSD and the other is an HDD) or uninstall files and i assumed this was a permissions issue at first however, comparing the directory permissions from the laptop to my desktop (also running Debian 12 & KDE Plasma) i see nothing out of the ordinary.

Any suggestions are appreciated - Some things I've already tried.

  • Purged steam from the system (including ~/.steam)
  • Cleared 'Download Cache' in Steam settings
  • chown & chmod (777) the common directories (~/.steam/steamapps/common)
  • Waited numerous hours assuming the HDD was ridiculously slow - moving/deleting files in the CLi shell works without issue!
  • Tried different download regions/countries
15
submitted 2 months ago* (last edited 2 months ago) by ohshit604 to c/[email protected]
 

So recently I just come across Earlyoom and it has completely resolved my desktop crashing and better handles my memory, I was wondering if there is any other software that I’m missing that could potentially improve my systems resource handling?

Distro = Debian 12, KDE Plasma 5

 
0
ROE - Rules Of Engagement (self.ca_firearms_rights)
submitted 3 months ago* (last edited 3 weeks ago) by ohshit604 to c/ca_firearms_rights
 

COMMUNITY RULES:

[1] Disrespectful/Insulting or Hateful Comments

Civility, Courtesy, and Politeness, is expected within this community. A post or comment may be removed if it's considered in violation of sh.itjust.works RULES, and User Agreement. Argumentative comment chains are subject to removal. Egregious offences, and repeat offenders may result in the user banned from the community.

Racism, bigotry, intolerance, or otherwise extremist posts/comments/behaviour WILL NOT BE TOLERATED in this community. Users doing so will be permanently banned from the community.

[2] Illegal Activity/Statement of Violence

Posts or comments that promote or suggest the breaking of Firearms laws or Criminal Code of Canada, WILL be removed.

Posts/comments calling for, suggesting, blatant/veiled threats of violence towards Government/Provincial officials, individuals, groups, etc. WILL NOT be tolerated. Users doing so will be banned from the community.

This may include posts/comments asking "How many laws would I be breaking if... / Is it legal if..." or similarly worded.

[3] Not Relevant Content

This community is for the discussion of Canadian firearms ownership, shooting sports, safety of firearms, Gun Clubs, Firearms groups, advocacy, and the Canadian political effects of online communities/groups.

Posts, commenting, articles, and discussions are to be specific to Canada and Canadian laws.

Off-topic, non-relevance to the context of a submission, exaggerated/extremist commenting may be removed at moderator discretion.

If there is a major event/change in another country that you think would be worthy of discussion here, please contact the moderators first to review for content & suitability for the community.

Generic news articles about crime, containing the word "gun, "weapon", etc., and not necessarily relatable to the context of this community, may be removed. This isn't a gun crime community.

Memes that are copied/pasted from other communities, are reposts, or are not relevant to Canadian firearms ownership may be removed at the moderator's discretion.

Major off topic tangents/fights/mudslinging can result in bans.

[4] Editorialized/Sensationalized Title

Posts/articles linked to the community will have their original titles as published, and not editorialized/sensationalized/personal opinion injected into the title.

Self-posts primarily containing a link to an article will be removed, and users asked to re-submit as a link-post. Users submitting Self-posts with personal commentary on a linked article, will be asked to re-submit as link-post, with that commentary posted as a top-level comment. Self-posts discussing a previously submitted article will be asked to post as a comment in the original thread.

Incongruent formatting, meme-level, non-standard lettering/capitalization, emojis, or secondary lettering - This titling type may be denied submission, at Moderator discretion.

[5] Transactions or Advertisements

Transactions of ANY TYPE, including trades/offers, "WTB/WTT/WTS", gifting, and direct advertising ARE BANNED from being conducted through sh.itjust.works/Lemmy, and will NOT be allowed in this community. Users may be temporarily or permanently banned for any transactions posted on the community.

This may also include: anything gun related, references/links to sales, discounts, events, promotions, screenshots/pics of vendor websites/flyers/etc. If a post/comment could be construed as an advertisement, either blatantly or subtly, it may be removed at Mod discretion.

In reference to this thread, we are expanding this rule to cover any links to retail sites, as well as references to purchase prices.

Vendors, self-promotion and official flair: Please see here prior to posting as a business or advertising sales, deals, etc. Users claiming as a Vendor must have Moderator discussion & approval prior to having Vendor status granted.

[6] Previous/Duplicate/Related Submission

Posts may be removed if they have been previously submitted.

If you have received this message for a post that you posted, then REMOVED, then REPOSTED, message the mod team. We do not have the time to check every single post to see if you pulled the original.

Repeated posts on the same topic (from different media agencies or relevant to a previously submitted post) MAY be removed, and users may be asked to post in a current thread/megathread.

[7] Forum Log-On/Paywalled Content

When linking to an on-line firearms forum with a required login (ie. CGN), please screenshot or post the entire text. Please include the link to the original article, for veracity.

If a website has a paywall, please indicate this in the title, or use the "PAYWALL" flair. Content of the article behind a paywall may be required to be copied into the text of the post submission.

[8] Image Hosting & Acceptable Image or Document Sites

In spirit of FOSS & self hosting it is encouraged to manage your own image hosting. If this is not possible alternatives like Imgur will suffice.

Do not use links to Dropbox, Google Drive, OneDrive, or other similarly hosted drive files. These are too easily manipulated for phishing.

For document uploads/linking, please provide warnings in the file type (ie. PDF, Exel, etc.) and may require Moderator intervention and review. Mods reserve the right to refuse to open these links, for the security of their own systems.

[9] Legal Advice

All posts where police or the CFO are actively involved in an investigation of the person the post is related to will be removed. The person in question requires immediate assistance of a properly licensed attorney. Posting about the case, or requesting advice from internet strangers, can result in bad outcomes.

The moderation team will, at its discretion, remove any posts asking for, or giving, legal advice.

Any posts or comments using ChatGPT or any similar AI to source legal advice will immediately be removed.

Posts regarding things like Estates will be directed to the Newbies/FAQ thread. Relevant links are provided there.

Questions about legalities will be evaluated on a case-by-case basis by the moderator team.

CONTENT REMINDER:

All posts and comments are subject to moderator review, and may be removed in accordance with the above rules. Post or comment removals may be applied with, or without warning. All users agree to these rules, in spirit of the context, upon initially viewing, commenting, participating, or subscribing to this community. Users which continually or purposefully breach these rules, or otherwise disturb the overall intent of this community, may be banned with or without warning.

REPORTING CONTENT:

If you come across content in this community, either by way of submitted posts or commenting, which violates the community rules, please use the report button. This will highlight the comment for moderator review, and allow us to deal with it faster.

Also, it is beneficial for us to receive an explanation as to why a post/comment has been reported. Reports without substantiation or legitimacy, may be ignored. Please feel free to message us.

view more: next ›