The Wiert Corner – irregular stream of stuff

Jeroen W. Pluimers on .NET, C#, Delphi, databases, and personal interests

  • My badges

  • Twitter Updates

  • My Flickr Stream

  • Pages

  • All categories

  • Enter your email address to subscribe to this blog and receive notifications of new posts by email.

    Join 1,839 other subscribers

Archive for the ‘SocialMedia’ Category

WhatsApp Help Center – How to use broadcast lists

Posted by jpluimers on 2023/08/18

Cool, did not know this and used readonly groups (with one writer) for this before: [Wayback/Archive] WhatsApp Help Center – How to use broadcast lists

Via: [Archive] Sylvia on Twitter: “Ik wist nooit van t bestaan van verzendlijsten op whapp. Zusje kwam er gisteravond mee. Ging wereld voor mij open. Ideaal in deze situatie. Gewoon 1 bericht er uit en hele familie en vriendenkring is op de hoogte.”

–jeroen

 

Posted in Android Devices, Power User, SocialMedia, WhatsApp, WhatsApp for Android | Leave a Comment »

Youtube – Extract Meta Data – Amnesty International

Posted by jpluimers on 2023/08/16

Cool that Amnesty International can do a YouTube [Wayback/Archive] Extract Meta Data (Amnesty International).

Via:

I wonder if I can write a Bookmarklet for this (it will likely require an HTTP POST request).

–jeroen

Posted in Development, HTML, JavaScript/ECMAScript, LifeHacker, Power User, Privacy, Scripting, SocialMedia, Software Development, Web Development, YouTube | Leave a Comment »

Interesting: analytics.twitter.com

Posted by jpluimers on 2023/08/03

I didn’t know about analytics.twitter.com. It cannot be archived in the WayBack machine or Archive Today (because of http 307 redirects without a logged on Twitter account), but it gives analytics of your past twitter behaviour.

The about link does archive though: [Wayback/Archive] Twitter Analytics: about.

Via [Archive] An on Twitter: “@Walrathis al even gekeken op analytics.twitter.com?” / Twitter

–jeroen

Posted in Power User, SocialMedia, Twitter | Leave a Comment »

Characters you need to escape in the Title of a WordPress post

Posted by jpluimers on 2023/07/18

I forgot to post this: [Wayback/Archive] Which characters need to be escaped in HTML? – Stack Overflow

If you’re inserting text content in your document in a location where text content is expected1you typically only need to escape the same characters as you would in XML. Inside of an element, this just includes the entity escape ampersand & and the element delimiter less-than and greater-than signs < >:
& becomes &amp;
< becomes &lt;
> becomes &gt;

I didn’t quote further, as this bit is somehow important for WordPress posts. WordPress reminded me the hard way when initially these posts were wrongly titled:

Warning:

It also means the “Press This” bookmarklet always gets unescaped plain text wrong. Watch this when selecting text for blogging and check if the selected text actually got into your post fine.

Thanks [Wayback/Archive] Ahmet for asking the above question and [Wayback/Archive] Jeremy for answering it.

–jeroen

Posted in Development, HTML, HTML5, SocialMedia, Software Development, Web Development, WordPress, WordPress | Leave a Comment »

@b0rk (Julia Evans): SPF & DKIM records

Posted by jpluimers on 2023/07/17

A nice zine by @b0rk (Julia Evans) [Wayback/Archive.is] SPF & DKIM records

And a few days later [Archive] 🔎Julia Evans🔍 on Twitter: “… looks like a really nice way to learn about SPF/DKIM (h/t @CubicleApril) you send it an email and it walks you through everything the receiver does to verify the email …” / Twitter which referred to

[Wayback/Archive] Learn and Test DMARC.

Related:

Via: [Archive] 🔎Julia Evans🔍 on Twitter: “SPF & DKIM records …” / Twitter (the original got deleted as it had a [Archive] typo)

–jeroen

Posted in DNS, eMail, Internet, Power User, SocialMedia | Leave a Comment »

How To Use Twitter Search – Advanced Guide by @Luca – Fresh van Root

Posted by jpluimers on 2023/07/07

Need to check out which of these filters still work:

[Wayback/Archive] How To Use Twitter Search – Advanced Guide by @Luca – Fresh van Root

Operator Description
since:2019-05-06 Tweets published at or after the date. (UTC +0)
until:2019-05-07 Tweets published before the date. (UTC +0)
from:Luca Tweets that are not marked as sensitive media. Tweets published by a specific user.
to:Luca Replies and mentions for a specific user.
lang:de Tweets in a specific language. Language is detected by Twitter on a Tweet basis. “und” for Tweets where Twitter was unable to determine a language.
near:Berlin within:5km [unreliable] Tweets that were posted in specific locations and optionally within a certain range.
min_faves:5 Tweets with at least that amount of faves.
-min_faves:100 Tweets that have fewer faves than specified.
min_retweets:10 Tweets that were at least retweeted that many times.
-min_retweets:3 Tweets that were retweeted less than that many times
min_replies:70 Tweets that got a minimum amount of replies.
-min_replies:8 Tweets that got fewer replies. (max_replies does not work)
filter:follows Tweets by accounts you follow.
list:Luca/Science Tweets by accounts on a specified list.
filter:verified Tweets by verified accounts.
filter:images Tweets with an image.
filter:links Tweets with an URL.
filter:media Tweets with a video or a photo.
filter:retweets [only works with the API or with “include:nativeretweets”] Retweets.
filter:quote Tweets that contain a quoted Tweet.
filter:replies Tweets that are a reply.
filter:mentions Tweets that mention a user.
filter:videos Tweets that contain a video.
filter:native_video Tweets that contain a video, that was directly uploaded to Twitter.
filter:news [unreliable] Tweets that contain a URL to a news source.
filter:safe [unreliable] Tweets that do not contain sensitive material.
include:nativeretweets It allows you to search through retweets as well. Especially useful in combination with from:account or filter:follows.

–jeroen

Posted in Power User, SocialMedia, Twitter | Leave a Comment »

JavaScript Bookmarklet to enable Mastodon publishing for a WordPress.com post that is edited in the Classic Editor

Posted by jpluimers on 2023/07/02

I quickly hacked together this JavaScript Bookmarklet today, so it is without any checks and assumes you have enabled one Mastodon account for publishing, that you are hosting your blog on WordPress.com, and using the Classic Editor:

javascript:(function(){
  publicizeFormEditHref = document.getElementById('publicize-form-edit');
  publicizeFormEditHref.click();
  mastodonCheckboxes = document.getElementsByClassName('wpas-submit-mastodon');
  mastodonCheckboxes[0].checked = true;
  publicizeFormHideHref = document.getElementById('publicize-form-hide');
  publicizeFormHideHref.click();
  updateButtonHref = document.getElementById('publish');
  updateButtonHref.click();
})();

The above code is the state of [Wayback/Archive] JavaScript Bookmarklet for the WordPress classic editor which enables mastodon publishing (assuming you have one mastodon publishing account enabled … )  and due to be improved in a later blog post.

This will enable the currently edited post to be published to Mastodon, then update/publish the post.

On enabling one Mastodon account for publishing:

Read the rest of this entry »

Posted in Bookmarklet, Development, HTML, JavaScript/ECMAScript, Mastodon, Power User, Scripting, SocialMedia, Software Development, Twitter, Web Browsers, Web Development, WordPress, WordPress | Leave a Comment »

Elon loves burning equity. TechCrunch: Twitter now requires an account to view tweets

Posted by jpluimers on 2023/07/01

In other news since yesterday [Wayback/Archive] Twitter now requires an account to view tweets | TechCrunch

Like many of Twitter’s recent changes, this could easily backfire. If tweets aren’t publicly accessible, search engine algorithms could rank the site’s content lower, meaning that fewer people would be directed to the site from Google.

This not only hampers SEO, but any anonymous access to tweets resulting in Twitter to have become a walled garden without any prior announcement.

As of yesterday, this for instance makes it way harder for researchers to access Twitter in a non-biased way (the Twitter Algorithm will always bias the timeline for an account). It also prohibits the Wayback Machine from archiving Tweets (which I rightnow cannot archive):

https://twitter.com/jpluimers/status/1675070261274484736

Twitter is now more restricted than LinkedIn or Facebook, so I think it is a next step of burning the Twitter Equity to the ground followed after many other steps scaring Twitter users away, for instance as of:

Read the rest of this entry »

Posted in Facebook, LinkedIn, SocialMedia, Twitter | Leave a Comment »

All the Cyber Ladies: Een podcast voor, door en over vrouwen in cybersecurity. – PodcastFeed

Posted by jpluimers on 2023/06/20

Een ontzettend belangrijke podcast is [Wayback/Archive] All the Cyber Ladies – PodcastFeed

Een podcast voor, door en over vrouwen in cybersecurity.

Ik mis geregeld de periode van 30-35 jaar terug waarin IT-teams vaak “gewoon” uit 25% vrouwen bestonden. Gemêleerde teams zijn van onschatbare waarde voor goed functionerende IT, niet alleen vanuit oogpunt van #a11y en #inclusie: ook voor information security.

De tijd maakt inmiddels gelukkig een inhaalslag: er komen steeds meer vrouwen in de IT en je merkt gestaag dat teams diverser worden. All the Cyber Ladies draagt eraan bij dat proces binnen information security verder te versnellen.

De podcast is begin juni dit jaar van start gegaan en heeft nu al een trouwe schare volgers die hopelijk verder groeit naarmate Google deze hoger in de zoek-index opneemt.

Uiteraard is er ook een [Wayback/Archive] All the Cyber Ladies – PodcastFeed RSS zodat je die aan je eigen Podcast Player kunt toevoegen (en vaak staat die er al zoals bijvoorbeeld bij [Wayback/Archive] Player.FM: All The Cyber Ladies podcast)

Via [Wayback/Archive] Lucinda on Twitter: “@jpluimers Zeker!! Je kan de podcast in veel andere players vinden. https://t.co/ksUB8Hd7e4” / Twitter.

–jeroen

Posted in accessibility (a11y), Awareness, Cyber, Development, Inclusion / inclusive society, Infosec (Information Security), Power User, Security, SocialMedia | Leave a Comment »

Thread by @aakashg0 on Thread Reader App: the Twitter tweet ranking algorithm

Posted by jpluimers on 2023/04/05

Interesting read: [Wayback/Archive] Thread by @aakashg0 on Thread Reader App with this takeaway:

If you take away anything, remember this – the models take in 3 inputs:

• Likes, retweets, replies: engagement data
• Mutes, unfollows, spam reports: user data
• Who follows you: the follower graphImage

Read from the start at [Wayback/Archive] Aakash Gupta 🚀 Product Growth Guy on Twitter: “Twitter revealed its algorithm to the world. But what does it mean for you? I spent the evening analyzing it. Here’s what you need to know:”

The algorithm is at [Wayback/Archive] twitter/the-algorithm: Source code for Twitter’s Recommendation Algorithm.

Via [Wayback/Archive] Andrea on Twitter: “Haha, dát is het dus!” / Twitter

Note: for me the only way to reliably follow people is this: [Wayback/Archive] Jeroen Wiert Pluimers @wiert@mastodon.social on Twitter: “@chrisbensen @geerlingguy @TwitterBlue @elonmusk @tweetbot About the only tweeps I see tweets from on a regular base is the ones I turned notifications on for. It does not matter if they are blue or not. The blue ones tend to post overly large tweets. Those I skip reading.”

–jeroen

Posted in Development, Java, Java Platform, SocialMedia, Software Development, Twitter | Leave a Comment »