i_am_hiding

joined 2 years ago
[–] i_am_hiding@aussie.zone 9 points 18 hours ago (1 children)

My paper was published in MDPI open access and then a whole heap of publishing companies came along, stole it, and now charge money for it. And they're the ones you get first if you search for it in Google Scholar.

I'm so mad. I was proud of that and wanted people to see it, but now 90% of people who come across it will incorrectly think its behind a paywall and not bother.

[–] i_am_hiding@aussie.zone 5 points 18 hours ago (1 children)

And so damn infuriating when you need them forty years later lol. I'm currently in the middle of some really obscure maths at work and my only reference is a hand typed paper from 1983 with super critial plots on it, but it's all been scanned in and put online at the lowest possible resolution. It's torture!

[–] i_am_hiding@aussie.zone 2 points 6 days ago

Honestly as a religious person myself I'm constantly disgusted this isn't the norm.

If the topic of religion ever comes up, the theory is my favourite conversation. I'm not here to sell you on my view of God, and I don't want you to sell me on yours. It's two sides of the same frankly quite interesting coin, and I like learning about the different ways people do things - but I'm not here to make you do things my way. That would be wrong.

And unless the topic comes up organically, it doesn't fucking matter. We can work together or be best mates or whatever and unless you asked, you'd never have to know I was religious.

[–] i_am_hiding@aussie.zone 1 points 1 week ago (3 children)

Whatever you do, DON'T mention the war. I did once but I think I got away with it.

[–] i_am_hiding@aussie.zone 0 points 2 weeks ago

I live on the other side of the world, but I bet you anything you like that my petrol prices will double too. It will cost twice as much to heat my home, and because my country is so big and so far away from everything, the cost of any goods I buy will increase significantly due to the additional price of the fuel required to get it to me.

I had no choice. I couldn't vote for that dickhead if I wanted to. America voted and I'm worse off for it.

[–] i_am_hiding@aussie.zone 2 points 2 weeks ago (1 children)

All good and well until you have a 3 or 4 trailer road train limited to 90kph with a poor little box truck stuck behind it wanting to do 110kph. Trucks should be allowed in the middle lane for overtaking each other.

[–] i_am_hiding@aussie.zone 6 points 3 weeks ago (1 children)

Absolutely. A $5k 1998 Toyota Corolla will be bulletproof for another twenty years yet. Fuel and oil every now and then is all it will ask for, and as long as you don't need to compensate for your lack of manhood, there's no reason that won't take you anywhere you need to go. I don't understand why Americans feels the need to take a loan out on a six figure "truck". Sure as shit it's not to "haul" the milk and cookies home from the grocery store.

However, you do have to compensate for the lack of a roof over your head, and that will take a lot more of your income on a monthly basis.

[–] i_am_hiding@aussie.zone 5 points 3 weeks ago (1 children)

I used to think so too, but my pi-hole just died the other week after four years of uptime. Couldn't work it out, finally pulled the SD card out to reinstall the OS and found my laptop wouldn't recognise it.

Made me glad I don't run my mailserver on a Pi anymore!

[–] i_am_hiding@aussie.zone 2 points 3 weeks ago

No, AuroraOS is the Russian fork of Sailfish.

Sailfish was in kahoots with the developers of Aurora, but they split ties when Putin spat the dummy at Ukraine.

Personally I wouldn't buy a Jolla C2, but if you can get your hands on an Xperia 10 (working features vary by version, my 10 IV is not too bad but the 10 III is more polished) or a device supported by one of the better community ports, it's worth a go.

[–] i_am_hiding@aussie.zone 3 points 3 weeks ago (2 children)

Replying from Sailfish.

It's a mixed bag. VoLTE is required in Australia (no 2G or 3G anymore) and SFOS does support it so that's good, but for some reason calls are stuck on speakerphone as the earpiece speaker doesn't work. The GPS lock is quite slow. I also don't have working cameras, and every time I unplug the charger the phone reboots.

On the plus side, the Android app support is really good (though I still use native SFOS apps wherever possible, but for banking etc. its handy). I have no stability problems, its pretty rock solid bar for the charger issue. I've daily driven it since about October last year, and honestly if I could make private phone calls it would be perfectly fine for me.

I will note that community developed ports are available for other devices with potentially better hardware compatibility, but the Android app support is not included as it's proprietary (though Waydroid exists as an alternative) and VoLTE support is touch and go on other devices.

[–] i_am_hiding@aussie.zone 0 points 1 month ago (1 children)

DS games were $50+ AUD fifteen years ago.

Quick search reveals some of the cheaper Switch 2 games are ~$65 and the more expensive ones are ~$90.

Given how much the buying power of $50 has decreased in the last 15 years, this seems reasonable to me...

48
submitted 1 year ago* (last edited 1 year ago) by i_am_hiding@aussie.zone to c/linux@lemmy.ml
 

Hi All,

I have a 4TB drive that was originally in a PC connected via SATA. I now wish to put it in an external enclosure and connect it via USB, however this is proving more difficult than I expected, and from what I understand it's Windows XP's fault.

On attempting to mount the drive with sudo mount /dev/sdc /mnt, I receive the following error:

mount: /mnt: wrong fs type, bad option, bad superblock on /dev/sdc, missing codepage or helper program, or other error.

The output of fdisk -l is as follows:

Disk /dev/sdc: 3.64 TiB, 4000787025920 bytes, 976754645 sectors
Disk model: Expansion Desk
Units: sectors of 1 * 4096 = 4096 bytes
Sector size (logical/physical): 4096 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos
Disk identifier: 0x00000000

Device     Boot Start        End    Sectors Size Id Type
/dev/sdc1           1 4294967295 4294967295  16T ee GPT

As can be seen, the disk is detected correctly as a 3.64TiB drive, but there is a partition that's read as 16TB. This, AFAIK, is because the sectors are incorrectly read as 4096 bytes long when they should be 512 bytes, and this is a thing that external enclosures do to ensure MBR compatibility with Windows XP.

I tried overcoming this by mounting as follows:

$ sudo mount -o ro,offset=$((1*512)) /dev/sdc1 /mnt

however now I have a new error:

mount: /mnt: failed to setup loop device for /dev/sdc1.

Trying to mount with sudo mount /dev/sdc1 /mnt only yields

mount: /mnt: special device /dev/sdc1 does not exist.

I'm at a loss as to how to mount this drive - at least, without reformatting it. Is it at all possible? Once I've cracked the code, can I configure /etc/fstab to do it automatically for me, or am I stuck in this limbo-land where I have data on my disk that's only readable with a hacky workaround? As a last resort, I think I can plug it back in via SATA, copy all 4TB off, plug it in via USB, reformat it and copy everything back on, but I want to avoid that hassle.

Edit: Output of fdisk -l when connected via SATA. Note the sector size is now 512 and the drive mounts happily.

Disk /dev/sdb: 3.7 TiB, 4000787030016 bytes, 7814037168 sectors
Disk model: HGST HDN724040AL
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: 5852E3A7-A2E4-4589-9D93-F8020C2D7E54

Device     Start        End    Sectors  Size Type
/dev/sdb1   2048 7814035455 7814033408  3.7T Linux filesystem
 

Hopefully this is the right community to ask this question in.

I have been tasked with providing a way for a small team to send and receive text messages via a real mobile phone from their computers. Having daily driven Fedora since 2017, my first thought was KDE Connect SMS. Unfortunately, I have to be able to support Windows in this endeavour.

As such, I have three questions:

  • KDE connect is available for Windows, however as far as I can figure kpeoplevcard is not. Am I mistaken? Is there a way to get contact names syncing successfully in a Windows environment, even just one-way?
  • Despite the notification permission being granted on Android, incoming text messages produce no notification on Windows. I have read this may be a fault that occurs when the Android client was installed from F-Droid. Is this the case? I haven't made a Google account for this device, so perhaps I need to do that and install the Play Store version.
  • MMS images appear fine in the KDE Connect SMS application, however they are only thumbnail sized and can not be saved as a file or copied. Can they at least be made bigger, if not exported?

I'm worried that KDE Connect may not be the correct choice for this use-case if these issues don't have workarounds. I may have to use Google's Messages for Web, but that doesn't allow concurrent connections from multiple PCs like KDE Connect does - and it will mean I have to deal with Google.

view more: next ›