Does anybody have any ideas re what #butterfly and what #flower this is? #flickr #photo #ID #species #ecology #pollination https://www.flickr.com/photos/137269534@N06/22250201748/

Does anybody have any ideas re what #butterfly and what #flower this is? #flickr #photo #ID #species #ecology #pollination https://www.flickr.com/photos/137269534@N06/22250201748/
@BjoernBeck
Wenn du dich ein bisschen eingearbeitet hast und mit #iD oder #JOSM halbwegs zurecht kommst sucht #HOT #HumanitarianOpenstreetmapTeam immer nach Leuten die ein bisschen Zeit haben zu helfen. Ich habe im Moment leider nicht die Zeit um reinzuschauen, bin aber sicher da brauchen gerade ganz viele Karten für Myanmar Aktualisierung.
Le monde | Le Royaume-Uni condamne « catégoriquement » l’expansion des colonies israéliennes en Cisjordanie , affirme le chef de la diplomatie britannique.
Dénonçant la « culture de l’impunité » qui y règne, M. Lammy a déclaré être « clair avec ses homologues israélien sur le fait que l’expansion de la colonisation doit cesser ».
Is the UK government building an ID system by stealth with the gov.uk wallet?
Companies in the digtial ID sector think so.
Creating a portal that all our interactions with government have to go through could evolve into national identity database with considerable implications for our privacy.
Please look at the information. #FrankfurtamMain #Germany #ID
#IdentifyMe - 2001, 31 July
The girl in the River Main, Nied discrict
The bundle was wrapped in a brown leopard print bedspread, tied with 5 cm-wide traditional, braided drawstring belts often found in #Pakistan and #Afghanistan, known as a “nalas”.
Marine Le Pen is out
h o l y s h i t
“Marine Le Pen sentenced to 4 years’ imprisonment, and 5 years’ ineligibility with immediate effect, jeopardizing her bid for the 2027 presidential election”
EDIT: Thanks for boosting everyone, I FOUND IT! It's Tommy D - Pretty Much Bayside https://soundcloud.com/user-347580189/pretty-much-bayside
Hey #fediverse, it's been a while now that I'm looking for this #house #track that #pingu likes so much. Really hope that I'm connected to the right bubble of #musicnerds who can help me find the track #id. If anyone knows good #groups that this post should travel to, please do mention them. Thanks!
Der #ID #Every1 - #emovotion - #Podcast:
Wir diskutieren über den neu vorgestellten VF ID Every 1. Der soll ja schließlich in ein paar Jahren auf dem Markt kommen…. Ausserdem sprechen wir über die Zulassungszahlen in Deutschland im Februar.
@licho @osman provide evidence the code @signalapp released is actually being deployed.
git
and builds it from source.Not to mention pushing a #Shitcoin-#Scam (#MobileCoin) disqualifies #Signal per very design!
https://www.youtube.com/watch?v=tJoO2uWrX1M
And don't even get me started on the fact.it's not sustainable to run it as a #VCmoneyBurningParty!
Same as identifying users: They already got a #PhoneNumber which in many juristictions one can't even obtain without #ID legally, thus making it super easy to i.e. find and locate a user. Even tze cheapest LEAs can force their local M(V)NOs to #SS7 a specific number...
Again: Signal has a #Honeypot stench, and you better learn proper #E2EE, #SelfCustody and #TechLiteracy because corporations can't pull the 5th [Amendment] on your behalf!
Linux Fu: A Warp Speed Prompt
If you spend a lot of time at the command line, you probably have either a very basic prompt or a complex, information-dense prompt. If you are in the former camp, or you just want to improve your shell prompt, have a look at Starship. It works on the most common shells on most operating systems, so you can use it everywhere you go, within reason. It has the advantage of being fast and you can also customize it all that you want.
What Does It Look Like?
It is hard to explain exactly what the Starship prompt looks like. First, you can customize it almost infinitely, so there’s that. Second, it adapts depending on where you are. So, for example, in a git-controlled directory, you get info about the git status unless you’ve turned that off. If you are in an ssh session, you’ll see different info than if you are logged in locally.
However, here’s a little animation from their site that will give you an idea of what you might expect:
hackaday.com/wp-content/upload…
Installation
The web site says you need a Nerd Font in your terminal. I didn’t remember doing that on purpose, but apparently I had one already.
Next, you just have to install using one of the methods they provide, which depends on your operating system. For Linux, you can run the installer:
curl -sS starship.rs/install.sh | sh
Sure, you should download it first and look to make sure it won’t reformat your hard drive or something, but it was fine when we did it.
Finally, you have to run an init command. How you do that depends on your shell and they have plenty of examples. There’s even a way to use it with cmd.exe on Windows!
Customization
The default isn’t bad but, of course, you are going to want to change things. Oddly, the system doesn’t create a default configuration file. It just behaves a certain way if it doesn’t find one. You must make your own ~/.config/starship.toml file. You can change where the file lives using an environment variable, if you prefer, but you still have to create it.
The TOML file format has sections like an INI file. Just be aware that any global options have to come before any section (that is, there’s no [global] tag). If you put things towards the bottom of the file, they won’t seem to work and it is because they have become part of the last tag.
There are a number of modules and each module reads data from a different section. For example, on my desktop I have no need for battery status so:
[battery]disabled = true
Strings
In the TOML file you can use single or double quotes. You can also triple a quote to make a string break lines (but the line breaks are not part of the string). The single quotes are treated as a literal, while double quotes require escape characters for special things.
You can use variables in strings like $version or $git_branch. You can also place part of a string in brackets and then formating for the string in parenthesis immediately following. For example:
'[off](fg:red bold)'
Finally, you can have a variable print only if it exists:
'(#$id)'
If $id is empty, this does nothing. Otherwise, it will print the # and the value.
Globals and Modules
You can find all the configuration options — and there are many — in the Starship documentation. Of primary interest is the global format variable. This sets each module that is available. However, you can also use $all to get all the otherwise unspecified modules. By default, the format variable starts with $username $hostname. Suppose you wanted it to be different. You could write:
format='$hostname ! $username $all'
You’ll find many modules that show the programming language used for this directory, version numbers, and cloud information. You can shut things off, change formatting, or rearrange. Some user-submitted customizations are available, too. Can’t find a module to do what you want? No problem.
Super Custom
I wanted to show the status of my watercooler, so I created a custom section in the TOML file:
[custom.temp]
command = 'temp-status|grep temp|cut -d " " -f 7'
when = true
format='$output°'
The command output winds up in, obviously, $output. In this case, I always want the module to output and the format entry prints the output with a degree symbol after it. Easy!
Of Course, There are Always Others
There are other prompt helpers out there, especially if you use zsh (e.g., Oh My Zsh). However, if you aren’t on zsh, your options are more limited. Oh My Posh is another cross-shell entry into the field. Of course, you don’t absolutely need any of these. They work because shells give you variables like PS1 and PROMPT_COMMAND, so you can always roll your own to be as simple or complex as you like. People have been doing their own for a very long time.
If you want to do your own for bash, you can get some help online. Or, you could add help to bash, too.
@mossyfoot the fact that tue #USA uses #SSN|s as #ID is so beyond me.
#HotTake: Every #human should be entitled by international #law to free, unseizeable #ID documents in the form of a travel #passport to evidence their #identity and have #FreedomOfMovement as well as a chance to #flee.
Why?
#israel #palestine : #war / #gaza / #warcabinet
„Des bombardements salués par M. Ben Gvir dans un communiqué. « Nous saluons le retour de l’Etat d’Israël, dirigé par le premier ministre Benyamin Netanyahou, à des combats intenses », a-t-il écrit, estimant que c’est « la mesure la plus juste, morale et éthique pour détruire l’organisation terroriste du Hamas et récupérer les otages ». ”
Most populous countries on #Earth
#US #USA #UnitedStates #America #India #IN #China #CN #Indonesia #ID #Pakistan #PK #Nigeria #NG #Brazil #BR #Bangladesh #BD #Russia #RU #Ethiopia #ET #Mexico #MX #Japan #JP #Egypt #EG #Philippines #PH #Congo #DRC #fertility #death #migration #birth #aging #population #world #global #international #UN #UnitedNations #people #humans
#graphic #data #visualization #DataViz