Masthash

#noxp

wlmb
6 days ago

#Perl @PerlWChallenge 235 Remove One and Duplicate Zeros https://wlmb.github.io/2023/09/18/PWC235/
#noxp

wlmb
6 days ago

#Perl @PerlWChallenge 235 Task 2: Duplicate Zeros
#noxp
```
perl -E '
@i=@ARGV; while(@i){push @O, shift @i; pop @i, push @O,0 if @i && $o[-1]==0;} say "@ARGV -> @O";
' 1 0 2 3 0 4 5 0
```

wlmb
6 days ago

#Perl @PerlWChallenge 235 Task 1: Remove One
#noxp
```
perl -E '
sub t {return 1 if @i<=2;push @O, shift @i;while(@i){if($i[0]>$o[-1]){
push @O, shift @i;}else{$o[-1]=shift(@i);++$c;return 0 if $c>=2 || (@O>=2
&& $o[-2]>= $o[-1]);}}return 1;}@i=@ARGV;say "@ARGV -> ", t?"True":"False";
' 0 2 9 4 6
```

wlmb
2 weeks ago

#Perl @PerlWChallenge 234 Task 2: Unequal Triplets
#noxp
```
perl -MAlgorithm::Combinatorics=combinations -MList::Util=sum0,product -E '
++$c{$_} for @ARGV; @n=keys %c; say "@ARGV -> ", @n<3?0:sum0 map {product @c{@$_}} combinations(\@n,3);
' 4 7 1 10 7 4 1 1
```

wlmb
2 weeks ago

#Perl @PerlWChallenge 234 Task 1: Common Characters
#noxp
```
perl -MList::Util=min -E 'for(@ARGV){my %l; $l{$_}++ for split ""; push @c, \%l;}
say "@ARGV -> ", join " ", map {$l=$_; ($l) x min map {$c[$_]{$l}} 0..@c-1} keys %{$c[0]}
' bella label roller
```

wlmb
2 weeks ago

#Perl @PerlWChallenge 234 Common Characters and Unequal Triplets https://wlmb.github.io/2023/09/11/PWC234/
#noxp

wlmb
3 weeks ago

#Perl @PerlWChallenge 233 Similar Words and Frequency Sort https://wlmb.github.io/2023/09/04/PWC233/
#noxp

wlmb
3 weeks ago

#Perl @PerlWChallenge 233 Task 2: Frequency Sort
#noxp
```
perl -E '
$c{$_}++ for @ARGV; say "@ARGV -> ", join " ", sort {$c{$a} <=> $c{$b} || $b <=> $a} @ARGV;
' 1 1 2 2 2 3
```

wlmb
3 weeks ago

#Perl @PerlWChallenge 233 Task 1: Similar Words
#noxp
```
perl -MList::Util=uniq,sum0 -E '
$k{join "", sort {$a cmp $b} uniq split "", lc($_)}++ for (@ARGV);
say "@ARGV -> ", sum0 map {$k{$_}*($k{$_}-1)/2} grep {$k{$_}>1} keys %k;
' aba aabb abcd bac aabc
```

wlmb
1 month ago

#Perl @PerlWChallenge 231 Task 1: Min Max
#noxp
```
perl -MList::Util=min,max -E '
@x=@ARGV; ($l,$h)=(min(@x), max(@x)); @Y=grep {$_!=$l && $_!=$h} @x; say "@x -> ", join " ", @Y?@Y:-1
' 3 2 1 4
```

wlmb
1 month ago

#Perl @PerlWChallenge 231 Task 2: Senior Citizens
#noxp
```
perl -E 'say "@ARGV -> ", 0+grep {/^...........(\d\d)..$/; $1>=60} @ARGV
' 7868190130M7522 5303914400F9211 9273338290F4010
```

wlmb
1 month ago

#Perl @PerlWChallenge 230 Separate Digits and Count Words https://wlmb.github.io/2023/08/14/PWC230/
#noxp

wlmb
1 month ago

#Perl @PerlWChallenge 230 Task 2: Count Words
#noxp
```
perl -E '($p,@w)=@ARGV; say "Prefix: $p, Words: @w, Count: ", 0+grep{/^$p/}@w
' at pay attention practice attend
```

wlmb
1 month ago

#Perl @PerlWChallenge 230 Task 1: Separate Digits
#noxp
```
perl -E 'say join " ", @ARGV, " -> ", map {split ""} @ARGV' 1 24 51 60
```

wlmb
2 months ago

#Perl @PerlWChallenge 229 Lexicographic Order and Two out of Three https://wlmb.github.io/2023/08/06/PWC229/
#noxp

wlmb
2 months ago

#Perl @PerlWChallenge 229 Task 2: Two out of Three
#noxp
```
perl -MList::Util=uniq -E '
for(@ARGV){$c{$_}++ for uniq split " ";}@O=grep {$c{$_}>=2} keys %c;say map({"[$_]"} @ARGV), "->[@O]"
' "1 1 2 4" "2 4" "4"
```

wlmb
2 months ago

#Perl @PerlWChallenge 229 Task 1: Lexicographic Order
#noxp
perl -MPDL -MPDL::NiceSlice -E 'for(@ARGV){$z=($y=($x=pdl([map {ord} split "", lc]))->(-1:0))->qsort;
++$c if ($x!=$z)->any&&($y!=$z)->any} say "@ARGV->", $c||0;
' abc bce cae

wlmb
2 months ago

#Perl @PerlWChallenge 228 Task 2: Empty Array
#noxp
```
perl -MPDL -E '
$x=pdl(@ARGV); $c=0; while($x->nelem>1){$m=$x->min; $r=which($x==$m)->at(0);
$c+=$r+1; $x=$x->rotate(-$r)->slice([1,-1,1]);} say "@ARGV -> ", $c+1;
' 3 4 2
```

wlmb
2 months ago

#Perl @PerlWChallenge 228 Task 1: Unique Sum
#noxp
```
perl -MList::Util=sum0 -E '++$s{$_} for @ARGV; say "@ARGV -> ", sum0 grep {$s{$_}==1} @ARGV' 2 1 3 2
```

wlmb
2 months ago

#Perl @PerlWChallenge 228 Unique Sum and Empty Array https://wlmb.github.io/2023/07/31/PWC228/
#noxp

wlmb
2 months ago

@Perl #Perl @PerlWChallenge 227 Friday 13th and Roman Maths
https://wlmb.github.io/2023/07/24/PWC227/
#noxp

wlmb
2 months ago

@Perl #Perl @PerlWChallenge 227 Task 2: Roman Maths
#noxp
```
perl -MPOSIX=floor -MText::Roman=:all -E '
%o=map{$_=>eval "sub(\$x,\$y){\$x$_\$y}"} qw(+ - * / ** %); say "$_ ->", r($_) for(@ARGV);
sub r($e){($x,$o,$y)=split " ", $e; $r=$o{$o}->(map {roman2int($_)}($x,$y));
return $r==0?"nulla":($r>3999||$r<0||$r!=floor $r)?"non potest":int2roman($r)}
' "IV + V" "M - I" "X / II" "XI * VI" "VII ** III" "V - V" "V / II" "MMM + M" "V - X" "XXV % IV"
```
https://wlmb.github.io/2023/07/24/PWC227/

wlmb
2 months ago

@Perl #Perl @PerlWChallenge 227 Task 1: Friday 13th
#noxp
```
perl -MPDL -E '
$d=pdl[[0,3,3,6,1,4,6,2,5,0,3,5],[0,3,4,0,2,5,0,3,6,1,4,6]];
for(@ARGV){$y=$_%400; $l=(floor(($y+3)/4)-floor(($y+3)/100));
$s=($y+$l)%7; $t=(!$y||($y%100 &&!!($y%4)))?1:0; $b=($d->slice("",[$t,0,0])+$s)%7;
say "$_->", ($b==1)->sumover}
' 2023 2000 1999
```
https://wlmb.github.io/2023/07/24/PWC227/

wlmb
2 months ago

#Perl @PerlWChallenge 226 Shuffle String and Zero Array https://wlmb.github.io/2023/07/16/PWC226/
#noxp

wlmb
2 months ago

#Perl @PerlWChallenge 226 Task 2: Zero Array
#noxp
```
perl -MPDL -E '
$c=0; print $x=pdl(@ARGV); ++$c, $x=$x->where($x>0), $x-=$x->min while $x->sumover>0; say " -> $c";
' 1 5 0 3 5
```

wlmb
2 months ago

#Perl @PerlWChallenge 226 Task 1: Shuffle String
#noxp
```
perl -E '
print "@ARGV -> "; @L=split "", shift; $o[$_]=shift @L for @ARGV; say join "", @O
' lacelengh 3 2 0 5 4 8 6 7 1
```

Frosty ❄️🌨️
2 months ago

This week’s schedule is in! #charity #VTuber #VTuberEN #LLS #noxp

Monday: Minecraft @ 7:00 PM MDT / 1:00 AM UTC Tuesday: Community Day - Kingdoms and Castles @ 7:00 PM MDT / 1:00 AM UTC Wednesday: Destiny 2 w/ SKTKawaiiNeko @ 7:00 PM MDT / 1:00 AM UTC Thursday: Minecraft @ 7:00 PM MDT / 1:00 AM UTC Friday: Minecraft @ 7:00 PM MDT / 1:00 AM UTC Saturday: Satisfactory @ 3:00 PM MDT / 9:00 PM UTC
wlmb
3 months ago

#Perl @PerlWChallenge 225 Max Words and Left Right Sum Diff https://wlmb.github.io/2023/07/09/PWC225/
#noxp

wlmb
3 months ago

#Perl @PerlWChallenge 225 Task 2: Left Right Sum Diff
#noxp
```
perl -MList::Util=reductions -E '
@x=(0, @ARGV, 0); $n=@x-3; ($l,$r)=map {[reductions {$a+$b} @$_]} [@x[0..$n]],
[((reverse @x)[0..$n])]; @O=map {abs($l->[$_]-$r->[-$_-1])} 0..$n; say "@ARGV -> @O";
' 1 2 3 4 5
```

wlmb
3 months ago

#Perl @PerlWChallenge 225 Task 1: Max Words
#noxp
```
perl -MList::Util=max -E 'say join "\n", @ARGV, " -> ", max map {0+@{[split " "]}} @ARGV'
```

wlmb
3 months ago

#Perl @PerlWChallenge 224 Special Notes and Additive Number https://wlmb.github.io/2023/07/03/PWC224/
#noxp

wlmb
3 months ago

#Perl @PerlWChallenge 224 Task 2: Additive Number
#noxp
```
perl -E '
L: for(@ARGV){$l=length; for my $x(1..$l){$c=$_; $f=substr $c,0,$x,""; for my $y(1..$l){
$d=$c; $g=substr $d,0,$y,""; $h=$f+$g; while($d=~s/^$h//){say("$_ -> True"), next L if
length $d==0; ($g, $h)=($h, $g+$h)}}} say "$_ -> False";}
' 112358 12345 199100199
```

wlmb
3 months ago

#Perl @PerlWChallenge 224 Task 1: Special Notes
#noxp
```
perl -MList::Util=all -E '
print "@ARGV->"; $s{$_}=1 for split "", shift; say +(all {$s{$_}-->0} split "", shift)?"True":"False"
' scriptinglanguage perl
```

Zhenbo Li
3 months ago

New Exciting Feature to #fireSeqSearch: Generating #WordCloud from your #logseq notes!

With a single click, you can search your top-words in search engines and your personal notes simultaneously!

Demo video at: https://twitter.com/ZhenboLi1/status/1675622383363710976

#noxp

Jan Palmén - Crime Walks
3 months ago

Klockan 23:30 den 2 juli 1899 besköts poliskonstapel Molin i korsningen Ekelundsgatan/Norra Liden i Göteborg av en berusad sjöman.

Molin hade försökt få honom att lugna ner sig och lämna platsen men då hade han dragit en revolver och skjutit Molin i benet. Flera poliser anlände och kunde övermanna den vildsinte sjömannen. Molins skada var lyckligtvis inte livshotande.

Den 21-årige göteborgske revolvermannen dömdes samma år till..ja vadå?

#dagensdatum #skjutning #crimewalks #noxp

wlmb
3 months ago

#Perl @PerlWChallenge 223 Count Primes and Box Coins https://wlmb.github.io/2023/06/27/PWC223/
#noxp

wlmb
3 months ago

#Perl @PerlWChallenge 223 Task 2: Box Coins
#noxp
https://carbon.now.sh/d6R2PMosXFY3vKsS9hpx

perl -MList::UtilsBy=min_by -E '
@x=(1,@ARGV,1); $t+=$c while(defined ($c=n())); say "@ARGV -> $t";
sub n(){return if @x==2; return splice @x,1,1 if @x==3; $i=min_by {$x[$_]} @x==4?(1,2):(2..@x-3);
$v=splice @x,$i,1; return $v*$x[$i-1]*$x[$i]}
' 3 1 5 8
wlmb
3 months ago

#Perl @PerlWChallenge 223 Task 1: Count Primes
#noxp
https://carbon.now.sh/Z9UhBtTDbjEu8aUYr5hC

perl -MMath::Prime::Util=prime_count -E '
say "There are ", prime_count($_), " primes below $_" for @ARGV
' 10 20 100000
Jan Palmén - Crime Walks
3 months ago

Efter 1850 flyttade stora mängder landsortsbor in till Göteborg. De flesta bosatte sig i förstäderna, inte minst i Haga, vars befolkning växte enormt. Trångboddhet och supande i kombination med storstadens anonymitet och en ung befolkning fick effekter på brottsligheten.

Crime Walks Haga - ”Luderkupor och styckmord" - onsdag 17:00. https://crimewalks.se/haga eller länk i bion.

#crimewalks #stadsvandring #göteborg #historia #truecrime #mord #rån #delagärna #noxp

Haga 1864.
wlmb
3 months ago

#Perl @PerlWChallenge 222 Matching Members and Last Member https://wlmb.github.io/2023/06/19/PWC222/
#noxp

wlmb
3 months ago

#Perl @PerlWChallenge 222 Task 2: Last Member
#noxp
https://carbon.now.sh/cvDraDtjUNom0jy8EvDK

perl -MList::Util=first -E '
@l=sort {$b<=>$a}@ARGV; while(@l>1){($x, $y)=splice @l,0,2; next unless $x-=$y;
$i=(first {$l[$_]<=$x} 0..@l-1)//@l+1; splice @l,$i,0,$x;} say "@ARGV->", $l[0]//0
' 2 7 4 1 8 1
Resi Respati :icosahedron:
4 months ago

[TONIGHT 9pm GMT +7]

The Real Randomised Simulator

https://www.twitch.tv/resir014 #noxp

Michael Kohl
4 months ago

Elon’s going full Elpert Muskdoch it seems... #noxp

Resi Respati :icosahedron:
4 months ago

Stream Schedule - Week of 22 May, 2023.

I lived. #noxp

https://www.twitch.tv/resir014

Stream Schedule - Week of 22 May, 2023.

- Monday (21:30): Trackmania
- Tuesday (21:00): A Space for the Unbound (#04)
- Wednesday (21:00): Destiny 2: Real Fireteam Hours (Season of the Deep Discovery)
- Thursday (21:00): Gran Turismo 4 Randomizer (#01)
Albert Cuesta :verified:
4 months ago

L'enrenou mundial amb els semiconductors no es pot explicar amb un únic article.

Així que n'he fet una sèrie de quatre, que comença amb aquest, a can Mobile World Capital:

#noxp

https://mobileworldcapital.com/?p=67001

Albert Cuesta :verified:
4 months ago

Mai he entès del tot que Samsung no tingui una estratègia global de serveis de pagament com la d'Apple per esprémer i fidelitzar els compradors dels seus aparells.

#noxp

https://emprenem.ara.cat/opinio/ingressos-no-li-falten-apple_1_4699925.html

Le Printemps du CARE ⏚
4 months ago

🤕 Des nouvelles de Serge ❤️

D'après le 5ème communiqué des Camarades du S publié ce jour, Serge est sorti de réanimation et son pronostic vital n'est plus engagé. ❤️
Ses soins vont se poursuivre. Force à lui et à ses proches ❤️❤️❤️

https://lescamaradesdus.noblogs.org/post/2023/05/13/communique-n5-des-nouvelles-de-serge/…

#SainteSoline
#Megabassines
#NoBassaran
#ViolencesPolicieres
#Noxp

Pancarte en manif sur laquelle on peut lire "Nous sommes tous les camarades du S". 
Légende : "Communiqués des camarades du S".
Le Printemps du CARE ⏚
4 months ago

Le soin est politique. Seule la lutte, collective, paye.

Collègues soignant•es, camarades militant•es, on vous embrasse et on vous donne rdv dans la rue ✊

#DuFricPourLHopitalPublic

#Noxp

Le Printemps du CARE ⏚
4 months ago

Ce ne sont pas les congratulations d’un jour, ni les « challenges inter-services » dans les hôpitaux, ni les annonces de primes éphémères et inégalitaires qui résoudront le manque de moyens humains et la destruction organisée de l’hôpital public et du droit universel à l’accès aux soins.

Le soin n a pas vocation à être rentable sinon il perd tout son sens  et se meurt .Sa défense est l’affaire de toutes et tous.

#Noxp

Le Printemps du CARE ⏚
4 months ago

Le rôle des infirmier•es, et plus largement des soignant•es, est central, encore plus dans notre société néolibérale où les politiques et leurs comparses financiers et technocrates attaquent tous les liens, tous les conquis sociaux et toutes les formes de résistances. 

#Noxp

Le Printemps du CARE ⏚
4 months ago

Féliciter les infirmier•es une fois par an tout en acceptant de les laisser travailler dans des conditions épuisantes et indignes le reste du temps, c’est comme offrir une fleur (ou pire, un aspirateur) à une femme le jour de la « « journée de la femme » »🤮

#Noxp

Le Printemps du CARE ⏚
4 months ago

📆 12 mai : Journée internationale des infirmières👩‍⚕️

https://leprintempsducare.org/📆-12-mai-journee-internationale-des-infirmieres👩

Hier était célébrée la journée internationale des infirmières.

La date de cette journée mondiale correspond au jour de naissance de Florence Nightingale qui a posé les bases de la profession infirmière contemporaine en expliquant que chaque patient présente des besoins individuels et en défendant une formation de haute qualité pour les professionnel•les.

#Noxp

Dessin de Richard Nagy. On voit Macron et Borne attachés avec une contention au poteau d’un panneau routier signalant un hôpital. Ils n’ont pas l’air ravi. Le panneau bleu symbolisant l’hôpital est transformé en un poing de lutte.
Albert Cuesta :verified:
4 months ago

Google està tan acollonida amb els reglaments europeus que el seu xatbot Bard no està disponible en cap estat de l'UE.

Crec sincerament que Brussel·les ho està fent bé.

#noxp

https://support.google.com/bard/answer/13575153?hl=en&ref_topic=13194540&sjid=16437971511608496519-NA

Michael Kohl
4 months ago

I'm obviously biased, but the keynote and speaker lineup for this year's @rubyconfth is starting to look great. #noxp

John Harris
4 months ago

MST Club tonight will be showing 1303 SANTO IN THE TREASURE OF DRACULA. The first Gizmoplex-era episode! Show begins at 7 PM US Eastern, episode begins at 9. If you haven't seen it yet, this is your chance! Also, since it's Zelda Eve, I'll be putting in assorted Zelda-related randomness, in addition to our usual early and late movies and other things. We've also been showing Craig of the Creek and old Science Fiction Theater eps! At https://cytu.be/r/Metafilter_MST3KClub #noxp #mstclub #elsanto #watchalong

Resi Respati :icosahedron:
4 months ago

[TONIGHT 9pm GMT +7]

Welp, that escalated quickly. More of ASFTU coming tonight!

https://www.twitch.tv/resir014 #noxp

Albert Cuesta :verified:
5 months ago

Es veu que ara les notícies es propaguen "per xarxes". Quan es va perdre l'article "les"?

#noxp

Prof Stephen Serjeant
5 months ago

Your opinions on English astronomy wording please! "The brightest galaxies in the sky" or "The brightest galaxies on the sky"? And do astrophysicists say it differently? #astrodon #noxp

It's never too late to safeguard your #email. Get Proton email. I've been using it since 2016, and I have been pleased with security, support, and ease of use. Here's my invite code so you can get a #FREE month of Proton Mail Plus - https://pr.tn/ref/Q5FX2DBE8DN0 #Security #Cyber #noxp

Mail Plus includes 1 VPN connection, 10 email addresses, 25 calendars, and 1 custom domain. Great job, @protonmail

Resi Respati :icosahedron:
5 months ago

Stream Schedule - Week of 08 May, 2023.

Only 2 streams this week as I recover from CF16. Also a special stream on the Web Dev Indonesia YouTube channel on Tuesday!

https://www.twitch.tv/resir014 #noxp

Stream Schedule - Week of 08 May, 2023.

- Monday (21:00): Trackmania
- Tuesday (20:00): [ID] Ngobrolin Web x Obrolan Anak React (at YT/@webdevindonesia)
- Thursday (21:00): A Space for the Unbound (#03)
Resi Respati :icosahedron:
5 months ago
Tweet from @dhh:

"TypeScript sucked out much of the joy I had writing JavaScript. I’m forever grateful that @yukihiro_matz didn’t succumb to the pressure of adding similar type hints to Ruby. May we forever enjoy this beloved language without 🙏"

Attached is a link to:
https://zverok.space/blog/2023-05-05-ruby-types.html
Meme of Principal Skinner from The Simpsons saying "Am I out of touch? No, it's the JavaScript developers who are wrong."
Chris Bohn
5 months ago
A panoramic photo of alpacas near a barn. Three are under an overhang, eating hay. Two are resting near a fence. And one is on the other side of a fence, in the pasture.
Chris Bohn
5 months ago
We approach a chicken run. The chickens are moving around, excited at the prospect of their feed trough being topped-off and of new scratch being spread in the run.
Kristian
5 months ago

Aus der Rubrik "erklärungsbedürftig": Werbeplakat für die nächste KISS-Abschiedstour. Mit dem Hinweis auf "Förderung" durch u.a. den Bundesbeauftragten für Kultur und Medien. Ich meine... die Band ist mir musikalisch ja eher egal, aber auf der Liste förderungsbedürftiger Kultur hätte ich die nicht extrem weit vorn gesehen...
#noxp

Albert Cuesta :verified:
5 months ago

Llegeixo que @Gargron afegirà a Mastodon la funció de 'citar un tut'. Confio que @spla ens l'activi aquí.

#noxp

Chris Bohn
5 months ago

Me to my students: Use meaningful variable names so that they're easy to understand. Names should convey information about how they're used. And definitely don't use single-letter names!

Also me: In this course we're going to use the C programming language. I'll occasionally compare it to Java, Python, and R.

#SoftwareEngineering #ComputerScience #VariableNames #ProgrammingLanguages #C #Java #Python #R #noxp

Chris Bohn
5 months ago
A napping alpaca lifts his head to look at the camera.
John Harris
5 months ago

#mstclub, our weekly watch group of Mystery Science Theater 3000 and other weird/fun/bad movies, is getting started. Tonight's episode is 1206 ATOR THE FIGHTING EAGLE, final episode of (beat) The Gauntlet, and the movie to which Cave Dwellers is a sequel! #noxp At https://cytu.be/r/Metafilter_MST3KClub

Resi Respati :icosahedron:
5 months ago
Screenshot from the Indonesia Trackmania Cup April 2023 broadcast, showing me trying to negotiate a quarterpipe transition, with the quarterpipe labeled "certain death", and my front wheel steering left to avoid the transition labeled as "the futile attempt at survival"
Chris Bohn
5 months ago
An alpaca kushed between a barn and a hay feeder
philpem
5 months ago

i18n = internationalisation
a11y = accessibility

I'm going to need a list of these <letter><number><letter> abbreviations if they catch on... #noxp

MOULE :RainbowLogo:
5 months ago

Interesting discovery I found out today: one of the first #TwitterMigration moments happened all the way back in November 2019: https://www.thequint.com/tech-and-auto/tech-news/what-is-mastodon-and-why-are-people-leaving-twitter-to-join-it#read-more #noxp

Nickolas Means
5 months ago

Today is our last day in Guatemala. This afternoon we visited another coffee farm, a small family producer in San Miguel Escobar near Antigua called La Familia del Cafe. As luck has it, they started experimenting with natural processing last season. So here it is, my white whale, a bag of natural process coffee from a farm I personally visited. And even better, Estella, our guide, is the one who learned the technique and guided the natural drying! An incredible way to end the trip. #noxp

Chris Bohn
5 months ago

I know you said that you thought the material we covered in the first few weeks of class was useless and that you'd never again use it, but would you please wait until after the semester is over before implementing that plan? 😩

#CLanguage #C #SizeMatters #noxp

A C struct from an assignment's starter code, and some student code making use of that struct. Arrows point to a field declared as "uint8_t", and to the student code assigning 93,749 to that field.

"Five human beings lost their lives and Greg Abbott insists on labeling them 'illegal immigrants,'" Julián Castro, the former Housing and Urban Development Secretary, said. https://www.businessinsider.com/gov-greg-abbott-immigration-status-cleveland-texas-mass-shooting-victims-2023-4 #noxp

For the sea, observe sea foam tends to sharp cutoff, so use the lasso tool along with a soft spray to emulate it, overlaping it with harder edges via pen + smudging.

Also notice the colour of the sea is dependent on depth and do a gradient appropriately.

Also notice that flat colour is boring and not true to life so add some noise, and some shadowing and some soft lighting.

And soon you end up with a 15+ layered mess that looks ok.

#noxp

Earlier today I had no idea how to draw clouds or the sea.

Now I still have no idea how to do this properly, but came up with a way to do it that looks ok I guess.

Learn from observation and experiment?

#noxp

MOULE :RainbowLogo:
5 months ago

Introducing my 87th release:

📶 SMARTASS SMARTHOMES 📶

Soundtracking :Mei: @Mei's recent encounter with I.D.I.O.T., another rogue AI, that locked her out of her #SmartHome, hacked her devices, and live-streamed her torment to millions! :MeiCry:

It's #TechHouse (geddit 'cause "tech house" = "smart home" :MOULE_Ha: )!

⬇️ PRE-SAVE (out on #BandcampFriday: "Mei" the 5th :MeiGoof: ) ⬇️
https://distrokid.com/hyperfollow/moule/smartass-smarthomes

⬇️ Here's an audio preview of it! ⬇️
https://youtu.be/kEOW4T3x7WY

#NewMusic #NewMusicAlert #noxp

Picture of the cover art for my track "Smartass Smarthomes". It's mostly a lilac-pinkish colour scheme.

It shows Mei's apartment with lots of bamboo plants and smart appliances everywhere gone rogue - her robotic vacuum wrote "haha" in her carpet with a purple paint knocked over from a can under the TV in the centre, the fridge is laughing and spamming the floor with ice cubes, the sink is on and overflowing, and her door is locked. All "rogue" smart products have red dots on them.

At the centre is a smart television showing a live-stream of Mei, an anthropomorphic cartoon panda wearing a pink hoodie with a thick diagonal dark grey and white stripe in the middle, showing a live-stream filmed outside her door. She's angry she can't get in and is shaking her right fist.

Below that is an equation of "anger points" of Mei's emotions. "twitch (+5 anger) flushed face (+3 anger) angry eyes (+3 anger) swearing (+17 anger) shaking fist (+19 anger) = 49 anger (goal: 100)."

Below that is a red box reading "GOALS: Suggested by 22341287 for a wager of D1.4: Get Mei at 100 anger. Get Mei to yell out her room password so loud that she wakes up every apartment in the building."

To the right reads "@Mei: 29,012,021 points (-1,048,576 in the last hour)", with live chat below of 8-digit names saying "she mad lmao", "SAY THE LINE, MEI MEI!", and "rocky is long gone now lol", with announcements of one buying I.D.I.O.T. Pro and one playing a spooky noise.

A tablet reads "SMARTASS SMARTHOMES"
John Harris
5 months ago

MST Club is underway. Currently showing the 1979 comedy Scavenger Hunt. Tonight's episode (at 9/6 PM US Eastern/Pacific time) is KILLER FISH, jewel thieves vs piranhas. At https://cytu.be/r/Metafilter_MST3KClub #noxp #mstclub

Wir wurden bei der #btconf mehrfach gefragt wie man uns regelmäßig finanziell unterstützen kann, aber jenseits von Donations und Twitch Subscriptions.

Gibt es neben Ko-Fi und Patreon noch Services, die wir uns ansehen sollten? #noxp

For everybody visiting #btconf and wondering what our posts are all about:

We’re two guys who regularly talk about what happens in front end world in our podcast and twitch stream. So if you’re excited about front end development and speak or want to learn German, be our guest!

https://wwsiv.de #noxp

Moritz and Constantin from wwsiv selfie, smiling into the camera outside the Capitol theater at sunny btconf 2023

Hörer*innentreffen war ❤️❤️❤️!
Danke an alle die da waren. Das machen wir mal wieder! #noxp #btconf

Runder kleiner Tisch mit vielen Bierflaschen und Gläsern von oben, drumherum die Beine von ca 7 Personen.

Wir sind im Raum mit dem dicken Fernseher. ❤️
#btconf #noxp

Wir wären dann mal live.
https://twitch.tv/wwsiv
#noxp

~ajhalili2006 (he/they)
5 months ago

EDIT 22:23: Fixed some broken link

#introduction (well again), copied from my first Stack Notes: For those who are new here to the stack or just trying Notes, hello there! I’m Andrei Jiroh, an #ActuallyAutistic (@actuallyautistic) from the Philippines. Other than being the web dev and open-source maintainer at Recap Time Squad and part of radar.community Staff (although currently in hiatus due to school), I’m also plan to cover everything internet shitfuckeries (hint: controversies, community toxicity, etc.) and then some via [shitfuckery@bullshit.hq(https://fromthebshq.substack.com).

While I technically have an alt account in the Stack (https://substack.com/profile/70067674-ajhalili2006) due to importing my WordPress blog into here, please treat both accounts as if they’re same.

I’ll try to post simultaneously here and on the fediverse (this one!) as much as my spoons I could afford (I can’t do that on Twitter, simply blame Musk for doing all things anti-competitiveness in the eyes of the EU.)

See also https://ajhalili2006.substack.com/p/notes btw.

#substack #noxp

A custom made banner about the new Substack feature with "Hello, Notes" at center, replacing "hello" with the wave icon in Substack's official brand color as background.
Chris Bohn
5 months ago
davidnewman
6 months ago

@jeffjarvis Neat idea, but permafrost and train tracks are not good buddies. This is near Valdez, AK. #noxp

John Harris
6 months ago

MST Club is getting underway. Tonight's movie is 1202 ATLANTIC RIM, from The Asylum, which is a fairly new movie, made in 2013, so the other movies tonight are also from that year. https://cytu.be/r/Metafilter_MST3KClub #noxp

MOULE :RainbowLogo:
6 months ago

I'm excited to reveal TWO New #MOULE tracks are on the way!! :MOULE_Happy:

Introducing Smellville and Smellody - a #Progressive #DeepHouse #ElectronicMusic #EP soundtracking :Melville: @Melville and :Melody: @Melody's aromatherapy store!

#PreSave:

:Melville: :Melody: Smellville and Smellody EP: https://distrokid.com/hyperfollow/moule/smellville-and-smellody-ep
:Melville: Smellville only: https://distrokid.com/hyperfollow/moule/smellville
:Melody: Smellody only: https://distrokid.com/hyperfollow/moule/smellody

+ Check out its #art I made for it below! #artist #artwork #music #noxp #EDM

The cover art for my upcoming EP "Smellville and "Smellody", in a 3:2 aspect ratio, later cropped into their individual cover arts.

It depicts Melville, an anthropomorphic cartoon skunk wearing a dark grey hoodie, happily holding and smelling a rose in the centre-left foreground with his eyes closed and smiling.

To the centre-right mid-ground is Melody, another anthropomorphic cartoon skunk, sitting on a yellow beanbag wearing magenta hoodie, magenta headphones, black tracksuit pants and looking to her upper-left while strumming a guitar.

It takes place in the Smellville store – a tight-knit assortment of lots of essential oil bottles of various shapes, flowers, hanging flower baskets, incense sticks, melts, bottled plants, candles, tea lights, oil diffusers, and oil diffusers with musical speakers on them blasting out music.

Below Melville is the word "Smellville" with a swishy S logo like a skunk's tail in faint green. Below Melody is "Smellody" written in pink musical notes.

@wfryer The biggest takeaway from EdTechSR Ep 285 for me? https://archive.ph that lets you bypass paywalls

Listen to EdTechSR https://edtechsr.com/2023/03/13/edtechsr-ep-285-sydney-is-scary/

Down with paywalls! ;-) #noxp #paywalls #EdTechSR #Education #ai

"Tongues are my Element, I declare,
I'll walk with any man on Earth,
And yet a dearth
Of words will never fear.
The fertile Cups best 'Dictionairies' are.
And as for 'Rherotick', that two-handed Art
Which Play's both Plaintiff's and Defendant's part,
To me 'tis Natural: for ev'n now, what e're,
Me-thinks, I Look on, Double doth appear."

(C. Darby: Bacchanalia, Or, A Description of a Drunken Club, 1683, 12th stanza)

#rhetoric #wine #rhetodons #noxp

Chris Bohn
6 months ago
A black alpaca with a white nose enters a barn stall
Andreas (☎️ 5819 @ CCCamp)
6 months ago

So this morning I thought I'd try using #chatgpt to run some police risk assessments by making it ingest the College of Policing website. Turns out there is *a lot* on that website.

Also, why isn't this available through an API??

https://www.college.police.uk/app

#noxp

Yeah nah.
6 months ago

If gender equality is something you're keen on (and you should be!) then the Office for Women has a consultation period running where you can comment on the topic and give suggestions/flag what's important to you. It's anonymous and doesn't take long.

https://www.pmc.gov.au/office-women/national-strategy-achieve-gender-equality/consultation#respond-as-an-individual

#noxp #women #equality

Chris Bohn
6 months ago
Chickens eating from a trough. A rooster looks up as another hen approaches the trough.
Bündnis FreiVAC
6 months ago

“Wir wenden uns gegen die vereinfachenden Aussagen, die die Rolle Russlands im Krieg ignorieren, Ukrainer:innen zu reinen Marionetten machen, sowie gegen ihre verschwörungsideologische Ausbeutung.”

📅01.04.2023
⏰13:30 Uhr
📍Platz der alten Synagoge

https://freivac.de/2023/03/12/kundgebung1423/

#Freiburg #fr1423 #noxp

John Harris
7 months ago

MST Club is about to get underway. Our early movie this week, about to start, is Strange Brew! The MST3K episode (beginning in two hours) is one of the worst movies ever made, and definitely the worst of Season: Carnival Magic. The movie that says, if a chimp could talk, they probably would only engage in meaningless small talk. #noxp

Keith Wilson
7 months ago

Composing toots in @elk appears to be broken since the latest update. 😟 #Elk #noxp

Palash Bauri :tux:
7 months ago

#askfedi

Hey folks, do you know any C standard library reference manual or something like that, which mention what does what, and optionally include some examples for that.

#noxp #c #programming

Nickolas Means
7 months ago

It’s very difficult and almost never economically viable to make technical systems resilient on their own. That’s why we focus so much on sociotechnical systems.

When Elon laid off most of the company, he destroyed the “socio” part of the sociotechnical system that kept it running. And unless I missed the Erlang rewrite, Twitter isn’t built for unattended five-nines reliability.

This “complete rewrite” is a fool’s errand. You can’t solve much of anything with code by itself.

#noxp

Wir sind wieder hiiiiiiiierrr, bei diiiiiiiiiiieeerrrrr!

Heute Abend live auf Twitch sprechen wir über Reddit, CCC-Events, unsere Daten-Upload-Umfragen und ggf. gibt’s noch ein bisschen Live-Debugging am Soundboard.

https://www.youtube.com/watch?v=NcbskLp9lK8

#noxp

Rocky Linux :rockylinux:
7 months ago

Psst! Wanna try immutable Rocky Linux early? _Beta_ images are available at https://dl.rockylinux.org/stg/sig/8/ostree/x86_64/isos/

Post any issues you encounter at https://chat.rockylinux.org/rocky-linux/channels/sig-ostree!

And shh! 🤫 Don't tell the team I'm linking to untested, pre-production software en-masse...

Secret post for fedi followers! #noxp

Kootenay
7 months ago

Let's dance!
@NikoliSpotkat@twitter.com the snep and Tatonga the pronghorn at BLFC 2016.
🪡@onefurallstudio@twitter.com (Tatonga, Nikoli's head & airbrushing)
🪡Myself (the rest of Nikoli)
📸Unknown

#FursuitFriday #SnowLeopard #Snep #Pronghorn #Fursuit #BLFC #noxp

Nikoli the snow leopard and Tatonga the pronghorn (Fursuits) appearing as if they are dancing.
Liz Rice :verified:
7 months ago

@programmablecat I’m going to guess face wash does not taste anywhere as nice as it smells?!

#noxp

Liz Rice :verified:
7 months ago

@programmablecat 💦Pour boiling water on tea bag
🟤Brew to correct colour
🥛Remove tea bag, add milk

I’m no tea connoisseur, but I was brought up to believe the is The Way To Make Tea and that any other approach is horrifyingly savage!

#noxp

rmoff 🏃🏻 🍺 🥓
7 months ago

I know I boosted it earlier but this article by @andypiper bears re-promoting :) https://dev.to/andypiper/thoughts-on-dev-rel-in-the-post-twitter-era-2k8a

#devrel #noxp

Fundamentally, for me, a core tenet of DevRel remains: go where the community is. Don't expect to "own" the community around your Thing [ product | project | technology | idea ]. Earn the respect of the community, in the spaces where it has formed. You can (by all means!) host your own Discourse forum or Forem instance, but that's almost certainly not the only place where folks are discussing your Thing.
What does the tag #noxp mean?

- you don't gain any experience points from reading the post?
- the author doesn't like extreme programming?
- there will be no explanation what the post is about?
- the author does not want exposure?
RAIZ :vfy:
7 months ago

Será que tem alguém de Caxias do Sul aqui no mastodon? #noxp