cikavuveDiscord[, [jgmac1106], t-mo, [tantek], [Michael_Beckwit and [jeremycherfas] joined the channel
#[jeremycherfas]Coming to this conversation very late, but Byword has had a publish button for a long time now. Originally WordPress but may be others by now.
[Rose], GWG, vilhalmer, [tonz] and [Lewis_Cowles] joined the channel
#aaronpksnarfed: does bridgy fetch Instagram profile pages or just photo permalinks? I'm seeing drastically different limits on profile pages
[dominik] joined the channel
#petermolnaranyone knows if any of the cloud providers have a free tier for full text search ?
#[Lewis_Cowles]I think Algolia & elastic.co does, however you’re limited in terms of accesses and size of DB if I remember rightly
#[Lewis_Cowles]AWS probably has something or you could install something awful on a box
#[Lewis_Cowles]All are incredibly limited [petermolnar_]
#[Lewis_Cowles]Heroku AFAIK could use free-tier postgres
gxt joined the channel
#ZegnatAny cloud provider that gives you enough space and processing power to run SQLite, petermolnar? ;)
#[Rose]`mysql -u ownyourgram -p ownyourgram < schema/schema.sql` is the correct command [jhsheridan]
#[JHSheridan]I really dislike slack, but it's nice to be able to see the messages that came in before I was in here rather than running a bouncer
#Zegnat[JHSheridan]: really dumb question, but, schema/schema.sql is readable from where you are on the terminal? It isn’t that the access denied error is coming from reading the file?
#[Rose]I was hoping you'd caught the typo, my next guess would be the same as Zegnat
#[JHSheridan]I have considered this [jgmac1106]. I go back and forth on it
#Zegnat[JHSheridan]: could you run `php -m | grep pdo_`?
#petermolnarZegnat: the only reason I'm looking into cloud is to keep up to date... my rough guess is that 50+% of use search use cases out there could be covered with SQLite
#jgmac1106a deeply personal choice, having to choose to between being able to send a picutre to a friend or supporting a compnay that unleashes hate, anger,and envy on the world..if only there was another way to send a pic to a friend….
#[JHSheridan][Zegnat] I get no output and an error exit in my terminal
#GWGI have an issue filed to generate a summary when a URL is provided to Parse This, my xray equivalent, so it can be optionally displayed.
#GWGI don't want to display the entire content field, which was the alternate request
#aaronpki remember a discussion around this, and something about being able to distinguish between a hand-authored summary and an automatically generated summary
#[JHSheridan]I'm up and running locally, but seems to be having an issue verifying my instagram. There's definitely a link in there, and I've had it verified using the online service
#[JHSheridan]We didn't find any photos in your Instagram profile. If your account is set to "private", OwnYourGram will not be able to import your photos. If you're sure you've posted photos and your account is public and are still seeing this message, you can report an issue.
#[JHSheridan]There was an error posting the photo to your website. Please check that you're handling the expected parameters and returning the "Location" header and try again.
neoaboriginal1, t-mo, jeremych_, gxt, jgmac1106, psyonityDiscord[, [schmarty], [tonz], [frank] and [tantek] joined the channel
#jeremycherfasVery I-am-not-a-developer question: having cargo culted my new theme, I'm left with a lot of JS from the theme I modified that I am pretty sure I no longer need. Is there some formal way of testing whether a site uses everything it has included in the head, or do I just delete one by one and wait for something to break?
#[Lewis_Cowles]you can console.log each function and scan the console, or have it queue up telemetry which talks to a server which can track more rigorously over-time
#[Lewis_Cowles]Almost never delete unless you’re certain, but worry if it’s too JS laden
#aaronpkhm yeah, that's tough. I usually look for possible entry points into a JS file. that'd be things like globally defined functions, or code that traverses the DOM. once you identify the entry points, you can look for things that would cause those to be entered.
#jeremycherfasSome are obvious, like a thing that formats a masonry-styled wall of excerpts, which I definitely do not want. Others maybe less so. I suppose looking through the JS would be more generally useful.
#aaronpkyeah i think you just have to comb through all the code
#jeremycherfasErk. Well, i will probably gain by doing so.
#jeremycherfasActually, taking a detailed look now, it isn't as bad as I thought, because most of the baggage is stylesheets, which I know I don't need. There JS I can probably cope with.
#[snarfed]aaronpk: bridgy fetches both profile pages and photo permalinks
#[snarfed]i switched it to use a logged in cookie (for a test account) a while back though, so that's probably the main difference btw it and OYG right now
#aaronpkHm k. I tried sending a logged in cookie but I’m not sure that’s actually working. I did most of the code on the plane with slow internet so wasn’t able to test things as well as I’d like.
#aaronpkAlso to really test I need to deploy XRay and see what it does on google cloud and my connection wasn’t stable enough for that
#[snarfed]unrelated, wow, interesting. mastodon's API is standard OAuth 2, including registering apps beforehand...but since it's decentralized, there's no single place to register an app. so they have an API _for registering apps_, per instance. makes sense, just interesting.