Techrights logo

IRC: #techbytes @ FreeNode: Sunday, August 18, 2019

Join us now at the IRC channel.

<--pidgin_log has quit (Quit: Leaving.)Aug 18 01:23
-->MrGreenFriend (~MrGreenFr@gateway/tor-sasl/mrgreenfriend) has joined #techbytesAug 18 03:37
<--MrGreenFriend has quit (Remote host closed the connection)Aug 18 03:48
schestowitz> 1) I've done more experimenting on expanding a LVM partition inside aAug 18 08:25
schestowitz> Qemu guest.  The networking is easier to deal with, from a userAug 18 08:25
schestowitz> perspective, now by using TUN/TAP [1] which is what I think is beingAug 18 08:25
schestowitz> used on HV in production.  It allows for easier incoming connectionsAug 18 08:25
schestowitz> from the outside.  Thus I now have a small CentOS7 guest set up andAug 18 08:25
schestowitz> accessible from the outside.  It is on a Devuan Beowulf host which isAug 18 08:25
schestowitz> also accessible from the outside.Aug 18 08:25
schestowitz>Aug 18 08:25
schestowitz> However, an SSH key will be needed for access.Aug 18 08:25
schestowitz>Aug 18 08:25
schestowitz> =Aug 18 08:25
schestowitz> ssh -t -i ~/.ssh/hostkey  -o identitiesonly=yes -p 4042 \Aug 18 08:25
schestowitz> -l roy aquilegia.ddns.net \Aug 18 08:25
schestowitz> 'tmux a || tmux || bash'Aug 18 08:25
schestowitz>Aug 18 08:25
schestowitz> sudo /usr/local/bin/qemu-test-centos.shAug 18 08:25
schestowitz>Aug 18 08:25
schestowitz> =Aug 18 08:25
schestowitz> ssh -t -i ~/.ssh/guestkey -o identitiesonly=yes -p 4044 \Aug 18 08:25
schestowitz> -l roy aquilegia.ddns.net \Aug 18 08:25
schestowitz> 'tmux a || tmux || bash'Aug 18 08:25
schestowitz>Aug 18 08:25
schestowitz> =Aug 18 08:25
schestowitz>Aug 18 08:25
schestowitz> On the host, the VM image is in /home/qemu/ and can be restored from theAug 18 08:25
schestowitz> original by copying or by using rsync.Aug 18 08:25
schestowitz>Aug 18 08:25
schestowitz> If you generate some SSH keys and send the public keys, I can add themAug 18 08:25
schestowitz> to the accounts and you can log in and experiment with modifying theAug 18 08:25
schestowitz> LVM.  One key would be needed for the host and one for the guest.Aug 18 08:25
schestowitz>Aug 18 08:25
schestowitz> ssh-keygen -t ed25519 -f ~/.ssh/hostkey  -C 'some comment'Aug 18 08:26
schestowitz> ssh-keygen -t ed25519 -f ~/.ssh/guestkey -C 'some comment'Aug 18 08:26
schestowitz>Aug 18 08:26
schestowitz> The host does not have Wake-On-LAN capabilities so once it is off it isAug 18 08:26
schestowitz> off until physical intervention is possible.Aug 18 08:26
schestowitz>Aug 18 08:26
schestowitz>Aug 18 08:26
schestowitz> 2) I think I've found the right documentation for resizing the LVM [2]Aug 18 08:26
schestowitz> and the steps that seem to work with the test VM above are as follows:Aug 18 08:26
schestowitz>Aug 18 08:26
schestowitz> On the host:Aug 18 08:26
schestowitz>Aug 18 08:26
schestowitz> (stop the VM)Aug 18 08:26
schestowitz> qemu-img info /home/qemu/centos7.qemu.17G.imgAug 18 08:26
schestowitz> # add 6GB to the imageAug 18 08:26
schestowitz> qemu-img resize -f raw /home/qemu/centos7.qemu.17G.img 6GBAug 18 08:26
schestowitz> (start the VM in single-user mode)Aug 18 08:26
schestowitz>Aug 18 08:26
schestowitz> On the guest:Aug 18 08:26
schestowitz>Aug 18 08:26
schestowitz> # the target /var is a separate partition inside the LVMAug 18 08:26
schestowitz> umount /varAug 18 08:26
schestowitz> lvscanAug 18 08:26
schestowitz> lvchange -a -n /dev/centos/varAug 18 08:26
schestowitz> parted /dev/sda2 --> resizepart 2 100%Aug 18 08:26
schestowitz> partprobe /dev/sdaAug 18 08:26
schestowitz>Aug 18 08:26
schestowitz> pvdeisplay /dev/sda2Aug 18 08:26
schestowitz> pvresize /dev/sda2Aug 18 08:26
schestowitz> pvdeisplay /dev/sda2Aug 18 08:26
schestowitz>Aug 18 08:26
schestowitz> lvchange -a y /dev/centos/varAug 18 08:26
schestowitz> lvresize -L +6GB /dev/centos/varAug 18 08:26
schestowitz> xfs_growfs /dev/centos/varAug 18 08:26
schestowitz>Aug 18 08:26
schestowitz> (reboot VM into multi-user mode)Aug 18 08:26
schestowitz>Aug 18 08:26
schestowitz> I'm not comfortable enough to say it is time to try this on theAug 18 08:26
schestowitz> production system yet.  However, if you would like to test here a fewAug 18 08:26
schestowitz> times, or many times, I can turn the machine on for a few days startingAug 18 08:26
schestowitz> when you can use it.  Once the method is worked out on the test VM, thenAug 18 08:27
schestowitz> we can try on the copy of the TR VM.  However, in a best case situationAug 18 08:27
schestowitz> it takes about 8 minutes to restore it from one SSD to another.Aug 18 08:27
schestowitz>Aug 18 08:27
schestowitz> [1] See: https://wiki.qemu.org/Documentation/NetworkingAug 18 08:27
-TechBytesBot/#techbytes-wiki.qemu.org | Documentation/Networking - QEMUAug 18 08:27
schestowitz> However, until I find a way around it, that means launching Qemu as root.Aug 18 08:27
schestowitz>Aug 18 08:27
schestowitz> [2]Aug 18 08:27
schestowitz> https://www.thegeekdiary.com/centos-rhel-how-to-extend-physical-volume-in-lvm-by-extending-the-disk-partition-used/?PageSpeed=noscriptAug 18 08:27
-TechBytesBot/#techbytes-www.thegeekdiary.com | CentOS / RHEL : How to extend Physical Volume in LVM by extending the Disk Partition used – The Geek DiaryAug 18 08:27
schestowitzI've just read this message and flagged it.Aug 18 08:27
schestowitzThis is the kind of scary task I dread doing. But it's something we'll probably >have< to do one day, given the site's expansion (even if we can compact the DB).Aug 18 08:27
schestowitzI wonder if Tracy used GUI rools on the HV to do such things.Aug 18 08:27
schestowitz                  <li>Aug 18 08:27
schestowitz                    <h5><a href="https://www.rockpapershotgun.com/2019/08/17/rust-will-offer-refunds-as-they-stop-shipping-linux-client/">Rust will offer refunds as they stop shipping Linux client</a></h5>Aug 18 08:27
schestowitz                    <blockquote>Aug 18 08:27
-TechBytesBot/#techbytes-www.rockpapershotgun.com | What developers think of Steam reviews | Rock Paper ShotgunAug 18 08:27
schestowitz                      <p>You can get a refund no matter how long you’ve played for and even if you’ve played on Windows too. And Newman also adds that Linux players who “feel like they’ve gotten their money’s worth and don’t want a refund” should still get one. “If you have no intention of playing Rust again you should refund. You can use that money to buy a game from a developer that supports Linux well – this is the bestAug 18 08:27
schestowitzthing you can do to help your community.” </p></blockquote></li>Aug 18 08:27
schestowitz> looks pretty good, still proofreading this one.Aug 18 08:32
schestowitz>Aug 18 08:32
schestowitz> do whatever you want with it. ill let you know if i have corrections.Aug 18 08:32
schestowitzLooks very good.Aug 18 08:32
schestowitzIs this a text-only version or will there be PDF/HTML as well?Aug 18 08:32
schestowitz> the book credits only the free media alliance.Aug 18 08:33
schestowitz>Aug 18 08:33
schestowitz> thats the way it ought to be, since there is no other credit on the book.Aug 18 08:33
schestowitz>Aug 18 08:33
schestowitz> not sure what you want to do with that, i am its founder and that is public information. but the easiest thing to do with it is credit the book as the book credits itself, to the free media alliance. let me know if you have any ideas you want to discuss. cheers.Aug 18 08:33
schestowitzCredit is fine. Makes sense, esp. if it's not by a pseudonym.Aug 18 08:33
schestowitz> all the business about grassroots network and free software federation was intended to bring up techrights as an example.Aug 18 08:33
schestowitz>Aug 18 08:34
schestowitz> techrights features prominently on the website section of the free media alliance library (5th website on the list, 2nd in the section its in-- technically outranked only by plos one) and it features prominently on the forums (techrights and similar articles is literally the first forum on the list.)Aug 18 08:34
schestowitz>Aug 18 08:34
schestowitz> so anything the book doesnt say about it, is being said regardless. but i thought id mention that while righting i just got into the flow and missed it. there was no decision to leave the techrights mention out.Aug 18 08:34
schestowitzhttps://twitter.com/BlackRaiser/status/1163003439003119618"Aug 18 09:26
-TechBytesBot/#techbytes-@BlackRaiser: An engineer employed at the home of Bill and Melinda Gates has been charged with possession of child porn after he… https://t.co/PKelgAOMA5Aug 18 09:26
-TechBytesBot/#techbytes-@BlackRaiser: An engineer employed at the home of Bill and Melinda Gates has been charged with possession of child porn after he… https://t.co/PKelgAOMA5Aug 18 09:26
schestowitzAn engineer employed at the home of Bill and Melinda Gates has been charged with possession of child porn after he was discovered to have more than 6,000 images depicting rape and sexual abuse""Aug 18 09:26
schestowitz"An engineer employed at the home of Bill and Melinda Gates has been charged with possession of child porn after he was discovered to have more than 6,000 images depicting rape and sexual abuse"Aug 18 09:26
-->MrGreenFriend (~MrGreenFr@gateway/tor-sasl/mrgreenfriend) has joined #techbytesAug 18 14:25
<--MrGreenFriend has quit (Remote host closed the connection)Aug 18 14:41
-->MrGreenFriend (~MrGreenFr@gateway/tor-sasl/mrgreenfriend) has joined #techbytesAug 18 14:45
<--MrGreenFriend has quit (Remote host closed the connection)Aug 18 14:45
-->MrGreenFriend (~MrGreenFr@gateway/tor-sasl/mrgreenfriend) has joined #techbytesAug 18 14:46
<--MrGreenFriend has quit (Remote host closed the connection)Aug 18 14:53
-->pidgin_log (~roy@host81-154-174-37.range81-154.btcentralplus.com) has joined #techbytesAug 18 17:30
schestowitzhttps://twitter.com/COYSonny7/status/1162793996151853057Aug 18 17:42
-TechBytesBot/#techbytes-@COYSonny7: @schestowitz @ManCity @gabrieljesus33 Well not in a row but SIUUUUUUUUUAug 18 17:42
schestowitzhttps://twitter.com/Kaine19049248/status/1162793223380750336Aug 18 17:42
-TechBytesBot/#techbytes-@Kaine19049248: @schestowitz @ManCity LmfaoAug 18 17:42
schestowitzhttps://twitter.com/Bonza_Index/status/1162792275350605825Aug 18 17:43
-TechBytesBot/#techbytes-@Bonza_Index: @schestowitz @ManCity AAAAHAAHAAHAug 18 17:43
schestowitzhttps://twitter.com/westwood_/status/1162792235127189507Aug 18 17:43
-TechBytesBot/#techbytes-@westwood_: @schestowitz @ManCity 🤣🤣🤣Aug 18 17:43
schestowitzhttps://twitter.com/JamesBreheney/status/1162799135222878208Aug 18 17:43
-TechBytesBot/#techbytes-@JamesBreheney: @schestowitz @ManCity VAR says no https://t.co/3QyBIhIHMEAug 18 17:43
-TechBytesBot/#techbytes-@JamesBreheney: @schestowitz @ManCity VAR says no https://t.co/3QyBIhIHMEAug 18 17:43
schestowitzhttps://twitter.com/Ahmedsh91775483/status/1162813736362508288Aug 18 17:43
-TechBytesBot/#techbytes-@Ahmedsh91775483: @westwood_ @schestowitz @ManCity Who is going to tell the doctor about the bad news. HIV aladeen https://t.co/cTWCHhNgcZAug 18 17:43
-TechBytesBot/#techbytes-@Ahmedsh91775483: @westwood_ @schestowitz @ManCity Who is going to tell the doctor about the bad news. HIV aladeen https://t.co/cTWCHhNgcZAug 18 17:43
schestowitzhttps://twitter.com/jsalsman/status/1162829553540034560Aug 18 17:44
-TechBytesBot/#techbytes-@jsalsman: @ciphergoth @PavlosProkopeas Microsoft is still patent trolling, and still pulling embrace-and-extend tricks. Follo… https://t.co/oVDHNT8OEJAug 18 17:44
-TechBytesBot/#techbytes-@jsalsman: @ciphergoth @PavlosProkopeas Microsoft is still patent trolling, and still pulling embrace-and-extend tricks. Follo… https://t.co/oVDHNT8OEJAug 18 17:44
schestowitz"Aug 18 17:44
schestowitzMicrosoft is still patent trolling, and still pulling embrace-and-extend tricks. FollowAug 18 17:44
schestowitz@schestowitzAug 18 17:44
schestowitz e.g. http://techrights.org/2016/06/05/microsoft-reputation-laundered/… As for Gates himself and his newfound altruism, askAug 18 17:44
-TechBytesBot/#techbytes- ( status 404 @ http://techrights.org/2016/06/05/microsoft-reputation-laundered/… )Aug 18 17:44
schestowitz@leoniehaimsonAug 18 17:44
schestowitz about the Core CurriculumAug 18 17:44
schestowitz"Aug 18 17:44
schestowitzhttps://twitter.com/jhamby/status/1162829595508236289Aug 18 17:44
-TechBytesBot/#techbytes-@jhamby: I especially want to try Intel's Linux because @schestowitz is super paranoid about Intel being in league with the… https://t.co/jTk6px9iYLAug 18 17:44
-TechBytesBot/#techbytes-@jhamby: I especially want to try Intel's Linux because @schestowitz is super paranoid about Intel being in league with the… https://t.co/jTk6px9iYLAug 18 17:44
schestowitz"Aug 18 17:44
schestowitzI especially want to try Intel's Linux becauseAug 18 17:44
schestowitz@schestowitzAug 18 17:44
schestowitz is super paranoid about Intel being in league with the NSA and putting backdoors in everything. I don't think the NSA is all that into me, tbh. Aug 18 17:44
schestowitz"Aug 18 17:44
schestowitzhttps://twitter.com/jhamby/status/1162829883552088064Aug 18 17:45
-TechBytesBot/#techbytes-@jhamby: But seriously, I think the company that designed the CPU ought to have the best insights into how to tune Linux to… https://t.co/OQIjdXgNW5Aug 18 17:45
-TechBytesBot/#techbytes-@jhamby: But seriously, I think the company that designed the CPU ought to have the best insights into how to tune Linux to… https://t.co/OQIjdXgNW5Aug 18 17:45
schestowitz"Aug 18 17:45
schestowitzBut seriously, I think the company that designed the CPU ought to have the best insights into how to tune Linux to work best with it.Aug 18 17:45
schestowitzI don't trust Canonical or Debian to have the resources to figure out how to tune GNU/Linux with the most optimal compiler flags like Intel can.Aug 18 17:45
schestowitz"Aug 18 17:45
schestowitzhttps://twitter.com/jhamby/status/1162830873575641089Aug 18 17:45
-TechBytesBot/#techbytes-@jhamby: The Clear Linux installer is simple and doesn't have too many options, even on the advanced options tab. I added th… https://t.co/tVtUYiCRfWAug 18 17:45
-TechBytesBot/#techbytes-@jhamby: The Clear Linux installer is simple and doesn't have too many options, even on the advanced options tab. I added th… https://t.co/tVtUYiCRfWAug 18 17:45
schestowitz"Aug 18 17:45
schestowitzThe Clear Linux installer is simple and doesn't have too many options, even on the advanced options tab. I added the "package-utils" and "dev-utils" bundles, set my username/password and timezone, and set to erase & install on the 28G Apple SSD that was part of the Fusion Drive.Aug 18 17:45
schestowitz1Aug 18 17:45
schestowitzAug 18 17:45
schestowitzJake HambyAug 18 17:45
schestowitz@jhambyAug 18 17:45
schestowitz·Aug 18 17:45
schestowitz19hAug 18 17:45
schestowitzIt shows up as nvme0n1. I also enabled the telemetry option to send info to Intel about my config. Well, it seems to be installing.Aug 18 17:45
schestowitz1Aug 18 17:45
schestowitzAug 18 17:45
schestowitzJake HambyAug 18 17:45
schestowitz@jhambyAug 18 17:45
schestowitz·Aug 18 17:45
schestowitz19hAug 18 17:45
schestowitzVery nice, elegant desktop. It just finished downloading the required "packs". They've built their own package system based around bundles. https://docs.01.org/clearlinux/latest/guides/clear/swupd.html…Aug 18 17:45
schestowitzAug 18 17:45
schestowitz2Aug 18 17:45
schestowitz1Aug 18 17:45
-TechBytesBot/#techbytes- ( status 404 @ https://docs.01.org/clearlinux/latest/guides/clear/swupd.html… )Aug 18 17:45
schestowitzAug 18 17:45
schestowitzJake HambyAug 18 17:45
schestowitz@jhambyAug 18 17:45
schestowitz·Aug 18 17:45
schestowitz19hAug 18 17:45
schestowitzAnd we're done. I restarted and it's booting into macOS on the hard drive.Aug 18 17:45
schestowitz1Aug 18 17:45
schestowitz1Aug 18 17:46
schestowitzAug 18 17:46
schestowitzJake HambyAug 18 17:46
schestowitz@jhambyAug 18 17:46
schestowitz·Aug 18 17:46
schestowitz19hAug 18 17:46
schestowitzHmm, I have no clue if this iMac will boot from the NVMe drive this way. Holding down Option doesn't show the drive. Neither does the Startup Disk preference. Perhaps it's time to reinstall Boot Camp on the 1TB hard drive.Aug 18 17:46
schestowitz"Aug 18 17:46
schestowitzhttps://twitter.com/nik_nik19163049/status/1162897302421245952Aug 18 17:46
-TechBytesBot/#techbytes-@nik_nik19163049: Disgusted Hold on tighter to EU https://t.co/jdfzwa7jDmAug 18 17:46
-TechBytesBot/#techbytes-@schestowitz: British role in #cia #torture https://t.co/LvrKGxhZhR maybe we need to get closer to the #eu instead of #trumplandAug 18 17:46
schestowitzhttps://twitter.com/chadmccullough/status/1162898243879079936Aug 18 17:46
-TechBytesBot/#techbytes-@chadmccullough: @schestowitz Yeah, he's a gun-toting Libertarian. So, yeah, he probably supports Trump.Aug 18 17:46
schestowitzhttps://twitter.com/NannymossA/status/1162909220146204672Aug 18 17:46
-TechBytesBot/#techbytes-@NannymossA: Indeed. I *LOVE* the concept of #opensource. Truly democratic. https://t.co/BiYyXgWtY7Aug 18 17:46
-TechBytesBot/#techbytes-@schestowitz: You know something has gone very wrong with #freesw (or rather #microsoft sabotages it for a price) when "going ope… https://t.co/00fVdb6wJlAug 18 17:46
schestowitzhttps://twitter.com/interfluidity/status/1162913274905546752Aug 18 17:47
-TechBytesBot/#techbytes-@interfluidity: in “meatspace”, trade restrictions are anticompetitive. but in the network-effect addled mirrorworld of digital ser… https://t.co/nidfEQ72xbAug 18 17:47
-TechBytesBot/#techbytes-@interfluidity: in “meatspace”, trade restrictions are anticompetitive. but in the network-effect addled mirrorworld of digital ser… https://t.co/nidfEQ72xbAug 18 17:47
schestowitz"in “meatspace”, trade restrictions are anticompetitive. but in the network-effect addled mirrorworld of digital services, trade restrictions are procompetitive, a countervailing force to winner-take-all dynamics."Aug 18 17:47
schestowitzhttps://twitter.com/aspfrt/status/1162959845248516097Aug 18 17:47
-TechBytesBot/#techbytes-@aspfrt: U.S. Sanctions With a Tech-Bite = Devastating Bits not Bullets https://t.co/77FqCrAKWPAug 18 17:47
-TechBytesBot/#techbytes-@schestowitz: #microsoft "last month prevented users in Iran and other nations sanctioned by the US government from accessing por… https://t.co/YWlby4L9sUAug 18 17:47
schestowitzhttps://twitter.com/aspfrt/status/1162963556142178304Aug 18 17:47
-TechBytesBot/#techbytes-@aspfrt: @schestowitz https://t.co/KABp4LkE0XAug 18 17:47
-TechBytesBot/#techbytes-@aspfrt: (1) Who Was The Real "Co-Pilot" on Jeffrey Epstein's Lolita Express Sex Plane? https://t.co/MSlGjo4fOuAug 18 17:47
schestowitzhttps://twitter.com/yaylinux/status/1163014504294363136Aug 18 17:48
-TechBytesBot/#techbytes-@yaylinux: @schestowitz @brentsimmons Open source means the source code for it is available. That's it. It's not code for "it… https://t.co/e6rLdPjiDZAug 18 17:48
schestowitz"Aug 18 17:48
schestowitzOpen source means the source code for it is available.Aug 18 17:48
schestowitzThat's it. It's not code for "it's a free service, tailored to your convenience at no cost"Aug 18 17:48
-TechBytesBot/#techbytes-@yaylinux: @schestowitz @brentsimmons Open source means the source code for it is available. That's it. It's not code for "it… https://t.co/e6rLdPjiDZAug 18 17:48
schestowitz"Aug 18 17:48
schestowitzhttps://twitter.com/BirgitC/status/1163019608544239616Aug 18 17:49
-TechBytesBot/#techbytes-@BirgitC: @schestowitz Agreed! Worth exploring though when it comes to trade secrets. Compared to hairdresser appointments, it almost makes sense.Aug 18 17:49
schestowitz"Agreed!  Worth exploring though when it comes to trade secrets.  Compared to hairdresser appointments, it almost makes sense."Aug 18 17:49
schestowitzhttps://twitter.com/BirgitC/status/1163021866098933760Aug 18 17:49
-TechBytesBot/#techbytes-@BirgitC: Touché... 😉 https://t.co/X2sV2i9b4tAug 18 17:49
-TechBytesBot/#techbytes-@schestowitz: #blockchain everything. 'Novelty' by semantics and hype waves. :-) https://t.co/PYZWQjLXhxAug 18 17:49
schestowitzhttps://twitter.com/hdex/status/1163025675646713856Aug 18 17:49
-TechBytesBot/#techbytes-@hdex: @schestowitz @brentsimmons So open source on windows doesn’t exist either ? That’s quite a restrictive view of the… https://t.co/N2oB3ddO71Aug 18 17:49
schestowitz"So open source on windows doesn’t exist either ? That’s quite a restrictive view of the open source world. Also “censorship” of apps? Only App Store has curated applications, you can still download and install apps independently from the store."Aug 18 17:50
-TechBytesBot/#techbytes-@hdex: @schestowitz @brentsimmons So open source on windows doesn’t exist either ? That’s quite a restrictive view of the… https://t.co/N2oB3ddO71Aug 18 17:50
schestowitzhttps://twitter.com/Ralph42x/status/1163033074881507328Aug 18 17:50
-TechBytesBot/#techbytes-@Ralph42x: @schestowitz You could download the code and use it to build a windows or android version, then upload to github or… https://t.co/o2NipRjIsnAug 18 17:50
-TechBytesBot/#techbytes-@Ralph42x: @schestowitz You could download the code and use it to build a windows or android version, then upload to github or… https://t.co/o2NipRjIsnAug 18 17:50
schestowitz"You could download the code and use it to build a windows or android version, then upload to github or elsewhere and make it available for all under a Gnu license e.g. don’t forget to also include the license etc. for the original code "Aug 18 17:50
schestowitzhttps://twitter.com/tehwey/status/1163034187697479680Aug 18 17:50
-TechBytesBot/#techbytes-@tehwey: @schestowitz @brentsimmons I don’t think you know what open source means.Aug 18 17:50
schestowitzhttps://twitter.com/giddeygirl/status/1163057834071695360Aug 18 17:50
-TechBytesBot/#techbytes-@giddeygirl: @BenOLoghlin @Kappukzu @ilucas1a https://t.co/jVhMvxmEyYAug 18 17:50
-TechBytesBot/#techbytes-@schestowitz: "Unfortunately, no information on pricing or worldwide availability has been released as yet for the CutiePi, but a… https://t.co/nPXjghJ4vUAug 18 17:50
schestowitzhttps://twitter.com/fleming77/status/1163064636087947265Aug 18 17:50
-TechBytesBot/#techbytes-@fleming77: First, Marxism only spoke to the oppression of the proletariat by the bourgeoisie, but now men oppress women, white… https://t.co/8rWkBJd96zAug 18 17:50
-TechBytesBot/#techbytes-@fleming77: First, Marxism only spoke to the oppression of the proletariat by the bourgeoisie, but now men oppress women, white… https://t.co/8rWkBJd96zAug 18 17:50
schestowitz"Aug 18 17:50
schestowitzFirst, Marxism only spoke to the oppression of the proletariat by the bourgeoisie, but now men oppress women, whites oppress blacks, heterosexuals oppress ...Aug 18 17:50
schestowitzQuote TweetAug 18 17:50
schestowitz"Aug 18 17:50
<--rianne has quit (Quit: Ex-Chat)Aug 18 18:34
-->rianne (~rianne@host81-154-174-37.range81-154.btcentralplus.com) has joined #techbytesAug 18 18:34
<--oiaohm has quit (Read error: Connection reset by peer)Aug 18 18:42
-->oiaohm (~oiaohm@unaffiliated/oiaohm) has joined #techbytesAug 18 18:43
-->rianne__ (~rianne@host81-154-174-37.range81-154.btcentralplus.com) has joined #techbytesAug 18 18:48
<--rianne has quit (Ping timeout: 272 seconds)Aug 18 18:52
schestowitz>> https://aadl.org/taxonomy/term/73590Aug 18 19:29
-TechBytesBot/#techbytes-aadl.org | Lars D. Nooden | Ann Arbor District LibraryAug 18 19:29
schestowitz> Thanks.  Interesting.  That's an old one.  Papers used to be local.Aug 18 19:30
schestowitz> There used to be papers.  There used to be news.Aug 18 19:30
schestowitz>Aug 18 19:30
schestowitz> Searching around I also see a lot of references to a course paper I putAug 18 19:30
schestowitz> on the net at the dawn of the graphical web and used to practice HTMLAug 18 19:30
schestowitz> 2.0.  It was a good paper but has an impact that is inappropriate forAug 18 19:30
schestowitz> its value and limited content.Aug 18 19:30
schestowitz>Aug 18 19:30
schestowitz> I see that all of Lund University NetLab's material is quite gone.Aug 18 19:30
schestowitz> Not DTV / DTU either.Aug 18 19:30
schestowitz> Nor anything left at the University TromsøAug 18 19:30
schestowitz>Aug 18 19:30
schestowitz> Strangely the MagPi issue 70 article with the typos turns up.  IAug 18 19:30
schestowitz> certainly do not like the title but the topic was picked by the editors.Aug 18 19:30
schestowitz>  I was hoping for a follow up where I could introduce an emphasis onAug 18 19:30
schestowitz> FOSS.  Perhaps they were just messing around and being dicks.  Who knows.Aug 18 19:30
schestowitz>Aug 18 19:30
schestowitz> Last week Google started crawling my recipe pages.  I'm not quite sureAug 18 19:30
schestowitz> how they got that.  But if you search for the right terms the recipesAug 18 19:30
schestowitz> show up.  Few do American recipes in metric.Aug 18 19:30
schestowitz>Aug 18 19:30
schestowitz> Over the last year, some ISP in Redmond, WA has tried unsuccessfully toAug 18 19:30
schestowitz> get at the inner parts of my photo album.  Weirdly, one attempt was to aAug 18 19:30
schestowitz> section I had not written yet.  Not sure how they got the intial linksAug 18 19:30
schestowitz> but the wrong guess had to have been done manually.Aug 18 19:30
schestowitzThey might be trying to study where the negative press comes from.Aug 18 19:30
schestowitz>> ...Aug 18 19:35
schestowitz>> As for the db, the repair_dbs.sh script should lock and not allow moreAug 18 19:35
schestowitz>> than a single session at a time.  Running it twice in a row should onlyAug 18 19:35
schestowitz>> be an inconvenience and is probably not a risk.Aug 18 19:35
schestowitz> Now that I think of it, turning off the HTTP daemon, which is aAug 18 19:35
schestowitz> necessary step for rebuilding the db, also serves as kind of a lock.Aug 18 19:35
schestowitz> Trying to turn it off when it is already off will give a warning or error.Aug 18 19:35
schestowitzThe DB likely has locking in it, built in...Aug 18 19:35
schestowitzBut the reboot is the dangerous part. HV tends to force shutdown, maybe not if the VM runs smoothly at the time and it can reboot gracefully...Aug 18 19:35
schestowitz>>>> https://aadl.org/taxonomy/term/73590Aug 18 19:41
-TechBytesBot/#techbytes-aadl.org | Lars D. Nooden | Ann Arbor District LibraryAug 18 19:41
schestowitz>>> Thanks.  Interesting.  That's an old one.  Papers used to be local.Aug 18 19:41
schestowitz>>> There used to be papers.  There used to be news.Aug 18 19:42
schestowitz>>>Aug 18 19:42
schestowitz>>> Searching around I also see a lot of references to a course paper I putAug 18 19:42
schestowitz>>> on the net at the dawn of the graphical web and used to practice HTMLAug 18 19:42
schestowitz>>> 2.0.  It was a good paper but has an impact that is inappropriate forAug 18 19:42
schestowitz>>> its value and limited content.Aug 18 19:42
schestowitz>>>Aug 18 19:42
schestowitz>>> I see that all of Lund University NetLab's material is quite gone.Aug 18 19:42
schestowitz>>> Not DTV / DTU either.Aug 18 19:42
schestowitz>>> Nor anything left at the University TromsøAug 18 19:42
schestowitz>>>Aug 18 19:42
schestowitz>>> Strangely the MagPi issue 70 article with the typos turns up.  IAug 18 19:42
schestowitz>>> certainly do not like the title but the topic was picked by the editors.Aug 18 19:42
schestowitz>>>  I was hoping for a follow up where I could introduce an emphasis onAug 18 19:42
schestowitz>>> FOSS.  Perhaps they were just messing around and being dicks.  Who knows.Aug 18 19:42
schestowitz>>>Aug 18 19:42
schestowitz>>> Last week Google started crawling my recipe pages.  I'm not quite sureAug 18 19:42
schestowitz>>> how they got that.  But if you search for the right terms the recipesAug 18 19:42
schestowitz>>> show up.  Few do American recipes in metric.Aug 18 19:42
schestowitz>>>Aug 18 19:42
schestowitz>>> Over the last year, some ISP in Redmond, WA has tried unsuccessfully toAug 18 19:42
schestowitz>>> get at the inner parts of my photo album.  Weirdly, one attempt was to aAug 18 19:42
schestowitz>>> section I had not written yet.  Not sure how they got the intial linksAug 18 19:42
schestowitz>>> but the wrong guess had to have been done manually.Aug 18 19:42
schestowitz>> They might be trying to study where the negative press comes from.Aug 18 19:42
schestowitz> M$ has a union of sorts of its own inside Finland.  I forget the name.Aug 18 19:42
schestowitz> It's not treated as a hostile occupying agency, despite its power andAug 18 19:42
schestowitz> damage.  Also as far as I know, COSS has bee completely subverted too.Aug 18 19:42
schestowitzI'm managed to 'lay' low enough for them not to bother my employer again.Aug 18 19:42

Generated by irclog2html.py 2.6 by Marius Gedminas - find it at mg.pov.lt!