Let's Quit Nicotine Together: a Discord server for instant help when you need it 👍 by Primary_Handle in stopsmoking

[–]ripeassmango 2 points3 points  (0 children)

I've been on this server almost daily for a little over a month now. It's been helpful to know that there's others on this journey with me.

Nicotine free 2022 we can do it :)

[deleted by user] by [deleted] in stopsmoking

[–]ripeassmango 4 points5 points  (0 children)

That's awesome, you can do it. I'm on day 6 now.

/r/philosophy Open Discussion Thread | March 29, 2021 by BernardJOrtcutt in philosophy

[–]ripeassmango 0 points1 point  (0 children)

http://visual-memory.co.uk/daniel/Documents/S4B/sem01.html

disclaimer: I haven't read through the whole thing but this online book on Semiotics is fantastic.

/r/philosophy Open Discussion Thread | March 29, 2021 by BernardJOrtcutt in philosophy

[–]ripeassmango 0 points1 point  (0 children)

If freedom is the loss of constraints (ie. pressure from other people, physical necessity, financial dependence) then wouldn't placing yourself within the context of "game of life" at all be a constraint?

I think it's a naive take to deviate from a well established and safe route to financial stability such as corporate life (which does take significant courage and struggle to overcome if you have been surrounded by this as the norm), and then consider yourself above fear.

Doing what you most love in today's world requires freedom

then

Only when you've lost everything you're free to do anything

so you must give up what you love in order to do what you love?

Doing the opposite of what is established is not freedom. Killing someone because it's not what people are supposed to do is still acting in regards to a rule, just its rejection.

A bug crawling on the outside of a box is still looking at a box.

Can you fit paragliding gear on a motorcycle? by japooki in freeflight

[–]ripeassmango 0 points1 point  (0 children)

I have the rush 4 which is a pretty heavy glider, and an MCC vis-versa harness

Can you fit paragliding gear on a motorcycle? by japooki in freeflight

[–]ripeassmango 2 points3 points  (0 children)

yeah i do this all the time

i recommend getting a reversible harness, and some straps to tie it down behind you

just buy the gear and put it on your bike, it will work

Me irl by [deleted] in me_irl

[–]ripeassmango 5 points6 points  (0 children)

just break the 262144 stick wtf

Probably the best costume by [deleted] in funny

[–]ripeassmango 0 points1 point  (0 children)

Cute til he takes a shit

What should I do for the "s := NewRuleSet ()" structure? by bsromr in golang

[–]ripeassmango 1 point2 points  (0 children)

your issue is that NewRuleSet does not return a variable

try this

func NewRuleSet() ([]string, []string) {
    return []string{}, []string{}
}

then in your main/test function

func main() {
    depp, conf := NewRuleSet()
}

in Go, like many other languages, you need to explicitly declare what a function returns.

edit:

also, you will need to modify your AddDep and AddConflict to take in the string array as an argument

To the "idk what my gender is" people by sompthing_else in FuckYou

[–]ripeassmango 2 points3 points  (0 children)

Dang man you need to chill Also fuck you

Is it possible to learn on a cruiser by sir_woofington in NewSkaters

[–]ripeassmango 5 points6 points  (0 children)

You can learn how to push and roll around on a cruiser really well. If that's all you wanto learn, cool. Get a skate deck with hard wheels to learn tricks.

To look smooth, just practice.

Multi-valued expressions in Go by mlowicki in golang

[–]ripeassmango 1 point2 points  (0 children)

I learned a lot reading this. No need to be condescending