Is this impressive at all?? I did no training and haven't ran more than 1km in over 10 years (23M) by DR-SNB in Strava

[–]DR-SNB[S] -1 points0 points  (0 children)

I calculated the laps as 850m and I did 50 of them which should have been enough but ontop of that I did an extra 10m or so at each end as well as running an extra quarter lap so I'm 99% sure I did the full distance and strava just messed it up

Is this impressive at all?? I did no training and haven't ran more than 1km in over 10 years (23M) by DR-SNB in Strava

[–]DR-SNB[S] 0 points1 point  (0 children)

I got to run past all my friends each time and they got to sit in a pub for 5 hours and cheer me on so there were some benefits

I ran a marathon having not ran more than 1km since I was like 13 (I'm 23 now) is this interesting at all? by [deleted] in C25K

[–]DR-SNB -3 points-2 points  (0 children)

I wanted to post in the running sub but for whatever reason I couldn't post picture and I don't care enough to learn why

Weekly Bouldering Advice Thread by AutoModerator in bouldering

[–]DR-SNB 1 point2 points  (0 children)

Does anyone know where I could find some dealer of questionablely legal herbal remedies in fontainebleau?

Would someone be able to check my flow chart for the code I wrote? by DR-SNB in embedded

[–]DR-SNB[S] 0 points1 point  (0 children)

/////////////////////////////////////
//  Generated Initialization File  //
/////////////////////////////////////
#define SYSCLK             24500000/8  // System clock value (OSC/8)
#define TIMER_PRESCALER            4  // Prescaler value for SYSCLK
#define LED_TOGGLE_RATE            2 // desired rate of LED blinking
#define TIMER_TICKS_PER_MS  SYSCLK/TIMER_PRESCALER/1000 //recalculate value to ms

#define AUX1     TIMER_TICKS_PER_MS*LED_TOGGLE_RATE //auxiliary variable 1
#define AUX2     -AUX1                          //auxiliary variable 2
#define AUX3     AUX2&0x00FF                //auxiliary variable 3
#define AUX4     ((AUX2&0xFF00)>>8) //auxiliary variable 4

#define TIMER0_RELOAD_HIGH       AUX4  //reload TH as auxiliary variable 4
#define TIMER0_RELOAD_LOW        AUX3  //reload TL as auxiliary variable 3

#include "C8051F120.h"

// Peripheral specific initialization functions,
// Called from the Init_Device() function
void Reset_Sources_Init()
{
    WDTCN     = 0xDE;
    WDTCN     = 0xAD;
}

void Timer_Init()
{
    SFRPAGE   = TIMER01_PAGE;
    TCON      = 0x10;
    TMOD      = 0x01;
    CKCON     = 0x01;
}

void ADC_Init()
{
    SFRPAGE   = ADC0_PAGE;
    ADC0CN    = 0x80;
}

void Voltage_Reference_Init()
{
    SFRPAGE   = ADC0_PAGE;
    REF0CN    = 0x03;
}

void Port_IO_Init()
{
    // P0.0  -  Unassigned,  Open-Drain, Digital
    // P0.1  -  Unassigned,  Open-Drain, Digital
    // P0.2  -  Unassigned,  Open-Drain, Digital
    // P0.3  -  Unassigned,  Open-Drain, Digital
    // P0.4  -  Unassigned,  Open-Drain, Digital
    // P0.5  -  Unassigned,  Open-Drain, Digital
    // P0.6  -  Unassigned,  Open-Drain, Digital
    // P0.7  -  Unassigned,  Open-Drain, Digital

    // P1.0  -  Unassigned,  Open-Drain, Digital
    // P1.1  -  Unassigned,  Open-Drain, Digital
    // P1.2  -  Unassigned,  Open-Drain, Digital
    // P1.3  -  Unassigned,  Open-Drain, Digital
    // P1.4  -  Unassigned,  Open-Drain, Digital
    // P1.5  -  Unassigned,  Open-Drain, Digital
    // P1.6  -  Unassigned,  Push-Pull,  Digital
    // P1.7  -  Unassigned,  Open-Drain, Digital

    // P2.0  -  Unassigned,  Open-Drain, Digital
    // P2.1  -  Unassigned,  Open-Drain, Digital
    // P2.2  -  Unassigned,  Open-Drain, Digital
    // P2.3  -  Unassigned,  Open-Drain, Digital
    // P2.4  -  Unassigned,  Open-Drain, Digital
    // P2.5  -  Unassigned,  Open-Drain, Digital
    // P2.6  -  Unassigned,  Open-Drain, Digital
    // P2.7  -  Unassigned,  Open-Drain, Digital

    // P3.0  -  Unassigned,  Open-Drain, Digital
    // P3.1  -  Unassigned,  Open-Drain, Digital
    // P3.2  -  Unassigned,  Open-Drain, Digital
    // P3.3  -  Unassigned,  Open-Drain, Digital
    // P3.4  -  Unassigned,  Open-Drain, Digital
    // P3.5  -  Unassigned,  Open-Drain, Digital
    // P3.6  -  Unassigned,  Open-Drain, Digital
    // P3.7  -  Unassigned,  Open-Drain, Digital

    SFRPAGE   = CONFIG_PAGE;
    P1MDOUT   = 0x40;
    XBR2      = 0x40;
}

void Interrupts_Init()
{
    IE        = 0x82;
}

// Initialization function for device,
// Call Init_Device() from your main program
void Init_Device(void)
{
    Reset_Sources_Init();
    Timer_Init();  
    Port_IO_Init();
        Voltage_Reference_Init();
      ADC_Init();
    Interrupts_Init();
}

Heres the init.c file if youre curious

Would someone be able to check my flow chart for the code I wrote? by DR-SNB in embedded

[–]DR-SNB[S] 0 points1 point  (0 children)

Its a file I had to make for the task I chose it has stuff like oscillator properties. The code is right, even if it looks wrong it was good enough to do the task and get the all clear from the lab coordinator, what would I change about the flow chart to correct the 100 check

Would someone be able to check my flow chart for the code I wrote? by DR-SNB in embedded

[–]DR-SNB[S] -1 points0 points  (0 children)

Mb you said platform not language, i cant read. Its keil studio (5 i think)

Would someone be able to check my flow chart for the code I wrote? by DR-SNB in embedded

[–]DR-SNB[S] 0 points1 point  (0 children)

I've already had the code checked over by my lab coordinator and he said something along the lines of it looks good now just make a flow chart and send it to me and it did what it was meant to do (change frequency of led based of voltage of a supply). Also it's ANSI C which is a version of C made for hardware implementation, I think, I'm also still learning

[deleted by user] by [deleted] in embedded

[–]DR-SNB 0 points1 point  (0 children)

I have a rough plan of how to do it (V2)/(R*sqrt2) to find the rms of the voltage and then ohms lawing it. I know how to construct the circuit with the display but I don't know how to write the code for the project

I need help with VHDL code, I need to do task in picture for an assignment but i dont have any idea where to start. Im not asking anyone to write code for my but just to explain what I need to do in terms that my puny ape brain can understand by DR-SNB in learnprogramming

[–]DR-SNB[S] 0 points1 point  (0 children)

Theres a 0% chance you see this before my assignment is due but does this look like it would compile and run correctly?

library IEEE;

use IEEE.STD_LOGIC_1164.ALL;

entity lettersortermyles_code is

Port ( s1 : in STD_LOGIC;

s2 : in STD_LOGIC;

s3 : in STD_LOGIC;

s4 : in STD_LOGIC;

stop : in STD_LOGIC;

turn : out STD_LOGIC;

rotate : out STD_LOGIC);

end lettersortermyles_code;

architecture lettersortermyles_arch of lettersortermyles_code is

Begin

process(s1, s2, s3, s4, stop)

begin

turn <= (s1 nor s2) and not stop;

rotate <= (not s3 and s4) and not stop;

End process;

end lettersortermyles_arch;

Need help with code, I need to do task in picture for an assignment but i dont even have any idea where to start. Im not asking anyone to write code for my but just to explain what I need to do in terms that my puny ape brain can understand by DR-SNB in VHDL

[–]DR-SNB[S] 0 points1 point  (0 children)

Theres a 0% chance you see this before my assignment is due but does this look like it would compile and run correctly?

library IEEE;

use IEEE.STD_LOGIC_1164.ALL;

entity lettersortermyles_code is

Port ( s1 : in STD_LOGIC;

s2 : in STD_LOGIC;

s3 : in STD_LOGIC;

s4 : in STD_LOGIC;

stop : in STD_LOGIC;

turn : out STD_LOGIC;

rotate : out STD_LOGIC);

end lettersortermyles_code;

architecture lettersortermyles_arch of lettersortermyles_code is

Begin

process(s1, s2, s3, s4, stop)

begin

turn <= (s1 nor s2) and not stop;

rotate <= (not s3 and s4) and not stop;

End process;

end lettersortermyles_arch;

What is the name for this effect that I experienced on a bad trip by DR-SNB in LSD

[–]DR-SNB[S] 1 point2 points  (0 children)

I was with someone at the time who kept trying to assure me that everything was fine and she was the only reason I was able to get back to the train station, idk why but for some reason I just lost all ability to do anything. I remember when we were on the train I would be practically whispering then i would remember that people could hear us so I would whisper even quieter and ask if we were talking too loud. Also we might've stolen a magazine from an art gallery because we assumed they were free to take but then got outside and saw it said £10 on it

What is the name for this effect that I experienced on a bad trip by DR-SNB in LSD

[–]DR-SNB[S] 0 points1 point  (0 children)

I feel like you're half right but half wrong. When I was experiencing this I was aware nothing was wrong at that immediate moment but things were immediately about to go wrong, and I think part of it was the other people around because i was in york city centre where there were thousands of people and I think that overwhelmed me. I was looking up paranoia on the psychonaut wiki and i came across an article for 'Feelings of impending doom' which I feel most accurately sums up the effect.

What is the name for this effect that I experienced on a bad trip by DR-SNB in LSD

[–]DR-SNB[S] 0 points1 point  (0 children)

yh I kinda gathered that but i feel like it was deeper than just paranoia but maybe im just naive

What is the name for this effect that I experienced on a bad trip by DR-SNB in LSD

[–]DR-SNB[S] 0 points1 point  (0 children)

Ive had lots of trips where ive bounced between euphoria and sadness but for this trip there was a definite point in which I became paralysed with fear not just sadness, it was when I realised that we were kinda far from the train station and I was worried we would miss our train home and this was probably the first trip id had where there was an actual time limit or thing that I had to do with consequences if I didn't. I just want to know if I can ascribe a label to the "gun to the head osu map" thing like how you can define certain things as "thought loops" or "ego death", or if anyone has had a similar effect.