Alexandra Lanes likes this.
reshared this
The best way I found to deal with gender dysphoria caused by my height is to make myself even taller with my very sexy high-heeled boots.
Because then my height is MINE π€
Alexandra Lanes likes this.
Alexandra Lanes reshared this.
(originally by twitmericks in 2014, but bears repeating:)
As traffic control out of Swanwick
Is now by and large electranwick
A technical glitch
Is more than a hitch -
The chaos ensuing is chranwick
Source (): twitter.com/twitmericks/statusβ¦
Alexandra Lanes likes this.
reshared this
It's a good article but I don't like how it sweeps the "services for children" thing under the rug. Children, especially teenagers, should be able to use the small web too.
I guess this is aimed for fediverse instances, which are less likely to be accessed by children. My site is gaming-related and so likely to be accessed by children. I do not want to ban under 18 and have age verification as this would be highly detrimental and privacy impacting
I know everything is still unclear and you're not a lawyer, but I wonder about:
If an instance that would be fine actually is located outside the UK and decides not to bother with any of this:
If they have a few British users, can the long arm of the law actually make trouble for non British mods?
What if there was a British mod or two kicking around?
Alexandra Lanes likes this.
A third of a cube - 3D model by robinhouston
Three of these pieces may be combined to form a cube. This dissection is based on Hashimotoβs bucolic cube, which is a cool puzzle. - A third of a cube - 3D model by robinhoustonSketchfab
reshared this
bouncysigns.co.uk/products/infβ¦
Inflatable slide rules
Inflatable slide rules safety notice Printed and Laminated Size - A3 (297mm by 420mm) Other sizes available A4 & A2. 3mm Foamex board, Strong & durableBouncy Signs
Alexandra Lanes likes this.
reshared this
When the problem involves more than 2 hat colors it does not appear to me to resemble a hypercube graph and when it involves more than 2 people it does not appear to have the simple isomorphism with edge orienting that you have described.
Have I misunderstood?
@mjd it's true that with k>2 hat colours the problem stops resembling a graph. Instead you have to generalise to a k-uniform hypergraph, i.e. graph edges are replaced by sets of k vertices instead of sets of 2. But you still keep the rest of the properties: every hyper-edge is a set of exactly k vertices, all agreeing in the same nβ1 places but covering every possibility for the remaining place, representing a situation in which one player sees one particular layout of hats on the other nβ1 players but could have any choice for their own hat.
And an 'orientation' of a hyper-edge involves nominating exactly one of its endpoints, which probably isn't the right generalisation of orienting a graph in all situations, but it's the one that works for this problem.
But with k=2 but >2 players it still seems like a graph orientation problem to me.
So there is no "fix it once and for all" solution to timekeeping, and the best and most robust strategy will always be store timestamps the way the user provided them, and interpret them as best you can, given the knowledge available to you, when you do.
And as for nanosecond resolution: Now you also need to think about which relativistic reference frame to use.
Alexandra Lanes likes this.
reshared this
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119.
[...]
Client implementations SHOULD NOT be a place of honor. Client implementations MUST NOT commemorate highly esteemed deeds.
Alexandra Lanes likes this.
reshared this
Minesweeper on my DXY-885 plotter. A project that took longer than expected!
Uploading partly to test video-embed from mastondon.social.
Alexandra Lanes likes this.
reshared this
Sometimes, I receive questions which leave both me, and the person asking, bamboozled.
> Your website loads so quickly! What CDN do you use?
There is no CDN. It is just really small and simple, mostly text.
> Sure, but is that Cloudflare, or...?
None. It is a tiny website, just a few kilobytes per page, on a tiny server, at my home, connected to the Internet via my ISP, Andrews & Arnold.
> But are you / they in the cloud?
No. The webserver is in Newbury, in my garage.
> Neil, please can you pass my questions to your technical person? I don't think you understand, your website cannot be in your home. It must be in the cloud or have a CDN.
*Neil puts on glasses and false nose and moustache*
reshared this
Labour have proposed a transphobe, Mary Ann Stephenson for next chair of the EHRC. The Women and Equalities Committee of the House of Commons will want to scrutinise this appointment. Help them understand why sheβs a bad pick by signing this letter! #UKpol
Patrick Hadfield reshared this.
It is time, once again, for me to tap the sign.
"Ant-ee-far" is a profoundly un-British pronouncation of "Anti-Fah", and is used by plastic "patriots" for precisely one reason - to obscure the fairly obvious question: "Who are the Fah that these people are opposed to?"
Likewise, the UK does not have "DEI" and never has.
Alexandra Lanes likes this.
reshared this
Male friends (I have male friends here right?) - have you heard of Ask for Angela?
(A man in The Archers didnβt know of it and I was wondering how likely it is for men to be aware of it.)
Alexandra Lanes likes this.
lol omg i accidentally a massive rant
Alexandra Lanes likes this.
Alexandra Lanes reshared this.
I feel like there ought to be a discipline of something like "perceptual geometry", and I need to be better at it.
We all know that finding the "optical centre" of a glyph is not straightforward (but there are algorithms). Even something as apparently simple as "stroke contrast" requires thought. Stroke contrast is just the thickness of the thickest part divided by the thinness of the thinnest part, right? Not so. The thickest part of the O on the right is not relevant to contrast.
Alexandra Lanes likes this.
Alexandra Lanes reshared this.
Today is a GREAT day for the ocean. Not only is the new Attenborough Ocean film out today, but I got a sneak peak at the new Great Map being installed at the National Maritime Musuem in Greenwich, and it's just astonishing. It's the Spilhaus projection - a way of unwrapping the globe that keeps the ocean intact - and it's got beautifully detailed topography and plenty of other fun bits and pieces. The whole redecorated hall will be renamed Ocean Court and will reopen to the public on June 7th, World Ocean Day. Do go as soon after that as you can - it really is stunning.
#Ocean
32 s
Alexandra Lanes likes this.
reshared this
The commands 'cd $PWD' and 'cd .' in bash both look like useless no-ops which change into the same directory you're already in. But they're not, and both can be useful.
$PWD is a string variable which caches the pathname that your current directory had at the time you changed into it. It's not automatically updated in between cd commands.
So 'cd $PWD' (or 'cd "$PWD"' if you're being properly careful) changes to whatever directory _now_ lives at the pathname that your actual cwd _was_ when you changed to it.
'cd .' really _does_ just change directory to the same physical directory you're already in, but it's still not useless, because it causes bash to recalculate the value of $PWD.
For example, if one shell is in ~/test, and in another shell you rename ~/test to ~/newname and make a new directory ~/test, then in the first shell 'cd $PWD' will move to the new ~/test, whereas 'cd .' will stay in the original directory but update $PWD to reflect the fact that it now lives at ~/newname.
Alexandra Lanes likes this.
reshared this
That's remind me something i found amusing some times ago:
~/tmp/tmp$ rmdir ../tmp
~/tmp/tmp$ # where am i now?
~/tmp/tmp$ pwd
/mnt/vg00/diego/tmp/tmp
~/tmp/tmp$ echo $PWD
/mnt/vg00/diego/tmp/tmp
~/tmp/tmp$ # everything is fine, right?
~/tmp/tmp$ ls
~/tmp/tmp$ ls .
~/tmp/tmp$ cat /dev/null > x
bash: x: No such file or directory
~/tmp/tmp$ # ah!
~/tmp/tmp$ mkdir ../tmp
~/tmp/tmp$ # so does it works now?
~/tmp/tmp$ cat /dev/null > x
bash: x: No such file or directory
~/tmp/tmp$ #still no luck
~/tmp/tmp$ cd .
~/tmp/tmp$ cat /dev/null > x
~/tmp/tmp$ # now it works!
While the error in creating the file looks legit, why can I list a directory that doesn't exist? And I think that a new directory with the same name, it's still a new directory, but looks like "cd ." somehow fix the cwd of the shell.
Just for reference tests were made on linux on a ext4 filesystem (but does it matters?).
@diegor 'why can I list a directory that doesn't exist?' β it does exist, it just isn't linked from anywhere. On Unix, directories as well as files have the property that the inode (containing the actual contents) persists even after there's no path to it from the filesystem root, if a process has it open. So your cwd can still be in a directory that's been deleted.
'looks like "cd ." somehow fix the cwd of the shell' β assuming the shell is bash, yes, by default "cd ." will do that. It _doesn't_ do what I claimed in the head of the thread, unless you have the non-default 'set -P' option, which I set long ago for myself and had forgotten was relevant. If _I_ had done "cd ." in that situation, I'd have stayed in the deleted directory.
βi before e, except after c, and provided it rhymes with βkeyβ β
THE BIGGEST NEWS! Rob and I are offering up a hand-signed hardback, first edition/first printing copy of Monstrous Regiment straight from the Pratchett archives. Those who know the story will know why itβs a pertinent one for this cause.
32auctions.com/organizations/1β¦
Monstrous Regiment (Signed 1st edition)
Auction item 'Monstrous Regiment (Signed 1st edition)' hosted online at 32auctions.32auctions
reshared this
I won't be able to partake in this but thank you for this!
Not only do you carry on Terry's legacy, but you are so much of an amazing person in your own right and I love your work.
Please help push back against the transphobic UK Supreme Court judgment. Philippa East has created an excellent letter that you can co-sign using this link.β¨forms.gle/FZXBWzWFx4fHhPAL8β¨#TransRightsAreHumanRights
Alexandra Lanes likes this.
reshared this
like this
reshared this
Eli Wallach's favorite Bass
in reply to ChΓ¨vre Mousse • • •