• 🇬🇧󠁿 🇸🇪 🇿🇦 🇮🇪 🇬🇭 🇩🇪 🇪🇺
    European & African
    Drug Discussion


    Welcome Guest!
    Posting Rules Bluelight Rules
  • EADD Moderators: Pissed_and_messed | Shinji Ikari

Gibberings CCVIII V. Cephalopodia's Amphetamine Utopia

Status
Not open for further replies.
One of the few opioids I still have an interest in trying. Supposed to be great IV rite? ah those self-destructive days.

I got into a car this evening I presumed to be my Uber. It wasn't. It took the driver a while to realise I'd been sitting there but when he did, he went completely fucking mental, just my luck getting into a violent psychopath's car by mistake...cunt.
 
Hydromorph is one of the few opioid big boys that lives up to its name - not in anyway sustainable though, it gives the PPD's a run for their money in the tolerance stakes.
 
I got into a car this evening I presumed to be my Uber. It wasn't. It took the driver a while to realise I'd been sitting there but when he did, he went completely fucking mental, just my luck getting into a violent psychopath's car by mistake...cunt.
lmfao =D , did he deck you?
I'd do the same if some randomer just jumped in to me freaking car...
 
While you may view him as exhibiting psychopathy it may be pertinent to consider he probably looked in his mirror to check he was clear to reverse and had his gaze returned not by a cat-eye but a pinned pupil.... ;)
 
I just knocked up a quick Perl script to do this
Code:
#!/usr/bin/perl
use strict;

# PUBLIC DOMAIN 2016 Julie Kirsty Louise Montoya

my ($from_hex, $from_red, $from_green, $from_blue,
    $to_hex, $to_red, $to_green, $to_blue,
    $step, $steps, $hex, $red, $green, $blue,
    $text, $sep, $letter);

$from_hex = shift;
die "Bad 'from' colour" unless $from_hex =~ /^[0-9a-fA-F]{6}$/;
$to_hex = shift;
die "Bad 'to' colour" unless $to_hex =~ /^[0-9a-fA-F]{6}$/;

$text = $sep = "";
while (@ARGV) {
    $text .= $sep . shift;
    $sep = " ";
};

$from_hex =~ /([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})/;
$from_red = hex $1;
$from_green = hex $2;
$from_blue = hex $3;

$to_hex =~ /([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})/;
$to_red = hex $1;
$to_green = hex $2;
$to_blue = hex $3;

print "\n";

$steps = length $text;
for ($step = 0; $step < $steps; ++$step) {
    $red = $from_red + ($to_red - $from_red) * $step / ($steps - 1);
    $green = $from_green + ($to_green - $from_green) * $step / ($steps - 1);
    $blue = $from_blue + ($to_blue - $from_blue) * $step / ($steps - 1);
    $letter = substr $text, $step, 1;
    if ($letter eq " ") {
        print " ";
    }
    else {
        printf "[color=#%02x%02x%02x]%1s[/color]", $red, $green, $blue, $letter;
    };
};

print "\n";

exit;
Just supply hex codes for starting and finishing colours and text .....
The output from the program is ready-to-paste BBCode.
 
lmfao =D , did he deck you?
I'd do the same if some randomer just jumped in to me freaking car...

no but he looked like he would've had i let him get close enough.

it was strange considering i opened the backdoor, started packing all my equipment in the back seat, he didn't say shit....then when i finally sit down and shut the door, THAT's when he notices the randomer in his car and proceeds with the GET THE FUCK OUT MY CAR WHAT U DOING GET THE FUCK OUT MY CAR ad infinitum.

no amount of me shouting back 'I THOUGHT THIS WAS AN UBER' made him stop shouting 'GET THE FUCK OUT MY CAR' even when i was out of his car and running away.

sprout said:
in his mirror to check he was clear to reverse and had his gaze returned not by a cat-eye but a pinned pupil... ;)

oOO how dare you :p my pupils were full size at the time. not now though.

ps: cool script Julie, any reason why you chose Perl over something like Python?
 
Last edited:
I just knocked up a quick Perl script to do this
Code:
#!/usr/bin/perl
use strict;

# PUBLIC DOMAIN 2016 Julie Kirsty Louise Montoya

my ($from_hex, $from_red, $from_green, $from_blue,
    $to_hex, $to_red, $to_green, $to_blue,
    $step, $steps, $hex, $red, $green, $blue,
    $text, $sep, $letter);

$from_hex = shift;
die "Bad 'from' colour" unless $from_hex =~ /^[0-9a-fA-F]{6}$/;
$to_hex = shift;
die "Bad 'to' colour" unless $to_hex =~ /^[0-9a-fA-F]{6}$/;

$text = $sep = "";
while (@ARGV) {
    $text .= $sep . shift;
    $sep = " ";
};

$from_hex =~ /([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})/;
$from_red = hex $1;
$from_green = hex $2;
$from_blue = hex $3;

$to_hex =~ /([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})/;
$to_red = hex $1;
$to_green = hex $2;
$to_blue = hex $3;

print "\n";

$steps = length $text;
for ($step = 0; $step < $steps; ++$step) {
    $red = $from_red + ($to_red - $from_red) * $step / ($steps - 1);
    $green = $from_green + ($to_green - $from_green) * $step / ($steps - 1);
    $blue = $from_blue + ($to_blue - $from_blue) * $step / ($steps - 1);
    $letter = substr $text, $step, 1;
    if ($letter eq " ") {
        print " ";
    }
    else {
        printf "[color=#%02x%02x%02x]%1s[/color]", $red, $green, $blue, $letter;
    };
};

print "\n";

exit;
Just supply hex codes for starting and finishing colours and text .....
The output from the program is ready-to-paste BBCode.

And to think, I've been relying on 'Cid all these years ;)
 
I would probably just start driving. Uber kind of freaks me out-I don't know these people!
 
Hydromorph is one of the few opioid big boys that lives up to its name - not in anyway sustainable though, it gives the PPD's a run for their money in the tolerance stakes.

I have virtually no tolerance. 2 mg not only s great pain relief but I turn into a zombie.
 
I have virtually no tolerance. 2 mg not only s great pain relief but I turn into a zombie.

With low tolerance 2mg should get one nicely high. The Morphine CF floats somewhere around 6.5-8 (6.67 more often than not) so a very rough conversion gives around 15mg Morphine, not accounting for absorption.
Rectal BA is lower than IN by ~15% or so but HM goes from nought to peak plasma concentration in a millisecond or three through the nasal membranes and thus offers a fast track to a casket, the reduced potency when plugged is pretty much negligible when it provides a much larger safety margin.
 
nice!

Bluelight is an international, online harm-reduction community, committed to reducing the harm associated with drug use. Bluelight neither condones nor condemns the use of drugs. Rather, we accept that drug use will always exist irrespective of legal status or societal norms. While there is no truly safe way to use drugs, we understand that prohibition and abstinence are not realistic or desirable solutions for everyone, nor have they been adequate in addressing the serious public health concerns associated with drug use. While there is no universal definition of drug-related harm reduction, Bluelight believes that through frank and open discussion we are able to deliver accurate information, eliminate misinformation and empower individuals to make wiser, more responsible choices. Bluelight understands that drug use encompasses a broad range of behaviors, some safer than others, and that drug use can progress towards increased risk with some individuals. We encourage our community to be honest and cognizant of their drug use and understand the warning signs of abuse and addiction before they manifest. Bluelight also hosts a robust recovery community for those seeking a way out of drug abuse and addiction. These forums invite visitors to discuss addiction and sobriety in a non-judgmental setting, share recovery resources and encourage members to seek help. We believe there are various roads to recovery, including 12-step programs such as Narcotics/Alcoholics Anonymous and alternatives such as SMART Recovery. Bluelight's overarching philosophy is a simple: Meet people where they are and encourage open dialogue that empowers the individual to be the primary agent of her own physical, mental and emotional wellbeing.

alasdair
 
Note that since each non-space character gets surrounded by [color=#______] and [/color] tags, adding 15 and 8 characters respectively, this considerably increases the payload size. The underlying database structure probably only allows for a maximum of 65535 characters in a post, limiting you to around 500 words of colour-gradient text.

If you change the main loop to
Code:
for ($step = 0; $step < $steps; ++$step) {
    $red = $step % 2 ? $to_red : $from_red;
    $green = $step % 2 ? $to_green : $from_green;
    $blue = $step % 2 ? $to_blue : $from_blue;
    $letter = substr $text, $step, 1;
    if ($letter eq " ") {
        print " ";
    }
    else {
        printf "[color=#%02x%02x%02x]%1s[/color]", $red, $green, $blue, $letter;
    };
};
You get this effect instead, which is even more visually jarring but can look OK if the colours are chosen well.
 
Where's my dunce hat and sandals of shame?

I do believe I am many years overdue in returning them, my good man. Unfortunately for me, and fortunately for you, I don't see you getting them back anytime soon :(

In other news; [Insert willy joke here]
 
There's little I hate more than not knowing, no matter the topic part of my soul commits seppuku if I cannot discuss the topic. :(
 
Status
Not open for further replies.
Top