#GWGIt will allow Yarns Microsub to subscribe to your site
snarfed, eli_oat, eli_oat1, tantek, [dave] and eduardm joined the channel
#kisik21How much data a Micropub server would typically hold as a database? assuming one user and a moderate amount of feeds.
#kisik21aaronpk: for example, how much does Aperture use?
#kisik21(I know Aperture isn't single-user, but it seems to de-duplicate feeds)
barpthewire and doubleloop joined the channel
#doubleloopAt IndieWebCamp Berlin 2017 (yes 2017!) I remember I think it was Sebastian Greger and Zegnat discussing a way of embedding YouTube videos so that they didn't pull in any cookies until you actually clicked on them
#doubleloopAnyone has links/references to that idea and implementations?
#petermolnarI looked into that a while ago, and it used to be doable
#LoqiIt looks like we don't have a page for "silo.pasta" yet. Would you like to create it? (Or just say "silo.pasta is ____", a sentence describing the term)
#doubleloopI've used hooktube in the past, but the Trending videos section of it always makes me a little dubious of it
#doubleloopIf I recall correctly, Sebastian's solution displayed a static screenshot from the video, and at the point of clicking on that, replaced it with the actual video
#petermolnarI believe that's what adafruit is doing as well
#Zegnatdoubleloop: sgreger has written a big blog post on that pattern, and also implemented it on his site. Looks a lot like how DuckDuckGo does it, if you are familiar with that. Let me find the blog post about it
#doubleloopGreat, thanks Zegnat. Using youtube-noookie has at least gotten rid of doubleclick trackers from my site, that's a start!
#LoqiThe EDPB’s official “Guidelines on Transparency” under GDPR are a valuable, yet little-known, resource for designers. In this article series, I examine the 40-pager for contributions on putting individuals in control of their personal data thro...
#ZegnatBut I am pretty sure he was using a similar thing where you need to click a button before the embed is put into place for video content too. It is really clever.
#Zegnatpetermolnar, I think youtube-dl *is* able to get you a video URL. But because of how YouTube works, I believe the URL will expire.
#ZegnatIIRC that was exactly how hooktube worked, they were able to show <video> element embeds of youtube videos. Which was nice, because iOS Safari was then able to run that video picture-in-picture.
#ZegnatSadly they shut down that feature and are using YouTube’s own embeds on hooktube now.
eduardm, iasai, [jgmac1106], jjuran, jgmac1106 and [schmarty] joined the channel
#kisik21if I have a media endpoint, will a Micropub client prioritize using it than using file upload?
#ZegnatI wonder if that shouldn’t just be the recommendation, always. If someone exposes a media endpoint, lets not assume their micropub server can handle big uploads at all, so prefer the external endpoint
#ZegnatFor several things on my h-card I myself am the consuming use-case. Creating diffs of personal data regardless of html/design changes to the page
#GWGaaronpk, I sort of prefer my h-card location to be my city
#aaronpkSure, it's really not that interesting of a question until there's a consuming use case
#aaronpkSo given that, a more common pattern I've seen is that people want to link out to some other service to say where they are, instead of making something to update their home page all the time.
#aaronpkFor example Compass and Icecondor are two services that can track someone's location and provide it at an HTTP endpoint
#aaronpkand much longer ago, FireEagle was a service to do that manually
#GWGI will just remove the markup until I sort it out
#GWGAs I said, built the feature per request, so I may have to ask chrisaldrich
#aaronpkYou know you don't have to build everything someone asks for right? :-)
#GWGWith location, it says that if I use a venue/place API I can't store the data and have to attribute. But I only want the textual name of places. I still can't store them?
#GWGaaronpk, chrisaldrich is a great tester. Besides, it was not a hard feature to build
#Loqidonthavetobuildeverything has 1 karma over the last year
#snarfedin general, the total cost of a feature is something like 10-20% initial implementation, 80-90% lifetime maintenance
#snarfed(this is not at all intuitive, especially when you're newer to software engineering. can often years to decades of experience to fully appreciate. :P)
[Khurt], eli_oat, snarfed, eduardm and [tantek] joined the channel
#jgmac1106[zegnat] I am trying to embed a grid (the h-card) in a girdd with four columns, withnin that h-card there is also a flexbox of social media icons
eli_oat joined the channel
#ZegnatI don’t see a grid on the h-card element though, only on its parent element... I don’t think grids are inherited, so no way the h-card subelements will be on that grid
#jgmac1106i thought I had mypeeps inside of item which is inside of container
#jgmac1106my peeps has these defined grid-areas: 'avatar''name' 'bio' 'deets deets’;…think that is my mistake. I can always get explicit defined columns and rows correct, whenever I try to use gridareas I screw everything up
#jgmac1106I know it canbe done I just can’t use gridareas, mess up every time
#ZegnatIt can be done how you do it now, but you need to define those grid-areas on the h-card, not on yhe mypeeps. When you tell the image tag to be in the “avatar” area, it looks for an avatar area on its direct parent (the h-card) and it doesn’t find it there
#jgmac1106[zegnat] if I move to the grid to user-profile instead of mypeeps things go real crazy
leg joined the channel
#Zegnatjgmac1106, that is nevertheless where it is supposed to be if you want its child elements to make use of the grid
#ZegnatHmm, using the Firefox grid inspector shows the grid has 2 columns. But I am not sure why
#ZegnatSo it does exactly what it is supposed to. You declared a width on the column of 50%, and then declared a bunch of areas that need to be stacked. Then all the elements get stacked in the squashed space
#ZegnatI have no idea how the avatar even got rendered behind it
#ZegnatIs it putting everything in the same gridcell now?
#ZegnatYep. Turning on grid inspector, you only have 1 grid cell
#ZegnatI think grid-template-areas only works to give names to actual existing areas. That means you will first have to set up the rows and columns
#jgmac1106okay I fixed that but now why iis my inspector sayign there is no grid in the page: https://h-card-layout.glitch.me/ I marked container as a grid and then tried to explictly place items1-4 to no avail
#jgmac1106this was supposed to take me an hour or so….remind me how much I hate learnign css, its logical, it works, something doesn’t work because I cant figure it out
#KartikPrabhuthose are not grid items since they are nested so you can't use grid properties for alignment
#jgmac1106.well where I started, bunch of detours along the way, I thought defining this on the grod justify-items: center; or align-items: center; would do it
#KartikPrabhuit would align the direct children of the grid