bigchunga

joined 1 week ago
[–] bigchunga@feddit.online 25 points 9 hours ago

All I want is anonymous sign-up.

[–] bigchunga@feddit.online 1 points 2 days ago

Yeah, the whole search experience on OsmAnd is kinda weird. It wants you to input each piec e of information into a separate field.

[–] bigchunga@feddit.online 7 points 3 days ago (5 children)

Yeah, that's my biggest gripe too. It's awesome for outdoor stuff like hikes and bike rides. But actually just typing in an address/POI like in Google Maps and it finds it? Somehow it doesn't work. At least with OsmAnd and OrganicMaps.

 

Calibre-Web can wirelessly sync with Kobo readers by changing the API-endpoint. I'm wondering if that still works while using Koreader?

I'm trying to get a workflow running with Calibre-Web -> Kobo -> Highlights to Readwise -> Readwise to Obsidian.
Stock Kobo doesn't sync wirelessly to Readwise and if I understand correctly, Koreader offers that.

 

I understand that technically any widget that can manipulate .md files works and I have found some that do exactly that.
My problem is that as I use the official Obsidian Sync, I can't find my vault folder on Android and thus those tools don't work.

Does anyone know of a widget tool that works with Sync or how to point an existing tool to the Sync folder?

[–] bigchunga@feddit.online 16 points 1 week ago (8 children)

I have a seedbox and would totally be up to seed Wikipedia. Is there an easy way to automate that always the newest release gets seeded? I don't want to do it manually every day.

[–] bigchunga@feddit.online 3 points 1 week ago

Perfect, I'll give it a go. I'm no CSS expert and a quick search only returned the :disable thing. I guess I could also set the max-height to something like 1000px to limit extremely long ones.

 

Hi!

I have set 'Compact UI' in the settings to 'No - expand images' but in my home feed they are still cut off. Looking at the code I can see the following:

.post_teaser_image_preview a {  
    max-height: 575px;  
    overflow: hidden;  
}  

and disabling max-height solves my issue (seeing the whole image in the feed without clicking it).

How do I specify this in the custom CSS section in the settings so that the max-height is always disabled?
I tried

:disable {  
    .post_teaser_image_preview a {  
        max-height: 575px;  
    }  
}  

but it doesn't work.