Side Effect - Keep That Same Old Feeling
#JazzDeVille #Groove #NowPlaying #SideEffect

@ireneista

Oh, the connection between magic and mathematics is well known. @cstross has written a fair bit about events involving applied computational demonology, for example.

If there really is no comment syntax for magic spells, that's unfortunate. It means practitioners probably end up scrawling their notes to themselves as marginalia, and I don't know if the magic could leak across from the main spell or what undesirable side-effects that might have.

#magic #spell #mathematics #computation #AppliedComputationalDemonology #ComputationalDemonology #marginalia #oops #SideEffect

Side Effect - Keep That Same Old Feeling
#JazzDeVille #Groove #NowPlaying #SideEffect

If he's telling me the truth, as we reach the end of the first cycle of Capecitabine, the side effects seem to be minor: just a bit of fatigue that requires a nap.

But after two weeks of meds, the mandatory one week without meds foreshadows … something. Maybe we'll be lucky. After all, that nurse did say that, while it's rare, some people are on Capecitabine for a year.

#cancer #chemotherapy #medicine #drug #SideEffect

Subcision Side Effects: Causes and Prevention
Subcision is an effective treatment for reducing the appearance of scars. But much like any other cosmetic procedures, this treatment may come with side effects.
Website: https://taega.com.au/subcision-side-effects/
#taega #taegaclinic #subcision #sideeffect

It's time I can return to work coming Monday.
I'm #hacking too much which gives the #SideEffect of #smoking too much.
+sigh+

#SelfControl is NOT my strong side.

Revealing #prednisone as the substance left me astounded.

I mean, sure -- it utterly screws blood sugars, easily making a patient #diabetic

I'm not sure if ALL patients get this particular #SideEffect, but if your blood sugars tend towards the higher side of normal, prednisone will push it *well over* normal.

7/x

#dx
#tx
#medication

67- Side Effect "The Loneliest Man In Town", by gibberish

from the album "Karate Chop" Vol 2 (Pre Chopped Jazz, Soul, Hip Hop Samples)

gibberish
Why Israeli Soldiers Rape, Torture, and Massacre | Common Dreams

Instilling fear in the Palestinian people is not a side effect of the IDF's brutal violations of human rights. It is the strategy.

Common Dreams

A change of season.
Not change to summer from spring,
Change that makes it burn.

#haiku #poem #ShortPoem #SmallPoem #climate #ClimateChange

Author Notes (nerdy trivia for programmers):

As someone once observed, there are two ways you can change your socks: you can put on a new pair, or you can monogram them. I learned this because Bernie Greenberg said it in a tutorial on the lisp programming language, several decades ago, when I was at MIT, though I don't know if it was original to him. But I've always liked that set of mnemonics for the two kinds of change, and they were part of the inspiration for this haiku.

The first kind of change (referenced in the middle line of the poem, line 1 if you 0-index the lines) is variable assignment, without side effect:

1> (setq *season* *summer*)

The second kind of change (referenced in the final line of the poem, line 2 if 0-indexed) is mutation by side-effect to an object:

2> (incf (average-temperature *summer*) enough-to-make-it-burn)

- - - - -

For others not familiar with lisp, you'd probably expect something more akin to this pseudocode for the corresponding examples above:

1> season := summer

2> season.average_temperature += enough_to_make_it_burn

#lisp #CommonLisp #programming #change #SideEffect