gedaliyah

joined 2 years ago
MODERATOR OF
[–] gedaliyah@lemmy.world 14 points 4 hours ago (1 children)

Lol I completely did not. Whoosh.

[–] gedaliyah@lemmy.world 1 points 5 hours ago

Of course it's legal. It's just stupid.

[–] gedaliyah@lemmy.world 20 points 18 hours ago

Before memory saves, we would be putting in random 5-letter codes to see how high of a level we could get.

[–] gedaliyah@lemmy.world 3 points 20 hours ago

These recent changes have been so thoughtful and well-executed. I really appreciate the direction you are going with this app!

[–] gedaliyah@lemmy.world 2 points 1 day ago

Yes!

Someone in this community once said that if you're not ready with a backup plan, then you're not ready for self-hosting.

[–] gedaliyah@lemmy.world 3 points 1 day ago

The distro doesn't really have much impact on the end result. Use what you prefer. Especially if you are using containers which is really the way to go anyway.

It's worth noting that there are some problems with using Snap. I don't recall the service I was using, but I was pulling out my hair trying to solve something that I could not get working. Turns out that the snap installation did not function in the expected way and the solution was to re-install without Snap.

[–] gedaliyah@lemmy.world 6 points 1 day ago

Yes. As the universe expands, the "structure" of spacetime is actually expanding as well. That means that extremely distant objects are moving away from us at greater than the speed of light. Here is another article with video that explains this.

 

There have been a number of Scientific discoveries that seemed to be purely scientific curiosities that later turned out to be incredibly useful. Hertz famously commented about the discovery of radio waves: “I do not think that the wireless waves I have discovered will have any practical application.”

Are there examples like this in math as well? What is the most interesting "pure math" discovery that proved to be useful in solving a real-world problem?

[–] gedaliyah@lemmy.world 3 points 2 days ago

The best way to build confidence as a teacher is to go in with a detailed plan and still remain flexible.

Having a good plan gives you a roadmap that you can always lean on when needed. You will be less flustered because you will always know the direction you want to go. It is the backbone that holds up your teaching.

Being flexible as a teacher is important because people learn in so many different ways and at different paces. That's especially important with kids because they don't necessarily know their own learning styles, and you never know what they are coming from before they enter the classroom.

It is so awesome that you are maintaining your musicianship and willing to share your enthusiasm with others!

[–] gedaliyah@lemmy.world 45 points 2 days ago* (last edited 2 days ago)

For additional context, immigration law includes specific carveouts for domestic abuse. Under the law, a victim of domestic violence cannot be deported legally regardless of their immigration status.

Party of no law and no order.

[–] gedaliyah@lemmy.world 125 points 2 days ago* (last edited 2 days ago) (6 children)

I'm not pirating. I'm building my model.

 

The man who opened fire outside a Michigan church filled with worshippers before he was struck by a vehicle and then fatally shot by security staff had attended services there a couple of times in the last year and his mother is a member, police said.

 

"The Office of Cybersecurity has deemed WhatsApp a high-risk to users due to the lack of transparency in how it protects user data, absence of stored data encryption, and potential security risks involved with its use," the CAO said in an email obtained by Axios.

 

A federal judge in Nashville Sunday denied a Trump administration motion to detain Kilmar Ábrego García, a Maryland man illegally deported to an El Salvador prison in March, as the government pursues unrelated federal criminal charges filed before he was brought back to the U.S. on June 6. In a separate high-profile Trump-era immigration case, former Columbia student and pro-Palestinian activist Mahmoud Khalil returned to New York City, and his wife and newborn son, on Saturday after being released following more than three months of detention in Louisiana.

 

Iran's Supreme National Security Council released a statement confirming the attack and claiming the number of missiles fired was equal to the number of bombs the U.S. used in its strike on Saturday.

"The base that was targeted in the attack by the powerful Iranian forces was far from urban facilities and residential areas in Qatar," the statement said.

The Foreign Ministry of Qatar issued a statement saying Qatari air defenses "thwarted the attack and successfully intercepted the Iranian missiles," with no injuries or deaths reported.

 

I'm not sure about the exact issues that seem to have caused a rift in the project, but I generally think forks are good for FOSS development.

From the project page:

At CoMaps, we are dedicated to ensuring that all project-related efforts are conducted in public, providing full transparency in decision-making, priorities, financials, and operations. We believe in community decision-making, where those impacted by decisions have a voice and are empowered to participate. The project operates as a not-for-profit entity, focusing on creating value for the community rather than generating profit. We are committed to maintaining the complete codebase and associated resources under Free and Open Source Software licenses.

 

NYC comptroller and mayoral candidate Brad Lander was arrested by ICE at immigration court Tuesday, according to his spokesperson.

Brad Lander, 55, is the current NYC comptroller and a progressive who advocates for police reform, affordable housing, and better management of the migrant crisis.

Apparently, Lander has been accompanying immigrants exiting immigration court at 26 Federal Plaza and Lower Manhattan to help shield them from possible detention by ICE.

 

I have mine in a dadabase.

 
 
 

So I recently moved most of my docker storage to a second hard drive, called "storage." After a system restart, docker is creating a folder called "storage," forcing the physical drive to be renamed "storage1." How do I prevent this from happening?

I am using Xubuntu.


Edit: As suggested, it was indeed my system spinning up Docker before mounting the internal disk. The solution (should work on most Unix-like systems) was to manually add a line to /etc/fstab as follows: First get the UUID for the problem drive

~$ sudo blkid -s UUID

The output will show your drives and the UUID of each. Then edit the following file:

~$ sudo mousepad /etc/fstab #{or use your choice of editor, i.e. nano}

Add the following line:

/dev/disk/by-uuid/{UUID number copied from blkid output} /destination/of/your/drive ext4 defaults 0 0

Of course replace {UUID number copied from blkid output} and /destination/of/your/drive and set defaults & parameters as needed. These worked for me.

Restart the system and the drive should be forced to mount before docker starts. This seems to be a known issue with certain docker setups.

view more: next ›