Efwis

joined 1 year ago
MODERATOR OF
[–] Efwis 2 points 5 months ago

Congratulations to everyone who has been here from the beginning as well as to all our users that continue to make this feasable.

And a large thank you to Demigodrick for starting such a wonderful endeavour.

[–] Efwis 2 points 5 months ago

Checking reply status to make sure no issues

[–] Efwis 1 points 6 months ago
[–] Efwis 6 points 6 months ago (2 children)

You do get notified. I got banned from worldnews@hexbear because I was too controversial in m comment. Basically they didn’t like the truth that I laid out with evidence and links.

[–] Efwis 3 points 6 months ago

I don’t know about gnome, but on KDE you can disable touch support under settings>mouse & touchpad.

[–] Efwis 2 points 7 months ago (2 children)

I’d stay home that way I’m not adding to societal problems.

Seriously though, the ONLY stipulations that should be put on UBI are:

1.) do you make over $100,000/year? This info is easily obtained from your W-2 that you are given every year for taxes.

2.) do you own a business? Once again easily obtained via public record and filing of your taxes via 1099 forms.

3.) are you over the age of 18? Once again easily verified through birth certificate dates via public record based on your social security number/resident green card (after 5 years of documented residency in the country. )

All this info is in government databases so there would be no concern of undocumented immigrants able to receive said funds or people getting more money because of having minors in there home.

You shouldn’t have to apply for it, hence the term universal.

[–] Efwis 5 points 7 months ago

Unionize. Have companies pay you fairly for what you do.

The problem with that here I. The states are two fold. First of all if the companies could, at least here in the states, they wouldn’t allow unionization. They don’t want to pay fairly for what you do. All these companies want to do is make as much money as possible, while paying the workers as little as possible.

Most of the companies here would like us to work until we die on the lines, but pay us nothing to do the work so they could make it all. Companies don’t give a damn about workers rights, or being fair to us. A lot of non-union shops will fire you for trying to bring a union in. They would be extremely happy if the labor boards, OSHA etc would cease to exist.

[–] Efwis 7 points 7 months ago

Knowing them it has something to do with your nsfw account. Remember they don’t make money from nsfw communities as part of their public filing.

[–] Efwis 20 points 7 months ago (4 children)

First, this would be a better question to ask in a Linux specific community.

Second, Build time is really subjective to the computer and its hardware. There could be bottlenecks at the cpu/memory from the motherboard that will slow it down. It also depends on whether you’re spinning rust or using an ssd.

There are a lot of factors involved in the whole that makes it hard to definitively say how long something takes to build.

[–] Efwis 5 points 8 months ago

I have one thing to say about this really. Welcome to the real world don. Now you too can feel the pain every American not in the 1% feels.

[–] Efwis 1 points 8 months ago

Urgent care is basically a hospital er without the rest of the hospital, claiming to be cheaper, I have found price wise they are very similar. I would go to the urgent care rather than er if you need to see the doctor for this. Urgent care usually doesn’t have you eating a long time to be seen, usually in and out within an hour for broken bones, but for a ear flushing you would be looking at about 20 mins turn around depending on how busy they are.

[–] Efwis 3 points 9 months ago

Pretty much the only time we need passports is if we travel outside the U.S. and territories. Those that take cruises or cross borders to other countries would, but generally speaking a majority of Americans don’t have passports.

 

This is actually a recipe from bettycrocker.com. However I usually make my own “pie crust” with flour, eggs, baking powder, milk and seasonings. I also use more cheese than the recipe actually calls for.

Everyone loves this meal. 30 minute comfort food.

1
Feature request (self.memmy)
submitted 1 year ago by Efwis to c/[email protected]
 

Inn B love the app, been using it since the original beta came out on test flight.

My feature request is to either mark everything in the inbox as read, or have it automatically moved to the all section in the inbox automatically after reading and closing the inbox to go back to the main feed.

In the image below, none of these comments need replying to by me from my comment, but to clear them I have to login into Lemmy from my computer to mark them as such.

Before anyone asks why not use the phone browser, for some reason I can’t login to Lemmy on any of my phones mobile browsers. This has been brought to the attention of Lemmy devs via bug report.

5
submitted 1 year ago* (last edited 1 year ago) by Efwis to c/linuxscripts
 

Hi all, I really appreciate the number of member we have here at linuxscripts, and we have had a few posts besides my own on here.

What I would really like is for some of you to post things if you have them, and of course let others know about our existence.

You don’t have to post content to o be a member here, but please help contribute in any manner you can. I am opening the community up to more content today allowing for memes and crossposts of news surrounding Linux. If you cross post please denote that in your post so others know. I do ask that you don’t cross post unsolved help posts unless it is your own. However, if you get a solution to your problem and it’s not on here please let me know so it can be locked.

Thanks everyone.

 

Something I’ve been meaning to post about, it seems in the app you can’t click on [email protected] and be taken there.

For example [email protected] is not clickable in the app but it is clickable through a regular browser. Is there a way to add this functionality to Memmy?

Thanks

 

This is a database script i made to trigger when database events trigger a database lockup.

# Make sure to change your database info and what instance of DB you are using (i.e. sqlite3, mysql, postgres etc...)
# This script will rotate for a total of 5 logs so you can compare previous errors with current one without taking unnecessary space

# There's no strict requirement to place it in the root directory of the server, but you have some options for where to put it:

# Root Directory: Placing the script in the root directory could work, but it's generally not recommended to clutter the root directory
# with scripts. It's better to create a specific directory for your application and put the script there.

# Custom Directory: Create a specific directory for your application, and place the script there. 
# For example, you could create a directory called "my_app" or "database_error_logger" and place the script in that directory.

# Scripts Directory: Some servers have a designated directory for executable scripts. 
# You might check if your server has a "scripts" directory where you can place your script.

# Regardless of the location, it's essential to consider file permissions. 
# Ensure that the script has the necessary permissions to execute. You may need to use the chmod command to set the appropriate 
# permissions, depending on your server's configuration.

# Lastly, consider setting up a virtual environment for your Python script to isolate dependencies and avoid conflicts with other 
# applications on the server. This can help ensure that the required Python libraries are installed locally for your script
# without interfering with system-wide packages.    

# This script was created by Edward Freeman and is covered under GPL V3. You can modify this script as you need
# However, you must retain this GPL V3 standard, and leave credit where credit is due to the original author.

import logging
from logging.handlers import RotatingFileHandler
import sqlite3 #Make sure you change this to the correct Database provider (sqlite3, mysql, postgres etc..)
import sys

# Configure logging with rotating file handler
log_file = 'database_errors.log'
log_handler = RotatingFileHandler(log_file, maxBytes=1024 * 1024, backupCount=5)
log_formatter = logging.Formatter('%(asctime)s - %(levelname)s: %(message)s')
log_handler.setFormatter(log_formatter)
logger = logging.getLogger('DatabaseErrorLogger')
logger.setLevel(logging.ERROR)
logger.addHandler(log_handler)

def perform_database_operation():
    try:
        # Replace the following line with your actual database connection and query
        connection = sqlite3.connect('your_database.db')
        cursor = connection.cursor()

        # Replace the following line with your actual database operation
        cursor.execute('SELECT * FROM your_table;')

        # Don't forget to commit the changes if you are performing write operations
        connection.commit()

        connection.close()
    except Exception as e:
        # Log the error with the traceback using the logger
        logger.exception("Error occurred while performing the database operation.")
        raise  # Raising the error again allows the script to terminate or handle it at a higher level if needed

def custom_exception_handler(exctype, value, traceback):
    # Log uncaught exceptions using the logger
    logger.exception("Uncaught exception occurred.", exc_info=(exctype, value, traceback))

# Set the custom exception handler for uncaught exceptions
sys.excepthook = custom_exception_handler

# Call the function to perform the database operation
try:
    perform_database_operation()
except Exception as e:
    print("Error occurred during the database operation:", str(e))
4
PS Plus Games for August (blog.playstation.com)
submitted 1 year ago by Efwis to c/playstation
 

Here is the release list for August PS Plus free games If you don't want to open the blog post the games are:

PGA Tour 2k23 Dreams Death's Door

IMPO, not exactly a banner list of games this month again

 

This story states an addition to the federal document indictment against Trump

 

When I go to edit any post since the lates App Store update, it doesn’t take.

I notice this in my last comment I made, saw the typo for gdk went to fix it and it doesn’t fix it.

 

I was reading a post in another sub when I received and answer to a question I asked on lemmy support. When I replied it not only posted my response to my original post but it posted the same reply as a response in the other sun I was reading.

 

I am working on a script for the instance I’m on, but I need a testing server to run it. Is there a way to set up a lemmy instance as a testing server without internet access granted and no domain name?

 

memmy is saying i'm logged out, but there is now way to login back in that I can find. i don't want to uninstall and reinstall just to log back in any help appreciated

 

This started last night, but when I open my inbox it won’t clear out the notifications unless I reply from the inbox. I have a tendency to click on the message for me reply instead of replying from the inbox directly. Because of this the inbox doesn’t clear the notification.

I think it would be better for the app to clear notification once you access it instead of forcing you to reply to clear it. In the image below, I have replied to the message the way I tend to and it still hasn’t cleared the notification.

view more: ‹ prev next ›