HackerTrans
TopNewTrendsCommentsPastAskShowJobs

projproj

no profile record

Submissions

Show HN: Friendlyfriends.community

friendlyfriends.community
3 points·by projproj·2 ปีที่แล้ว·0 comments

comments

projproj
·8 เดือนที่ผ่านมา·discuss
I admit it was a bit ridiculous. However, if Microsoft is going to brag about how much AI code they are using but not also brag about how good the code is, then we are left to speculate. The two outages in two weeks are _possible_ data points and all we have to go on unless they start providing data.
projproj
·8 เดือนที่ผ่านมา·discuss
Obviously just speculation, but maybe don't let AI write your code...

Microsoft CEO says up to 30% of the company’s code was written by AI https://techcrunch.com/2025/04/29/microsoft-ceo-says-up-to-3...
projproj
·2 ปีที่แล้ว·discuss
I am trying out something along those lines with friendlyfriends.community (nod to Do Androids Dream of Electric Sheep). Still pretty basic though, but feel free to give it a try.

Edit: I'm exploring the idea that social media is not really social. How much different is it to interact with a human intermediated by social media sites than it is to interact with chatbots?
projproj
·4 ปีที่แล้ว·discuss
https://flexbox.help/ I get a lot of people saying it was very useful.
projproj
·4 ปีที่แล้ว·discuss
Here's an alternative I recently came across. In Firefox on the network tab of the dev console, right click on an XHR request. You'll have two relevant options: "Resend" and "Edit and Resend". Edit and Resend doesn't give you all the features of Postman, but it is useful and a lot easier. I have spent a lot of time in Postman just putting in all the headers and POST body to set up the API call. With this method in Firefox, all parameters are already set because it's an exact copy of the request you already sent. You can change params or just hit send when you're ready to retest something you're doing on the backend.
projproj
·4 ปีที่แล้ว·discuss
I use these additional parameters: `&gsrlimit=25&prop=imageinfo|pageimages&iiprop=url|size`. I think it just changes how much and what type of data is returned, but maybe that could be the difference?
projproj
·4 ปีที่แล้ว·discuss
https://commons.wikimedia.org/w/api.php?action=query&generat... search term here>&format=json

(see https://en.wikipedia.org/w/api.php?action=help&modules=query for reference)

edit: formatting
projproj
·4 ปีที่แล้ว·discuss
I made canweimage.com. It can't replace all the features of Google, but it can fit the bill if you just need a basic search of Creative Commons.
projproj
·4 ปีที่แล้ว·discuss
Depending on the time of year you go, make sure you get a reservation: https://www.nps.gov/arch/planyourvisit/permitsandreservation...
projproj
·5 ปีที่แล้ว·discuss
Totally had no idea. Thanks for the tip. I guess tomdn.com is for non-ddg users only.
projproj
·5 ปีที่แล้ว·discuss
Valid questions. I just think it's faster. One action on tomdn.com instead of 1. DDG "array.map mdn", 2. Find MDN result (usually first), 3. Click result, 4. See docs.

Bangs are great, just shorter again to use tomdn.com: - `!mdn array.map` leads me to https://developer.mozilla.org/en-US/search?q=array.map, which I have to scan the results and click on. - tomdn.com?array.map leads me to the exact page in the docs. https://developer.mozilla.org/en-US/docs/Web/Javascript/Refe...

This may or may not be valuable, but I like saving the extra steps for something I do many times a week. Basically this calculation (https://xkcd.com/1205/) works out for me + the fun of working on a new project.

edit: >I don't have to run my searches through an unknown third party

Very sympathetic to this concern. Feel free to host yourself -- it's a single html file. https://github.com/tayler/tomdn
projproj
·5 ปีที่แล้ว·discuss
Check out tomdn.com. I created it to make it easier to get to MDN. E.g., instead of googling array.map, just type tomdn.com?array.map. It will take you straight to MDN docs on Array.prototype.map. Other things work as well, like tomdn.com?object.keys, tomdn.com?css.color, tomdn.com?htmlel.button, etc.

If there is a pattern it doesn't recognize, you end up on the MDN search results page.

edit: More info. about how it works is available here: https://github.com/tayler/tomdn