Interesting - why avoid asterisk?
I looked into fusion to play with but I’ve been using asterisk casually since like the 00s with no issues.
Interesting - why avoid asterisk?
I looked into fusion to play with but I’ve been using asterisk casually since like the 00s with no issues.
Oh yes! Even better. People having Linux machines just hanging around is rare so I didn’t even consider it.
I did a little looking and found instructions for hosting a matrix server here:
https://element-hq.github.io/synapse/latest/setup/installation.html
Once you get a bit comfortable on the command line give this a try!
Excellent - that site is nice and basic. A good first project.
Seek out some resources on HTML, CSS, basic Linux command line and nginx and start playing around. If you’re on a Mac you can do all this locally then rent a small VPS from digital ocean or the like for about $5/mo to host everything on the web when you’re ready. I can’t speak to options on windows.
On your last comment it looks scary but if we break it down it’s not bad at all.
while true ; do
Programs are (super) basically made up of if “this” then do “this stuff”, and while “this thing” do “some stuff”. While true means run this next bit of code (until done
) forever.
nc -l -p 80 -c
nc is a program (netcat) that reads/writes data to a network. - in Linux denote options for the program. These are saying listen, listen on port 80, and run a command.
‘echo -e “HTTP/1.1 200 OK\n\n $(date)”’;
The command netcat will run. This is HTTP protocol magicness and (date)
is a Linux command that prints the date.
done
Ends the loop
Ez pz.
If you have a Mac you can probably run this in terminal and check out what it does (do take care in running commands from the internet tho).
All good. Learning and exploring is part of the journey! For example hosting a website can be as simple as running a program
(egwhile true ; do nc -l -p 80 -c ‘echo -e “HTTP/1.1 200 OK\n\n $(date)”’; done
)
or as complicated as an entire application with multiple databases and processes.
For your first goal - what do you want your website to do? Blog? A bio about yourself? Are you interested in creating the HTML or do you want to focus on getting someone else’s application (eg matrix) up and running?
Do you have more specific goals? Running a home server and website isn’t really programming, more sysadmin work. If you want your website to be a web app that’s a different story.
For arduino work C would be the most directly relatable. It’s a simple language but can be a bit tricky since the language itself doesn’t do much hand holding for you. Arduino does make it a bit easier though.
The C Programming Language is probably the best programming book ever written for any language.
I wound up with gollum. Git based with a wiki format. Works well enough for my limited use.
Excellent! Nice work.
I don’t know what dns rebind is but once DNS A records are pointed to the right place then it’s just a matter of setting up the rest of your stuff.
Is that expected? Otherwise check to make sure DNS settings for the domain are correct (eg ns records dig NS example.com
IIRC).
First off - you don’t explicitly say so I just want to double check - you’re not using example.com as the actually domain correct?
If not the next thing to do would be to check out what DNS is doing. You can use the dig
command to see what IP address is being returned for the domains you’re trying to hit.
dig +trace
may be useful as well.
Not angry no. Just don’t be so quick to judge a comment made off hand by a developer triaging tickets. Bolded text and jumping to conclusions that devs don’t care helps no one. Attempt to educate instead. Not everything has to be internet outrage.
And good on you for being introspective.
I apologize but I’ll be blunt - you went way over the top with your comment.
The guy is trying to triage some tickets, made a reasonable guess at policy and was greeted by a dissertation and accusations. You then double down by posting here like there’s cause for some huge alarm. I’m a fairly big privacy advocate and even I was rolling my eyes. These type of comments make working in open source not enjoyable.
Unsolicited advice - Take a deep breath, have reasonable conversations with people building and maintaining software, and don’t take every small offhanded comment as the sky falling.
When you copy /home make sure you get the “hidden” files. They start with a “.” and some programs ignore them by default. That’s also where most configuration files are.
Check out rsync -avz
Not who you asked but I have a smartish home. There is no real need. It just affords convenience and for me lands pretty squarely in “hobby” territory.
My lights turn on prior to sunset, and turn off after I go to bed. My porch lights dim at 10pm so I don’t disturb my neighbors as much. I have additional states of lights that are predicated on various scenarios. In short, I never touch a light switch, I never walk into a dark house, and my energy usage is reduced.
My vehicle mileage and tire pressures are reported on a dashboard for me to monitor.
My network statistics are monitored and graphed.
Energy usage of electronics of interest to me are monitored and graphed.
I have a software defined radio that I’m able to use remotely. Using a smart outlet I’m able to turn it on and off remotely as well instead of leaving it on 24/7.
Unfortunately I have a camera that is cloud based my SO uses to monitor pets. Using a smart outlet I turn it on only when we are not home.
Some of this can be accomplished with less smart means, some of it can’t, but it’s been fun to get it all setup.
I like monit. It’s simple to setup and pretty flexible.
A little bit of a different tack but check out getting into ham radio. There are a lot of kits out there that are reasonably easy to assemble and provide some good documentation on what you’re assembling.
And when you’re done you can talk to people all over the world with what you made!
https://www.bonappetit.com/recipe/easy-no-knead-focaccia
I use this recipe and it is absolutely my most requested loaf of bread I make. More than one person calls me up to ask that I make it.
Make sure you make the butter topping, get some nice flaked salt (I use wild garlic flake salt).
If you’re new to bread the best thing you can do for yourself is get a scale and weigh your ingredients.
And practice a lot
This is all true ofc but holy crap - Jon is returning to the daily show.
https://www.cnn.com/2024/01/24/entertainment/jon-stewart-daily-show/index.html
I did 1300 queries which I think would put it at .007 cents per query. Sounds reasonable to me.
I always fear it comes across that way when I recommend it to people here. I’m just a very happy user and want to see them succeed.
Ah yes that makes sense. I was taken aback by my latest install of freepbx. I feel it wasn’t as aggressive during the Digium days but it definitely left a bad taste in my mouth.
I heard good things about free switch, although it seems like a paradigm change. I’ll have to check it out.