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 »
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 »
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 »
Posted by jpluimers on 2022/01/10
For my link archive:
- [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.
- [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.
- Download smartctl-6.6-4321.x86_64.vib
- Copy the VIB to the /tmp/ directory of an ESXi host
- SSH to the ESXi host
- Set the VIB acceptance level to CommunitySupported
# esxcli software acceptance set --level=CommunitySupported
- 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]
- [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 »
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 »
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 »
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 »
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:
- [Wayback] Unicode Character ‘FACE WITH TEARS OF JOY’ (U+1F602)
- Plane (Unicode): Overview, Basic Multilingual Plane – Wikipedia
- [Archive.is] Kristian Köhntopp on Twitter: “MySQL also, for quite some time now, no longer updates its own charsets and collations internally, for the same reason. So utf8 in MySQL is utf8mb3, the three byte variant of Unicode UTF-8 implementation that covers only the BMP (unicode up to U+FFFF).”
- Kristian Köhntopp
»Where does PostgreSQL’s collation logic come from?
PostgreSQL relies on external libraries to order strings.
– libc, meaning the operating system locale facility (POSIX or Windows)
– icu, meaning the ICU project (if PostgreSQL was built with ICU support)«
- MySQL does things differently:
MySQL binary data files are independent of the host operating system in byte order, number representation (as long as the host fulfils MySQLs basic requirements), collation and even time zone handling.
- So MySQL implements collations internally, also to guarantee stability across OS updates.
If it didn’t, a libc update changing collations would mean you have to recreate a lot of indexes. Also, you would not be able to safely move data files from host to host.
- MySQL also, for quite some time now, no longer updates its own charsets and collations internally, for the same reason.
So utf8 in MySQL is utf8mb3, the three byte variant of Unicode UTF-8 implementation that covers only the BMP (unicode up to U+FFFF).
- When moving to fuller (multiplane) UTF-8 support, a new name was needed, and utf8mb4 was chosen.
So when you actually want modern utf8 in MySQL, you have to use utf8mb4, and now you know why.
- utf8 is deprecated and will be upgraded to utf8mb4 in some future MySQL release. This will be a breaking upgrade, and I wonder if it will require dropping and recreating all indexes affected by the change.
That will be painful.
- https://dev.mysql.com/doc/refman/8.0/en/charset-unicode-utf8mb3.html …
utf8mb3 page in the MySQL 8.0 manual, with deprecation notice.
What will change is the meaning of the alias utf8 (currently an alias for utf8mb3).
- [Wayback] MySQL: Some Character Set Basics | Die wunderbare Welt von Isotopp
- [Wayback] MySQL :: MySQL 8.0 Reference Manual :: 10.9.2 The
utf8mb3 Character Set (3-Byte UTF-8 Unicode Encoding)
utf8 is an alias for utf8mb3; the character limit is implicit, rather than explicit in the name.
Note
The utf8mb3 character set is deprecated and you should expect it to be removed in a future MySQL release. Please use utf8mb4 instead. Although utf8 is currently an alias for utf8mb3, at some point utf8 is expected to become a reference to utf8mb4. To avoid ambiguity about the meaning of utf8, consider specifying utf8mb4 explicitly for character set references instead of utf8.
- [Wayback] MySQL :: MySQL 8.0 Reference Manual :: 10.9.1 The utf8mb4 Character Set (4-Byte UTF-8 Unicode Encoding)
utf8mb4 contrasts with the utf8mb3 character set, which supports only BMP characters and uses a maximum of three bytes per character:
- For a BMP character,
utf8mb4 and utf8mb3 have identical storage characteristics: same code values, same encoding, same length.
- For a supplementary character,
utf8mb4 requires four bytes to store it, whereas utf8mb3 cannot store the character at all. When converting utf8mb3 columns to utf8mb4, you need not worry about converting supplementary characters because there are none.
–jeroen
Posted in Conference Topics, Conferences, Database Development, Delphi, Development, Encoding, Event, MySQL, Software Development, UTF-8, UTF8 | Leave a Comment »