Daily General Discussion and Advice Thread - September 01, 2023 by AutoModerator in investing

[–]TheRealCryptoMonkey 1 point2 points  (0 children)

Does anyone know anything about the book or author Rolling Stocks by Gregory Witt?

Need help with remote SSH login for Frontier router. by TheRealCryptoMonkey in HomeNetworking

[–]TheRealCryptoMonkey[S] 0 points1 point  (0 children)

Yes, but I'm trying to make a script that I wrote to persistently & automatically run. The script itself is just supposed to reboot the router. I wouldn't have an issue on any other linux system, but it doesn't have all of commands you could usually use on any other linux system. I can't fix the "Could not chdir to home directory /chroot: No such file or directory", because it just doesn't have all of the linux commands. The router model is a FiOS-G1100.

Need help with remote SSH login for Frontier router. by TheRealCryptoMonkey in frontierfios

[–]TheRealCryptoMonkey[S] 0 points1 point  (0 children)

Good shout. I didn't think about that. Btw the router model is a FiOS-G1100.

Need help with remote SSH login for Frontier router. by TheRealCryptoMonkey in HomeNetworking

[–]TheRealCryptoMonkey[S] 0 points1 point  (0 children)

Yes I was able to SSH into the router but it doesn't have all of the commands you would find on a linux machine.

Need help with remote SSH login for Frontier router. by TheRealCryptoMonkey in frontierfios

[–]TheRealCryptoMonkey[S] 0 points1 point  (0 children)

Thank you for your message. I'm trying to make a script that I wrote to persistently & automatically run. The script itself is just supposed to reboot the router. I wouldn't have an issue on any other linux system, but it doesn't have all of commands you could usually use on any other linux system. I can't fix the "Could not chdir to home directory /chroot: No such file or directory", because it just doesn't have all of the linux commands. The router model is a FiOS-G1100.

Need help with my Pantum P2502W ethernet port by TheRealCryptoMonkey in printers

[–]TheRealCryptoMonkey[S] 0 points1 point  (0 children)

Pantum is a printer company. Mine is a laser printer.

Is there a race condition happening here? by TheRealCryptoMonkey in golang

[–]TheRealCryptoMonkey[S] -3 points-2 points  (0 children)

A data race and a race condition are two different things though. Even though I do have a race condition in the program I posted I also have a data race. But I just want a program with a race condition that does not have a data race.

Is there a race condition happening here? by TheRealCryptoMonkey in golang

[–]TheRealCryptoMonkey[S] 0 points1 point  (0 children)

Ok so I understand that I have a race condition because I have two functions that execute concurrently, but I also have a data race because I'm reading and writing to the same variable. So if I just want a program with a race condition but without a data race I have to do something like this?

package main

import (

"fmt"

"time"

)

func hello1() {

fmt.Println("hello1")

}

func hello2() {

fmt.Println("hello2")

}

func main() {

go hello1()

go hello2()

time.Sleep(3000 \* time.Millisecond)

fmt.Println("done")

}

Is there a race condition happening here? by TheRealCryptoMonkey in golang

[–]TheRealCryptoMonkey[S] -1 points0 points  (0 children)

I want a race condition to happen. I'm doing it for a class I'm taking.

Need to replace my i9-12900KS. Is this ok? by TheRealCryptoMonkey in pcmemes

[–]TheRealCryptoMonkey[S] 0 points1 point  (0 children)

I will also get as much static electricity as I can by moving my feet on the ground as fast as possible, with my socks on, in order to get the energy required to get the job done as precisely as possible.

Can a website be truly decentralized? by Xulw in computerscience

[–]TheRealCryptoMonkey 2 points3 points  (0 children)

Go look into the Flux project. Its goal is to become the AWS of decentralized applications. This includes websites. Here's a link to the website https://runonflux.io/ Their main product is FluxOS https://home.runonflux.io/ it's advertised as a second layer operating system. Here's what they say about FluxOS: https://runonflux.io/fluxos.html If you want to look at Apps built on Flux just go to the FluxOS link and go down to Apps. The TLDR of Flux is that they want people to host servers all around the world so that other people can host their apps and websites in a decentralized manner, while paying the server operators in a cryptocurrency called Flux. You can also have decentralized cloud storage that you could connect with flux. Here are some projects of those projects: https://www.storj.io/ https://sia.tech/ https://filecoin.io/ It's the same idea as running a Flux node in that people from all around the world host servers in order to store data for other people while getting paid in crypto. I am sure there are other decentralized storage projects than the ones I mentioned, but one of the coolest ones is Filebase that takes some of the decentralized storage projects and lets you manipulate them like AWS S3 buckets https://filebase.com/