Why would you write a terrible editor in C and what would you use to type that in? Isn’t cat - > file.txt or echo enough? AFAIK bash is able to set up tcp connections. Can’t you just download a static compiled editor through this? Maybe you don’t have bash. So what exactly is the starting point?
Bored? How about trying a Linux speed run?
21–30 of 284 posts
Re: Bored? How about trying a Linux speed run?
#22Bored? Write a touchpad driver based on libinput which gives you identical mouse acceleration between Macbook trackpads and linux trackpads.
As someone who can't be bothered to pay the Apple tax, what does the Macbook trackpad do that others don't? My experience with different mouse acceleration configs (Windows, Synaptics, Linux) has only been negative.
Apple with tighter integration delivers the actual touchpad movement data and not a faked mouse event.
Windows 10 has had work done in this area too but not sure the details.
Re: Bored? How about trying a Linux speed run?
#23You get all this functionality from the kernel for free. http://man7.org/linux/man-pages/man2/syscalls.2.html
Does the kernel provide a TCP stack? Either way, you still need to write an editor with which to write programs that utilize those syscalls.
Re: Bored? How about trying a Linux speed run?
#24Earlier quoted context omitted.
As someone who can't be bothered to pay the Apple tax, what does the Macbook trackpad do that others don't? My experience with different mouse acceleration configs (Windows, Synaptics, Linux) has only been negative.
You need to experience it to understand just how much more calibrated it is to the human experience, feels natural, like air. :) How about visiting a store that sells macbooks?
I guess if it's a "feel" thing it should be possible to replicate it with lots of tweaking, but I don't think many people who run Linux on laptops use the Apple trackpad much so the overlap between the people who want this and the people who care to write such drivers probably isn't big enough to come up with a Macbook style driver.
Re: Bored? How about trying a Linux speed run?
#25Re: Bored? How about trying a Linux speed run?
#26Earlier quoted context omitted.
Does the kernel provide a TCP stack? Either way, you still need to write an editor with which to write programs that utilize those syscalls.
echo "line" >> file I really don't get the need for an editor.
Re: Bored? How about trying a Linux speed run?
#27What is "the Stevens book" mentioned here? TIA
But maybe also: "Advanced Programming in the UNIX Environnement" https://www.amazon.com/gp/aw/d/B00DB3G8KY/ref=dbs_a_w_dp_b00...
Which is really good
Re: Bored? How about trying a Linux speed run?
#28What is "the Stevens book" mentioned here? TIA
Probably "TCP/IP Illustrated" https://www.amazon.com/gp/aw/d/0321336313/ref=dbs_a_w_dp_032... But maybe also: "Advanced Programming in the UNIX Environnement" https://www.amazon.com/gp/aw/d/B00DB3G8KY/ref=dbs_a_w_dp_b00... Which is really good
Re: Bored? How about trying a Linux speed run?
#29If you have bash, you could retrieve wget or CURL and go from there. { echo -e "GET / HTTP/1.0\r\nHost: ftp.gnu.org\r\n\r" >&3; cat /dev/tcp/ftp.gnu.org/80
Re: Bored? How about trying a Linux speed run?
#30At work I had all the bandwidth and resources I could use.
So I downloaded all I could during the weekdays and during evenings and weekends I'd just browse manuals and try things on my laptop, in my own little virtual LAN.
That's how you learn, kids.