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,854 other subscribers

Twitter: find my new-style retweets that have images

Posted by jpluimers on 2022/01/11

This gets the tweets I retweeted and have images in them:

from:@jpluimers filter:images filter:nativeretweets

Based on:

  • [Wayback] twitter – How do I find my retweets of a certain account? – Web Applications Stack Exchange
    from:@someone filter:nativeretweets [KEYWORD(s)]
    

    This shows all retweets of @someone (including the optional KEYWORD(s)). If you retweeted the same tweet you can use @yourtwittername instead of @someone.

  • This article gives you a robust overview of everything you need to know about advanced TweetDeck features.[Wayback] About advanced TweetDeck features

    To search for mentions of #space from verified accounts, excluding Retweets, type the following in the search box: #space filter:verified -filter:nativeretweets

  • [Wayback] Difference between -filter:retweet and -filter:nativeretweets in Twitter Search API 1.1 – Stack Overflow

    I believe per TweetDeck documentation (https://support.twitter.com/articles/20170322) this is the difference:

    filter:nativeretweets shows retweets from users who have hit the retweet button. filter:retweets shows old style retweets (“RT”) + quoted tweets.

    Those are filtering FOR those types of results, but as you’ve done, the – is necessary to filter them out -filter:nativeretweets or -filter:retweets

  • [Wayback/Archive.is] Twitter API 1.1 tweets / favorites (likes) / following / followers backup in web browser
    /* Twitter API 1.1 tweets / favorites (likes) / following / followers backup in web browser
     * Get your access keys to use Twitter API 1.1: https://dev.twitter.com/docs/auth/tokens-devtwittercom
     * You can change Twitter API URL and Twitter screen_name, then execute script from a trusted web page without CSP protection like about:blank in a web browser console (F12 or Ctrl+Shift+K shortcut)
     * A textarea will appear so you can copy/paste to save data as a CSV file or search tweets / users in your web browser (Ctrl+F shortcut)
     * You can then view your backup in a spreadsheet editor like LibreOffice Calc
     * You can also compare the backup with another one to see who unfollowed you, who changed their Twitter username by looking at the user ID or which tweet you retweeted / favorited was deleted (e.g. with the Linux diff command)
     * 
     * Note about the tweets backup:
     * Usually you will search tweets that you retweeted using Twitter web version (https://twitter.com/search) with a search like "from:your_username filter:nativeretweets keyword"
     * But it is limited to the retweets of the last 7 days, like for the free version of the search API (https://developer.twitter.com/en/docs/tweets/search/overview/standard)
     * An alternative is to search tweets in your user timeline with this script but it is limited to your last 3200 tweets (including retweets and replies)
     * This script can be combined with the Twitter feature to backup data, which is not limited to your last 3200 tweets but you can only request a backup every 30 days
     * To find tweets that you retweeted or favorited / liked from a specific person, you can open the CSV file with LibreOffice Calc, click on the column you want to search and press Ctrl+H to search a username
    */

–jeroen

Posted in Development, JavaScript/ECMAScript, Power User, Scripting, SocialMedia, Software Development, Twitter | Leave a Comment »

Security questions are evil because of social media “games” phishing for them

Posted by jpluimers on 2022/01/11

Via [Archive.is] Jilles Groenendijk on Twitter: “what @AppSecBloke said… “, from:

I don’t normally do this but here goes:

First job STOP
Current job SENDING
Dream Job YOUR
Favorite food POTENTIAL
Favorite dog PASSWORDS
Favorite footwear OR
Favorite Chocolate bar MEMORABLE
Favorite Ice Cream DATA
Your Vehicle color TO
Favorite Holiday PEOPLE
Night owl or earlybird WHO
Favorite day of the week COLLECT
Tattoos THIS
Favourite colour INFORMATION
Do you like vegetables FOR
Do you wear glasses SOCIAL
Favourite season ENGINEERING

Read the rest of this entry »

Posted in Facebook, Instagram, LifeHacker, Pen Testing, Power User, Security, SocialMedia | Leave a Comment »

VMware ESXi and vSphere: vmNIC speeds are limited by your CPU and RAM speeds, only in part by the vNIC drivers

Posted by jpluimers on 2022/01/11

Still a lot of people think that network speed depends on the vNIC driver and vNIC speed settings.

This is not true: it mainly depends on CPU and RAM speeds as that is where the bottleneck of virtual network processing is.

What does matter is the VM/host overhead is far less when drivers use paravirtualisation (i.e. shortcutting calls from the guest OS to the hypervisor) like PVSCSI for disk or VMXNET3 for networking. This means that VMXNET3 has even more performance than E1000.

Read the rest of this entry »

Posted in ESXi5, ESXi5.1, ESXi5.5, ESXi6, ESXi6.5, ESXi6.7, ESXi7, Power User, Virtualization, VMware, VMware ESXi | Leave a Comment »

Some notes on ESXi and SMART information from HDD/SSD devices

Posted by jpluimers on 2022/01/10

For my link archive:

  1. [WayBack] VMware ESXi S.M.A.R.T Health Monitoring | ESX Virtualization based on the built-in tooling, showing how /usr/lib/vmware/vm-support/bin/smartinfo works (contrary to the article, this is a binary, not a smartinfo.sh script, at least in ESXi 6.0 and higher). Note this does not list all SMART parameters, so can give you a false sense of being on the safe side.
  2. [WayBack] Determine TBW from SSDs with S.M.A.R.T Values in ESXi (smartctl) | Virten.net which is based on smartctl from [WayBack] smartmontools and provides a link to the [WayBack] smartctl-6.6-4321.x86_64.vib.
    1. Download smartctl-6.6-4321.x86_64.vib
    2. Copy the VIB to the /tmp/ directory of an ESXi host
    3. SSH to the ESXi host
    4. Set the VIB acceptance level to CommunitySupported
      # esxcli software acceptance set --level=CommunitySupported
    5. Install the package (Maintenance Mode or Reboot is not required)
      #esxcli software vib install -v /tmp/smartctl-6.6-4321.x86_64.vib

    The tool is located at /opt/smartmontools/smartctl and works just like the Linux version.
    Locate physical disks with ls -l /dev/disks/

    /opt/smartmontools/smartctl -d [Device Type] –all /dev/disks/[DISK]

  3. [WayBack/Archive.is] ESXi S.M.A.R.T. health monitoring for hard drives (2040405) describing the internal tools from an ESXi 5.x perspective

The first two links are via [WayBack/Archive.is] esxi 6 monitor sata temperature – Google Search; the last links via [WayBack/Archive.is] esxi 6 view smart – Google Search.

–jeroen

Posted in Power User, Virtualization, VMware, VMware ESXi | 2 Comments »

Since I always have trouble with German word-gender (Geschlecht) and grammatic case (Falle): “Er wohnt in DER Schweiz” (Wo?) “Ich fahre in DIE Schweiz” (Wohin?)

Posted by jpluimers on 2022/01/10

Thanks for this example: [Archive.is] Grote Lange Dikke Trien on Twitter: “In der Schweiz. “Er wohnt in DER Schweiz” Wo? “Ich fahre in DIE Schweiz” Wohin?… “

–jeroen

Posted in LifeHacker, Natural Languages, Power User | Leave a Comment »

Topotijdreis: 200 jaar topografische kaarten

Posted by jpluimers on 2022/01/10

200 year old topography of The Netherlands:

Hoe zag jouw omgeving er vroeger uit? Kijk nu zelf op Topotijdreis.nl. De website van het Kadaster met kaarten tot 200 jaar oud.

[WayBack/Archive.is] Topotijdreis: 200 jaar topografische kaarten

Via:

–jeroen

Read the rest of this entry »

Posted in LifeHacker, Power User | Leave a Comment »

Alexander Klöpping. Juist nu. on Twitter: “Is er een voice recorder app waarbij je met een druk op de knop tijdcodes kunt markeren omdat vlak voordat moment iets belangrijks gezegd werd? Zodat je achteraf makkelijk de belangrijke momenten kunt terugzoeken?” / Twitter

Posted by jpluimers on 2022/01/07

[Archive.is1/Archive.is2] Alexander Klöpping. Juist nu. on Twitter: “Is er een voice recorder app waarbij je met een druk op de knop tijdcodes kunt markeren omdat vlak voordat moment iets belangrijks gezegd werd? Zodat je achteraf makkelijk de belangrijke momenten kunt terugzoeken?” / Twitter

https://twitter.com/AlexanderNL/status/1277519084117164032

Selectie voor Android / Windows / MacOS:

Read the rest of this entry »

Posted in Android Devices, Audacity, Audio, Media, Power User, Windows | Leave a Comment »

Covid-19 herstelbewijs geldig van 12-180 dagen na je positieve PCR test verwerkt door GGD (Corona, SARS-CoV-2)

Posted by jpluimers on 2022/01/07

Ik had dus gemist dat in oktober 2021 de spelregels rondom een corona herstelbewijs.

De reden is dat de communicatie rondom corona in Nederland niet echt top is.

Het laatste voorbeeld: terwijl boosters voor iedereen van 18 jaar en ouder beschikbaar zijn en sommige vaccinatielocaties inmiddels weer vrije inloop hebben, hebben velen dat in mijn omgeving nog niet aangevraagd, want “ik heb nog geen uitnodiging ontvangen”, en/of “ik wist niet dat het al kon”. Anderen ervaren hetzelfde, dus dit soort berichten zijn belangrijk:

Terug naar herstelbewijs: de meeste linkjes hieronder zijn namelijk niet van GGDGHOR, RIVM of Rijksoverheid.

De enige GGD website die de communicatie rondom herstelbewijs qua volledigheid en duidelijkheid op orde heeft is GGD zhz (Zuid-Holland Zuid). Complimenten!

Hier de linkjes (via [Wayback/Archive] herstelbewijs corona aanvragen – Google Search):

–jeroen

Posted in Covid-19/SARS-CoV-2/Coronavirus, Health, Power User, Vaccinations | Leave a Comment »

Removing yourself from a twitter list means you have to temporarily block the user maintaining the list

Posted by jpluimers on 2022/01/07

Removing yourself from a list has been possible for a long time (since at least 2013) by blocking the list owner, then unblocking, but was only documented late 2019 in [WayBack] How to use Twitter Lists:

A Twitter List is a curated group of Twitter accounts. Create your own or subscribe to a List created by someone else to view a streamlined timeline.

How to remove yourself from a List

You can view which Lists you are a member of through your Lists tab. To remove yourself from a List you will need to block the creator of that List.

It was public knowledge though, for instance documented at [WayBack] How journalists can remove themselves from Twitter lists – & why it matters – Poynter, which also documents this:

How can I find out which Twitter lists I’m on?

When using Twitter on the web, click on lists. You will arrive at “Subscribed To.” Next to that heading, you’ll see “Member Of.” Click on it to see the Twitter lists that include you as a member. This list of lists is chronological starting at the bottom — the first list you see at the top will be the one that most recently added you.

For me this is twitter.com/jpluimers/lists/memberships

 

The same trick also works when you want to have someone un-follow you:

Read the rest of this entry »

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

When MySQL characterset ‘utf’ does not allow you to enter some Unicode code points

Posted by jpluimers on 2022/01/06

Contrary to what many believe is that MySQL utf8 is not always full blown UTF-8 support, but actually utf8mb3, which has been deprecated for a while now.

Only utf8mb4 will give you full blown UTF-8 support.

This when someone reminded me of this in a Delphi application:

When I insert :joy: emoji into mysql varchar filed I got an error :
#22007 Incorrect string value: '\xF0\x9F\x98\x82' for column 'remarks' at row 1

database charset is utf8

Note that the :joy: emoji is 😂 and has Unicode code point U+1F602 which is outside the basic multilingual plane.

See:

–jeroen

Posted in Conference Topics, Conferences, Database Development, Delphi, Development, Encoding, Event, MySQL, Software Development, UTF-8, UTF8 | Leave a Comment »