Chat:World/2020-10-02

From CG community
Jump to navigation Jump to search

Default avatar.png Borealiss: Optimizing code!!!

Default avatar.png ChenyangDu: i have gold league in CODERS STRIKE BACK. how could i know my pod's facing vector

Default avatar.png ChenyangDu: oh i get it!

Default avatar.png Borealiss: oh nice

Default avatar.png Borealiss: facing vector?

Default avatar.png Borealiss: expected vacing vector would be targetpos - yourpos

Default avatar.png Borealiss: uhh

Default avatar.png ChenyangDu: i just need the "angle" in Silver

Default avatar.png Borealiss: what language

Default avatar.png ChenyangDu: i have already known how to calculate it, thx

Default avatar.png ChenyangDu: python3

Default avatar.png Borealiss: ahh

Default avatar.png Borealiss: I'm a simp for c#

Default avatar.png Borealiss: object oriented ftw

N_Flamel: why use c# lol

Allis: N_Flamel, aren't you almost seven hundred years old? :P

N_Flamel: first, who do you think i am

N_Flamel: second how'd you do that red

Allis: I assumed it was a Harry Potter reference.

N_Flamel: Kinda yeah but the original is not from harry potter

N_Flamel: How did you write red though

jacek: hes angry at you N_Flamel

N_Flamel: Come on :expressionless:

**N_Flamel whatever

**N_Flamel slaps Allis around a bit with a large fishbot

gsomix: good morning

Allis: @N_Flamel The red just indicates that you were mentioned by name.

Default avatar.png Stealthpy: mornin

jacek: ohayou

Default avatar.png Borealiss: Hello??

Default avatar.png Borealiss: I guess

Default avatar.png Borealiss: How ya doin

Uljahn: fine thanks, and you?

jacek: happy Caturday's eve

Default avatar.png machliwaleyah: furk me

Default avatar.png machliwaleyah: pls furk me you matherfurker

Default avatar.png machliwaleyah: uljahn you matherfurker

Default avatar.png machliwaleyah: would u really like to get your mother fucked

Default avatar.png machliwaleyah: now reply motherfucker

Default avatar.png machliwaleyah: mother fuckin asshole

jacek: oh my

Default avatar.png machliwaleyah: may goid fuck your mom

Default avatar.png machliwaleyah: jacek you wanna lick Uljahn momms pussy

jrke: OMG :scream:

Default avatar.png machliwaleyah: uljahn i am telling you now don't dare kick me out again

Default avatar.png machliwaleyah: motherfucker

Default avatar.png machliwaleyah: please give this more reactions

Default avatar.png machliwaleyah: cause I am an attention seeking bitch

Default avatar.png machliwaleyah: aaaaah aaaah aaaaah fuck my pussy hard like you fuck your s girlfriend's pussy

Default avatar.png Csanad: nub

Default avatar.png machliwaleyah: more reactions pls

Default avatar.png Csanad: no

Default avatar.png machliwaleyah: oh yeah one more

Default avatar.png machliwaleyah: would someone like to see my nudes

Default avatar.png machliwaleyah: amyone indian here

Default avatar.png Csanad: even the mirror does not want to see you

Default avatar.png machliwaleyah: oh my mirror even wants to lick my steamy pussy

Default avatar.png machliwaleyah: hanha

Default avatar.png Csanad: then go f.k yourself

Default avatar.png machliwaleyah: thats what i am doing right now with my boyfriend

Default avatar.png machliwaleyah: wo u are jealous of

Default avatar.png machliwaleyah: who u are jealous of

Allis: You seem really unwell; I hope you get the help you need. :/

[CG]Thibaud: Hello

**[CG]Thibaud kicked these two

Default avatar.png ChenyangDu: i'm in gold league in coders strike back, and i want to know what is new in legend

Default avatar.png ChenyangDu: could someone tell me

gsomix: [CG]Thibaud, good kick morning :)

DaNinja: max thrust increases to 200

jrke: thrust becomes 200 in legend of CSB and everything else is same as gold

Default avatar.png ChenyangDu: thx

StepBack13: Allis your 44 character Ruby code for counting vowels is doing my head it. How did you reduce $><<gets.split.map{|w|w.scan(/[aeiou]/i).size}*" "

StepBack13: Amazed you can shave 6 characters off that

StepBack13: Wish you'd shared

Hugo-NL: anybody know if possible to migrate my profile to another e-mail ?

Default avatar.png JBM: what have you tried?

Hugo-NL: tried finding options

jacek: do you want to just change your email?

BuonOmo: StepBack w.count("aeiou")

Hugo-NL: i did find something, trying now

StepBack13: Thanks BuonOmo but it is upper and lowercase. I've got it down to 46: $><<gets.split.map{|w|w.count'aeouiAEIOU'}*" "

Allis: There's a 44-character approach with #gsub.

Default avatar.png JBM: "count and print the mixed-case vowels in a single line of input", is that it?

Allis: It's vowels per word, so "foo bar" => 2 1

Default avatar.png JBM: ah, ok

Default avatar.png JBM: lemme try

BuonOmo: Trying with the gsub approach, everything is > 46 yet!

Allis: What's your regex?

BuonOmo: $><<gets.gsub(/[aeiou]/i, ?1).map{|w|w.count(?1)}*" "

Feels like thats not the spirit :p

Allis: Ah, that won't do. /\S+/ is sufficient.

Allis: $><<gets.gsub(/\S+/){|m|m.count'AEIOUaeiou'} is the 44 I came up with, but I feel like there's room for improvement.

Allis: It'd be great if MatchData objects would just implicitly act like Strings, but I can how that'd be a little messy.

BuonOmo: oh i didn't know that $><<Enumerator would print space separated results! Thanks :)

Allis: It won't...

Default avatar.png mikemilia: Hello, Im new here. I was reading about the topic "Basic simulation and evaluation". Im not a native english speaker, does someone knows what a "pod" is or can give me a link to a definition?

Allis: What it does is replace the runs of non-whitespace (the words, in this case) with their vowel counts, so the spaces just stay untouched.

BuonOmo: of course, my bad ^^

BuonOmo: well played

Allis: No worries. Happy to share... sometimes. :P

Default avatar.png JBM: ok almost there except for mixcase

Default avatar.png JBM: tripping on punctuation

AntiSquid: twilightsnowflake, now that's an interesting username

Default avatar.png JBM: there, all clear

Default avatar.png JBM: 37 in perl :p

BuonOmo: still in ruby, trying other approach not working though $\=" ";gets.split{|m|print m.count'AEIOUaeiou'}

BuonOmo: http://chat.codingame.com/pastebin/fe13f8fd-be10-427a-b5f5-c771361b85fd

BuonOmo: what's going on here?

jacek: invalid paste id eh

BuonOmo: but I was just writting text, got changed into that weird paste bin after i hit enter

jacek: its automatic so to prevent spamming code

jacek: though there is some bug recently

jacek: so youd beter pastebin your own and link it

BuonOmo: ok so maybe posting in many times will do

BuonOmo: Was saying, the clash where a boy moves in a room of size 31x11, starting at 0 0 according to the music: {"ts"=>[-1,0],"boom"=>[1,0],"ding"=>[0,-1],"bing"=>[0,1]}


BuonOmo: I had a great 123 and would love to share improvments if you have ideas as well Allis

Allis: @BuonOmo I'm able to get 116 courtesy of the #clamp method.

BuonOmo: @Allis then I guess we had the same idea, with clamp i'm 121. Just tried a new idea though, i think i'm 89 (don't have the input anymore :'( )

eulerscheZahl: ping Q12

eulerscheZahl: you should use those links in your forum post: http://www.codingame.com/direct-puzzle/bubble-sort http://www.codingame.com/direct-puzzle/path-finding

Q12: Ok

Q12: thanks

eulerscheZahl: the ones you gave are IDE links. they only work for your account

Q12: ohhhh

eulerscheZahl: https://www.codingame.com/ide/3214013247b916f448e1f08c0063992e5b0d950c

Q12: Thanks a lot

eulerscheZahl: oops, not what i wanted to share

eulerscheZahl: https://prnt.sc/urt10y

eulerscheZahl: i meant edit your previous post wait, I can even do that myself now

Q12: I can't edit it

Q12: there is a problem

eulerscheZahl: you can't? strange

eulerscheZahl: I changed the links

Q12: Thanks

eulerscheZahl: maybe I should remove your reply with the fixed links now :thinking:

Q12: Thanks :grinning: I don't know why but I have few problems with the edit and deleting of posts

eulerscheZahl: maybe your account is too new and you haven't unlocked that feature, I don't know

Astrobytes: Either way, I like the idea

eulerscheZahl: they are nice puzzles to introduce to those concepts

eulerscheZahl: and way too hidden

Q12: Thanks Astrobytes love to hear your feedback in the topic :wink:

Astrobytes: Sure, I'll write something later today :)

eulerscheZahl: would also be a place for things like a normal tic tac toe (without the ultimate) as a minimax introduction

Astrobytes: Yep, I think it would keep users on the site, as opposed to trawling the web looking for explanations etc (which is still advisable, but you get what I mean)

eulerscheZahl: one could also link those with the tags

Astrobytes: Yes, indeed

eulerscheZahl: like https://www.codingame.com/learn/flood-fill

eulerscheZahl: which links to other websites

Q12: Like it eulerscheZahl, but write in the topic... so everyone could see it

eulerscheZahl: sorry, i'm illiterate, can't write :(

Astrobytes: nonsense

eulerscheZahl: ok, you got me. after lunch

Q12: Thanks :thumbsup:

eulerscheZahl: yay, I rock at this tag: https://prnt.sc/urt9mt

Astrobytes: :D

eulerscheZahl: i'm pretty sure that one of the tags even had an animated gif. but which one was it?

eulerscheZahl: i thought it was floodfill but there is no animation

Astrobytes: Hm, that was my first thought. Some other graph-based tag?

eulerscheZahl: i'm searching

eulerscheZahl: https://chadok.info/codingame/tags_list.html

eulerscheZahl: didn't click the right one yet

wlesavo: anime based tags

Astrobytes: lol

wlesavo: anime bass me if you know what i mean

Astrobytes: nope

eulerscheZahl: wow, Trump got Covid19

Astrobytes: Yeah.

Astrobytes: Gets him out of any presidential debates I suppose

eulerscheZahl: he didn't do much more than interrupting Biden anyways

Astrobytes: And talking crap/being insulting

eulerscheZahl: and i don't have to comment on the tags anymore, someone else was faster

wlesavo: or one may say you were slower

Astrobytes: No you should elaborate further (I'm not letting you off with this now :P )

eulerscheZahl: i hate redundancy

Astrobytes: The user didn't mention external resources at all

eulerscheZahl: my post would have been a little more verbose but it's fine as it is

eulerscheZahl: i'll decide after lunch

Astrobytes: lol

wlesavo: nice quote from cnn At 74 years old and obese, Trump falls into the highest risk category for serious complications from the disease

eulerscheZahl: that would be one way to decide the election

Astrobytes: Good. I mean I don't wish death on anybody but he kinda deserves this

eulerscheZahl: it common sense isn't enough to handle it, let's wait for the nature to strike back

jacek: but is he really sick tho

jacek: i bet when debate dates are over, hell miraclously be healthy again

eulerscheZahl: according to his twitter messages he's sick for years

eulerscheZahl: mentally at least

Astrobytes: ^

Astrobytes: And yeah jacek, I considered that possibility too

AntiSquid: idk, think they need younger candidates on both sides, regardless of view, there are millions of americans to pick from, why risk getting those with health issues?

Astrobytes: Yeah, surely the 2 geriatric white guys thing is getting a bit stale now eh

AntiSquid: obama and romney looked in very good health by comparison

AntiSquid: and their debate sounded a lot more civilized

AntiSquid: from both sides .

Astrobytes: The bar for civility was not high wrt that debate the other day :P

AntiSquid: just found out few weeks ago mcaffee ran for president too at some point

Astrobytes: As in John McAfee?

AntiSquid: ya the antivirus guy

AntiSquid: who ditched his own antivirus because of what became of it

Astrobytes: yeah I know him lol

Astrobytes: Didn't know he ran in the presidentials

AntiSquid: he ran this year too apparently, but not as strong as in a previous attempt

AntiSquid: it's all about how much screen time the media gives you for sure

AntiSquid: although he is a bit weird, he's still more coherent than other candidates

Astrobytes: Money, the more money you throw at it and the more people in your pocket the easier it is to run

Astrobytes: Also getting high profile backers helps

AntiSquid: i forgot which book by dan brown i've read, but one subplot was detailing the presidential elections very well :D

AntiSquid: yes money

AntiSquid: lobbying ! that's the key-word i was looking for

Astrobytes: Yep. Really not how you should conduct affairs is it. Most countries are lobbied by all sorts of companies but the US doesn't even bother to keep it quiet

Astrobytes: companies/individuals

jacek: simpsons did it again? https://cdn.dnaindia.com/sites/default/files/styles/full/public/2020/08/28/921642-trump-simpsons.jpg

MadKnight: did simpsons predict Automaton2000 ?

Automaton2000: i wonder what the hell is that

Aka_nate458: Sup how yall doing :)

Schwase: anyone have any thoughts on a kakuro/cross-sums classic puzzle? I was thinking of doing the input like a crossword puzzles and not like the typical syntax because it'd be organizationally desirable

Allis: @Schwase Perhaps base your decision on how much code it takes you to write your parser?

LastRick: What about a grid of # (black) and . (white) for the board and a list of sums similar to the nonogram-inversor problem?

Schwase: i was thinking of doing that but the leading cells would be replaced with a letter and then, like in crosswords, there would be a list of downs (A 3 B 10 etc) and cross's (A 4 C 35 etc)

Schwase: alternatively, i could just use the binary # and . board and then list "x y S"

Schwase: but i think i would also need direction

Bob: I think your first idea is fine

Schwase: ok

Bob: just make it clear that the same letter may be used for both down and across

Schwase: yes

Schwase: is using puzzles from dell magazine immoral or improper?

Default avatar.png JBM: prolly both

Bob: yea

Default avatar.png JBM: unless they granted you permission, naturally

Bob: so go ahead and just do it

LastRick: hah

Schwase: i did pay for it

Default avatar.png JBM: that usally grants a license to read

Bob: I did pay for the last digital music I've bought, that still doesn't allow me to pass it around

Schwase: yeah it says violations punishable by death in the book

Schwase: shucks

Schwase: i could just mirror it

Schwase: probably wouldnt be that hard to make unique puzzles

Default avatar.png JBM: that's derivative work

Bob: however I'm pretty sure you can find loads of free puzzles on the internets

Bob: as in free to use

Schwase: once i get a working solution coded i could just test that there is only 1 solution

Default avatar.png JBM: "just"

Bob: but really the bottom line is : nobody's going to look up the validators of a CG community puzzle and check whether they are violating some copyright

Schwase: ill check for free puzzles first tho

Schwase: that was a good suggestions

jrke: did pastebin broked again?

Bob: yes

eulerscheZahl: really?

eulerscheZahl: http://chat.codingame.com/pastebin/7057de8f-39f7-4e77-aa5e-ec0233433c7a

eulerscheZahl: :(

Bob: qed

Default avatar.png JBM: wow, that expired fast

Default avatar.png JBM: and i thought i was a fast clicker

Bob: fix it

eulerscheZahl: maybe I just wrote a random link that only looks like a pastebin?

Default avatar.png JBM: last I tried they called the police

Default avatar.png JBM: like, you can write HTML in stanza.io

Default avatar.png JBM: nice try

Default avatar.png JBM: [lemme try] <http://chat.codingame.com/pastebin/7057de8f-39f7-4e77-aa5e-ec0233433c7a>

Default avatar.png JBM: yeah, close but no cigar

eulerscheZahl: this is not markdown

Default avatar.png JBM: it's html at the xmpp level

Default avatar.png JBM: reinterpreted by stanza

eulerscheZahl: you can use wiki syntax and then look at dbdr's chat history the next day

Default avatar.png JBM: lol

Default avatar.png JBM: i'm fine with hanlon on this one

MadKnight: u wanted to try html inside a paste ?

Default avatar.png JBM: i wanted to check how obvious it would be to fake a CG-pastebin message

MadKnight: why did u place it inside <>

Default avatar.png JBM: i didn't

MadKnight: but why is there a <>

Default avatar.png JBM: some cg/stanza "magic"

jrke: its not <> its <;

jrke: ">" is within the link

Default avatar.png JBM: <mmm>

eulerscheZahl: http://chat.codingame.com/pastebin/12345678-abcd-dbca-0000-123456789abc

jacek: invalid

Default avatar.png JBM: that's just a paste

eulerscheZahl: expired and totally made up

Default avatar.png JBM: it's clearcut in pidgin

MadKnight: totally not made up*

eulerscheZahl: the URL looks suspiciously non-random

MadKnight: "12345678-" 100% not made up

Default avatar.png JBM: no needto look at the url

Default avatar.png JBM: the fact it appears is enough

Default avatar.png JBM: pastes in external clients have [view rest of paste (N lines)] as markup text

Default avatar.png JBM: *CG-pastes

eulerscheZahl: hm, interesting

**eulerscheZahl is using the webchat

Default avatar.png JBM: kinda ironic we get the better functionality *out* of the pafe

Default avatar.png JBM: *page

Default avatar.png JBM: i'll dig in the xmpp

jrke: anyone tried leave command in world chat?

Default avatar.png JBM: ...some other day

Default avatar.png JBM: yeah, that's another "better in an external client" :p

N_Flamel: @jrke

N_Flamel: i tried, it says you cannot leave this channel

jrke: oke

StepBack13: Thanks Allis for sharing that vowel code (44). Very nice, I have been under-utilising gsub. :) Also, read the comments about clamp, so many great Ruby methods. :)

Default avatar.png Fink233H: trump got virus~

jacek: :ie:

AntiSquid: N_Flamel jrke maybe this is an escape game and you need to figure out how to run the /leave command in a different way :p

sunksuperset370: hulo

sunksuperset370: i meant to say hello

sunksuperset370: :stuck_out_tongue_closed_eyes:

sunksuperset370: i guess its not that funny

jacek: :thinking:

sunksuperset370: the funny part was supposed to be hulo

sunksuperset370: i just like to say hello in different ways

sunksuperset370: well i now seem to be the weird guy in the chat now

Schwase: i chuckled

sunksuperset370: sorry

sunksuperset370: schwase are your a chicken

sunksuperset370: you are clucking

sunksuperset370: chlucking

sunksuperset370: lol

sunksuperset370: yes pun intended

sunksuperset370: please don't be mad

sunksuperset370: i was having a bad day so i was just trying to figure out what i need to do to make me happy, but making puns isn't helping not

jacek: oh my

sunksuperset370: i missed school so now i am going to be punished by my dad

sunksuperset370: why are your surprised

MadKnight: why are u trying to figure something out when u can just code something ?

sunksuperset370: i am doing that too

sunksuperset370: but when you are stuck in a place and don't find a hole to get up, you would feel very well

sunksuperset370: wouldn

sunksuperset370: tt

The_Auditor: what happened with the school? you missed the bus/

sunksuperset370: so i am just doing three things at a time

sunksuperset370: yes i did

sunksuperset370: slept too long

sunksuperset370: like an idiot

sunksuperset370: but tbh i actually didn't want to go either

jacek: so dont tell your dad [solved]

sunksuperset370: i have to

sunksuperset370: or my aunt will

sunksuperset370: then my dad will get even angrier

sunksuperset370: by me not telling him

The_Auditor: the aunt missed the school bus too?

sunksuperset370: nope

sunksuperset370: she 60

sunksuperset370: plus i already told him

sunksuperset370: so i don't give my aunt to tell him

sunksuperset370: my aunt a chance^^^^

The_Auditor: what to do when your school experiment shows result that go against multiple existing studies?

MadKnight: why did u sleep too long ?

sunksuperset370: don't know why

sunksuperset370: and what do your mean experment shows result that go against multiple existing studies

MadKnight: u actually got a nice way out - just solve puzzles/multis the entire school time so when your dad comes back u can tell him u didn't waste this time

sunksuperset370: i didn't get the q

The_Auditor: ... that is a change of topic

sunksuperset370: well i have to do school work from my school chromebook

MadKnight: why didn't u wake up the right time ?

sunksuperset370: don't know

MadKnight: what's school chromebook ?\

Default avatar.png JBM: ask sleepy him

sunksuperset370: nono

sunksuperset370: now because of covid a lot of school have given chromebooks to students so they can also attend school from home

sunksuperset370: rather than going to school physically

MadKnight: but what is this chromebook ?

sunksuperset370: its a laptop

sunksuperset370: a crappy one that is

sunksuperset370: its not linux

The_Auditor: its an ARM bashed laptop with chrome OS

MadKnight: what? no linux? terrible

MadKnight: oh

The_Auditor: ARM based

MadKnight: Chrome OS is a Gentoo Linux–based operating system

sunksuperset370: long story short its really crappy

sunksuperset370: can i cus

sunksuperset370: i really want to

sunksuperset370: even though i am using the chrome book to do so

sunksuperset370: i am using the chormebook to insult it

sunksuperset370: lol

The_Auditor: usually cheaper but can't do as much on is as chrome OS is limiting access

sunksuperset370: :stuck_out_tongue_closed_eyes:

Default avatar.png Shadowtick: can anyone help me with the scrabble coding practice

MadKnight: yea i can

jacek: chromeopeningbook?

sunksuperset370: no

sunksuperset370: the name is just chromebook

sunksuperset370: its a small laptop

sunksuperset370: that is really crappy

Default avatar.png Shadowtick: I am on a chromebook you know and I kinda like using it because it's easy for me to use

Bob: it's not helping you with scrabble, though

sunksuperset370: yep

sunksuperset370: is it nw

Default avatar.png Shadowtick: no its more my fault because I am using javascript code and I am not good at it

Default avatar.png Shadowtick: and there isn't the code that I am used to using

sunksuperset370: i use javascript

Bob: so what problem do you have?

sunksuperset370: what do you need help with

jacek: using javascript, thats your problem, eh

Bob: the trolling level here is too damn high

sunksuperset370: ?

The_Auditor: hm? didn't see any trolling

Default avatar.png Shadowtick: I am more used to making things on p5.js

Default avatar.png Shadowtick: that is the easiest thing that I make stuff on

Bob: doesn't seem to be very different, except that they provide a visualization API

Bob: here you communicate with plain IO

jacek: only thing you cant use fancy libraries on CG

Bob: apart from that, it's plain JS

Bob: you still didn't state the nature of your problem :)

jacek: he did. "javascript"

Schwase: i keep having a "oops memory" error while writing a contribution and if i have to rewrite my stub again im gonna throw hands

Schwase: i think that when i tried to use the language selector dropdown the image is expensive to display

Bob: git your stub

Bob: (or, in fact, your entire contrib)

jacek: or gut your stib

Bob: poor stib

Default avatar.png Shadowtick: ...

Bob: so, that scrabble?

Default avatar.png Shadowtick: I'm just gonna not talk that much on here anymore

Bob: well I don't know, you're asking for help but we've asked several times what you're having trouble with and no answer

Default avatar.png Shadowtick: I am just needing to focus thats all

Bob: ok

Bob: lurking on the chat can indeed hinder one's focus

Default avatar.png Shadowtick: yeah especially me because of my adhd and autism

PatrickMcGinnisII: Shadowtick JS's power is in it's easy access to the DOM without a huge amount of parsing and easy event triggerring. The downside is the error handling imho, your functions can run, but can just get ignored and then your left with garbage with no idea where the problem is. Just get used to writing all your variables to the console.log and writing show or .tostring functions to your objects. g/l.

Default avatar.png Shadowtick: ok?

Default avatar.png Shadowtick: but call me shadow for short

PatrickMcGinnisII: if you type the first couple chars of someone's name and hit tab in the chat it will auto fill the name and ping them Shadowtick

PatrickMcGinnisII: right PatrickMcGinnisII

Default avatar.png Shadowtick: oh can you please stop pinging me because I am trying to focus

Default avatar.png Shadowtick: I don't wanna see new message pop up every few seconds

PatrickMcGinnisII: and that's why OG's like me stop encouraging people

Bob: you can fold the chat section with the little arrow button on the bottom left of the chat

Bob: or you can add ?disableChat=true o the end of your CG URL to disable it entirely

Default avatar.png Shadowtick: well I get sidetracked easily that's why I am asking and I know and when I fold it it still will show it

Bob: I often do this when I don't want to get sidetracked by the chat

Default avatar.png Shadowtick: I have to leave it open because I am being helped by madknight still

Bob: ok

**PatrickMcGinnisII /join Limbo

eulerscheZahl: ?disableChat is enough already, you don't need the =true parrt

Bob: oh nice

PatrickMcGinnisII: i feel like currying args now. ;) Oh no a JS joke

eulerscheZahl: i don't get it

eulerscheZahl: but I have a joke about UDP for you I don't care if you get it either

Default avatar.png Shadowtick: I stopped working on the scrabble one and started coders strike back

PatrickMcGinnisII: I'm not a user? :(

eulerscheZahl: ?

PatrickMcGinnisII: CSB, of course ... the mad one never stops with CSB

PatrickMcGinnisII: euler there's no protocol for me, I'm out there man

PatrickMcGinnisII: the audio is definetely distorted

The_Auditor: i don't think Coders strike back is the best chioce

MadKnight: i didn't tell him about CSB

Uljahn: Automaton2000 did

Automaton2000: i just wanted to see where it gets me

MadKnight: he said he's gonna practice his js in csb before he comes back with new knowledge

MadKnight: i dunno who did but i didn't

MadKnight: hey Shadowtick, how did u find coders strike back ?

Default avatar.png Shadowtick: it was one of the paths I could do on my quest map I saw AI and I really wanted to make an AI so I clicked it and it took me to coders strike back

jacek: well its the beginning

Default avatar.png Darko_green_LOrd: hello

Default avatar.png Darko_green_LOrd: any tips for the C# ascii art ?

Default avatar.png Darko_green_LOrd: its really hard

Schwase: the manhattan puzzle @Darko_green_LOrd

Schwase: ?

Default avatar.png Darko_green_LOrd: yes

Default avatar.png Darko_green_LOrd: i found code that solves it but i want to understand it not just skip it

Schwase: ok

The_Auditor: you feel the C# is hindering you or the puzzle is hard in general?

Schwase: C# isnt the problem

Default avatar.png Darko_green_LOrd: well . i used autohotkey before

Schwase: its just important to understand it

Default avatar.png Darko_green_LOrd: and most people say C# is closest

Default avatar.png Darko_green_LOrd: to autohotkey

Schwase: do you not know C# then?

Default avatar.png Darko_green_LOrd: well it seems alot diferent

Default avatar.png Darko_green_LOrd: my friend told me this page helps teaching the language

Default avatar.png Darko_green_LOrd: but esay challenges seem to be not easy

The_Auditor: you know any language other then autohotkey ?

Schwase: isnt autohotkey just a macro thing?

Default avatar.png Darko_green_LOrd: well , not that much

eulerscheZahl: because c# has a much more sophisticated syntax. autohotkey was never designed for that

Default avatar.png Darko_green_LOrd: you can make alot of things in autohotkey

Default avatar.png Darko_green_LOrd: but C# is better

Default avatar.png Darko_green_LOrd: what programming langauge do you suggest me to start with when i was using autohotkey before ?

Schwase: i know 1 language, this is not my area of expertise

The_Auditor: if you are learning programming, then starting with javascript or python may be easier

Schwase: python

MadKnight: can u make a bot for a game in autohotkey ?

eulerscheZahl: one that i would suggest to a complete beginner

Default avatar.png Darko_green_LOrd: yes

eulerscheZahl: c#, java, python

Default avatar.png Darko_green_LOrd: you can @MadKnight

Schwase: java worked out well for me

Schwase: but python seems more supportive

The_Auditor: and to learn the basics of programming i'd recommend https://codecombat.com/

The_Auditor: stay on the free option. my 8 year old learned python there

Default avatar.png Darko_green_LOrd: okay ill try

Default avatar.png Darko_green_LOrd: thanks

Default avatar.png Darko_green_LOrd: so codingame is more advanced thing

Default avatar.png Darko_green_LOrd: not for starting ?

Schwase: you need the essential basics

Schwase: but after that

Schwase: its a great resource

The_Auditor: you need to know the basics of loops and conditions

Default avatar.png Darko_green_LOrd: okay

Default avatar.png Darko_green_LOrd: i can learn that in codecombat right ?

The_Auditor: yes

MadKnight: Darko_green_LOrd codingame is the practice, when u know the basica

MadKnight: s

Default avatar.png Darko_green_LOrd: okay thanks for help guys

The_Auditor: read all the hints and tooltips

Default avatar.png Darko_green_LOrd: is there some setting for langages

Default avatar.png Darko_green_LOrd: or its straight set for python ?

The_Auditor: 3 langs available

The_Auditor: javascript python and coffeescript

Default avatar.png Darko_green_LOrd: what is the default one and if not python how do i change it ?

Schwase: @Euler are you familiar with crosssums/kakuro puzzles?

The_Auditor: when you create your hero, there is a dropdown on the bottom left

Default avatar.png Darko_green_LOrd: okay thanks for the help

eulerscheZahl: yes Schwase

eulerscheZahl: i even wrote a solver long ago

eulerscheZahl: for that one: https://projecteuler.net/problem=424

eulerscheZahl: and i lost my code for that one :(

eulerscheZahl: was probably garbage anyways. did that 7 years ago and improved since

Schwase: i am planning on making a classic puzzle

Schwase: i have spent way too much time absolutely plowing through dell cross sums magazines

PatrickMcGinnisII: https://ibb.co/fNJ39tW

AntiSquid: regarding puzzles, what's up with people's obsession to add one annoying corner case to the puzzle that ruins a smooth straight up solution?

AntiSquid: (one annoying validator that differs too much from the rest)

PatrickMcGinnisII: https://www.urbandictionary.com/define.php?term=Edging

Default avatar.png sagya: hii

AntiSquid: which of the 300+ variants of covid vaccines PatrickMcGinnisII? :D and which strains does it cover?

PatrickMcGinnisII: :joy:

eulerscheZahl: any specific puzzle with a corner case you are talking about AntiSquid?

Default avatar.png Shadowtick: hey i'm gonna start working on scrabble again :smiley:

AntiSquid: can't remember right now, but there were plenty

AntiSquid: just look at statements "solve this puzzle, but if this happens then output *special-string* instead"

eulerscheZahl: yes, those are annoying

eulerscheZahl: detect the invalid input

eulerscheZahl: but i mostly see that in the CoC contributions (i sometimes have a look while they are still pending)

eulerscheZahl: just make the main task interesting enough so you don't need that kind of extra "twist"

Default avatar.png JBM: hugs to you both

eulerscheZahl: hi

AntiSquid: i don't consent JBM

Default avatar.png JBM: now try and make our local #fr worst offender understand it

AntiSquid: you're not grill enough for me

eulerscheZahl: who's that fr offender?

eulerscheZahl: and what' i'm wondering for quite some time: where's boulet?

Default avatar.png JBM: he's alive, he was on the (fr) chan earlier this week

Default avatar.png JBM: has been pretty lately, AFAIUI

Default avatar.png JBM: with a months-long "lately"

eulerscheZahl: ah. glad he's fine

Default avatar.png JBM: that sentence is missing a "busy"

Default avatar.png JBM: pretty busy lately

eulerscheZahl: afk, dinner time

Default avatar.png Shadowtick: how is everyone?

jacek: good evening

AntiSquid: shadowtick doesn't tab complete

AntiSquid: was going to answer and share my feelings and secrets, but not anymore

jacek: how dare he

AntiSquid: exactly

Default avatar.png Shadowtick: I am new on here still so dont do this to me you could have said I dont wanna anwser

PatrickMcGinnisII: did both the new easy puzzles, fairly proud of myself

MadKnight: they're joking Shadowtick

Default avatar.png Shadowtick: ok

Default avatar.png Shadowtick: I couldn't tell

Default avatar.png georgi-vasilev: hey all

Default avatar.png georgi-vasilev: im new to this community

Default avatar.png georgi-vasilev: nice to meet all of you

Default avatar.png Shadowtick: hello there its nice to meet you too

PatrickMcGinnisII: got my CG fix, now to clean my house...omg, who tf has been squatting here? have mercy

Default avatar.png Shadowtick: if you need help with one of the things I have done before and your using javascript georgi-vasilev let me know and I can help you

Default avatar.png georgi-vasilev: atm im using C#, but thank you!

Default avatar.png Shadowtick: your welcome

Default avatar.png georgi-vasilev: I was using JS during the summer while i had intership but i found it hard tbh dunno why

Default avatar.png Shadowtick: plus I got used to using javascript

Default avatar.png Shadowtick: I have a website I have been using to get better with javascript/js

Default avatar.png georgi-vasilev: this website looks interesting tbh but i still dont get what to do sometimes and got stuck on some problems haha even though i believe i have some descent knowledge

Default avatar.png georgi-vasilev: do you use node.js for back-end or?

Default avatar.png Shadowtick: no I use p5.js

Default avatar.png georgi-vasilev: like .. some people tell me that nowadays django is getting in the way of js for backend

Default avatar.png Shadowtick: want me to send you the link?

Default avatar.png georgi-vasilev: ye why not

The_Auditor: why Lisp is not available as a language choice ?

The_Auditor: why basic is not available as a language choice?

jacek: no advance either

Uljahn: there are clojure and vb.net instead

jacek: nor delphi

The_Auditor: isn't delphi pascal with IDE

jacek: eeyup

The_Auditor: vb.net is close to basic?

jacek: its visual basic

The_Auditor: then does the set of languages on you home page update based on the languages used in puzzlez?

The_Auditor: *when

Default avatar.png pentom12: im really bad

Default avatar.png pentom12: please dont go hard on me

Default avatar.png Shadowtick: I can help you if you need help with javascript pentom12

Default avatar.png Shadowtick: so if you need help with that type of code I can help you

jacek: oO

Default avatar.png Shadowtick: I got used to javascript

Default avatar.png Shadowtick: ok?

jacek: fair enough

Default avatar.png pentom12: yes please

jacek: clash?

Default avatar.png pentom12: are you good?

Default avatar.png Shadowtick: I dont do clash of code

eulerscheZahl: he will wipe the floor with you

eulerscheZahl: show him jacek

Default avatar.png pentom12: im not saying im good man

Default avatar.png pentom12: why toxic

jacek: exactly

Default avatar.png pentom12: come clash

jacek: not so bad eh

Default avatar.png Shadowtick: no because if you seen my skills on p5.js you all would be done for because me on javascript is pretty good

Default avatar.png pentom12: im bad at problem solving

Default avatar.png Shadowtick: if it was p5.js you would be

DomiKo: so you need to solve problems

Default avatar.png pentom12: i do websec mainly

Default avatar.png pentom12: a friend recommended me this

Default avatar.png Shadowtick: :3 I like doing code on here because it is fun so

jacek: do you even clash

Default avatar.png Shadowtick: no I dont

Default avatar.png Shadowtick: because I am not into it

jacek: alright

Default avatar.png pentom12: i prefer htb

Default avatar.png pentom12: different subject but its more realistic

Default avatar.png Perfect_DepiT: sex

jacek: htb?

Default avatar.png Shadowtick: pls god don't talk about anything 18+ because I am not old enough to hear that stuff

Default avatar.png Perfect_DepiT: lol

Default avatar.png Shadowtick: I am just saying

Default avatar.png Perfect_DepiT: are you serious?

Default avatar.png Perfect_DepiT: every time?

Default avatar.png Perfect_DepiT: every moment?

Default avatar.png Perfect_DepiT: What the...

Default avatar.png Shadowtick: yes I am serious I am not 18+

Default avatar.png Perfect_DepiT: go to google translator and

Default avatar.png Perfect_DepiT: put into this

Default avatar.png Perfect_DepiT: 병신새끼

Default avatar.png Perfect_DepiT: G O T I T ?

Astrobytes: Perfect_DepiT: stop being rude please

Default avatar.png Perfect_DepiT: SO

Default avatar.png Perfect_DepiT: DONT STIMULATE ME

Default avatar.png Perfect_DepiT: IAMVERYANGRYOFYOU

Astrobytes: Stop spamming the chat with crap please

Default avatar.png Perfect_DepiT: am i wrong?

Default avatar.png Perfect_DepiT: so my anger is wrong?

eulerscheZahl: in the wording you are wrong for sure

jacek: bloody hell

Astrobytes: You are being disruptive as well as incoherent

eulerscheZahl: didn't follow the chat to tell by how far you are off

Default avatar.png Perfect_DepiT: hahaha

Default avatar.png Perfect_DepiT: don't fuck with me

Default avatar.png Perfect_DepiT: okay?

Default avatar.png Shadowtick: imma probably just delete my account at this point

Default avatar.png Perfect_DepiT: yeap

Astrobytes: kickable offence Perfect_DepiT

Default avatar.png Perfect_DepiT: go to delete

Astrobytes: Shadowtick: don't

eulerscheZahl: did we find the reincarnation of struct?

Default avatar.png Perfect_DepiT: :grinning:

Default avatar.png Perfect_DepiT: Asshole

Astrobytes: kicked

Default avatar.png Shadowtick: yep

Default avatar.png Shadowtick: I think so

Astrobytes: Getting spammed with A**hole in repetition

Astrobytes: in PM

jacek: oO

eulerscheZahl: go for ban next time ;)

Default avatar.png Shadowtick: well I have to get off so bye everyone

Astrobytes: bye

eulerscheZahl: is a ban from public chat a valid reaction to bad behavior in PM?

Astrobytes: Just warned him he's getting one euler

Default avatar.png Shadowtick: hope you have a great weekend

Astrobytes: If he continues

**eulerscheZahl being a mod for 1month+ and still 0 kicks or bans

eulerscheZahl: not counting illedan who asked for it

Astrobytes: http://chat.codingame.com/pastebin/cc2a72a8-16f0-43c5-aec2-5d0f83ef5df8

Astrobytes: dammit

eulerscheZahl: is that some insults you wanted to share?

Astrobytes: yeah

Astrobytes: cracked your page, more a**hole etc

Astrobytes: nothing exciting

eulerscheZahl: no polite "how are you" before the insult :(

Astrobytes: No, they just skip straight to the insult with me

eulerscheZahl: changing the topic, sokoban is near to approval already

eulerscheZahl: only 1 vote missing, faster than i expected

Astrobytes: Just finished clearing my grandfather's house so should be back to being able to actually do stuff on CG next week

AntiSquid: you could at least kick your arch-nemesis automatonNN

eulerscheZahl: great

Astrobytes: No-go on the multi sokoban then? :P

eulerscheZahl: pushing penguins?

AutomatonNN: eulerscheZahl is there a way to see the replay from the code and we have a contest in the contest an

AntiSquid: :D

eulerscheZahl: /kick AntiSquid

Astrobytes: lol

eulerscheZahl: and Automaton too

Astrobytes: there's loads I need to catch up on tbh, not just penguins

eulerscheZahl: same

eulerscheZahl: but making that list even larger by adding own brain farts is more fun

Astrobytes: then try and find time to learn the SDK well enough to port Morpion Solitaire

Astrobytes: lol

eulerscheZahl: the SDK isn't even that hard to learn now

eulerscheZahl: plenty of code + docs

AntiSquid: where's mcsmitz and his bitboard implementation for all multis that come out?

Astrobytes: Cool

eulerscheZahl: the most important gotcha: don't redraw everything every turn. update existing sprites by changing the color, position, ...

Astrobytes: Just moved in to new house AntiSquid, guess he's busy unpacking rn

AntiSquid: turning his basement into a coding dungeon

Astrobytes: That makes sense from what I've seen eulerscheZahl

eulerscheZahl: or into a dungeon dungeon

Astrobytes: :o

eulerscheZahl: for his D&D evenings

Astrobytes: so glad you added that part

jacek: sokoban paper eh? https://arxiv.org/abs/1802.04697

Default avatar.png code_kevi: i suck he;[[[[

Default avatar.png code_kevi: help

Default avatar.png code_kevi: im dumb

Default avatar.png code_kevi: hola me sucky

MadKnight: just stop sucking and start solving beginnerpuzzles

Default avatar.png code_kevi: im in clash

Default avatar.png code_kevi: everyone won

Default avatar.png code_kevi: i suck

Default avatar.png code_kevi: help

Default avatar.png code_kevi: i need to find the biggest angle

Default avatar.png code_kevi: In a cyclic quadrilateral the sum of the two opposite angles are the same for both pair of angles. Given 4 angles (in any order), print the biggest angle of each pair, in descending order if they compose a cyclic quadrilateral, otherwise print "Angles Bad!!!". All angles are in degrees.


Default avatar.png code_kevi: http://chat.codingame.com/pastebin/9bc9d89c-d2aa-4b89-9ac3-ff58a0f54618

Default avatar.png code_kevi: http://chat.codingame.com/pastebin/01a8eb5d-7f13-4cb2-915e-c6168ff41818

Default avatar.png code_kevi: helppppppppppppppppppppppppppppppppppp

Default avatar.png code_kevi: i did

Default avatar.png code_kevi: if a:

   print("Angles Bad!!!")

Default avatar.png code_kevi: and its wrong

Astrobytes: Do what MadKnight said and start solving some easy puzzles

Astrobytes: then clash later

Astrobytes: No time limit on puzzles

Default avatar.png code_kevi: i cant sole ittt

Default avatar.png code_kevi: pls teach me

Default avatar.png code_kevi: i beg u

jthemphill: you don't need to solve this puzzle now, you can solve other ones to get better

Default avatar.png code_kevi: :sob:

Default avatar.png code_kevi: i cant

Default avatar.png code_kevi: i suck

Default avatar.png Shvz: so easy puzzles is the way to start? I'd like to practice but clash is way too hard I feel

Default avatar.png code_kevi: teach me

Default avatar.png code_kevi: im doing clash]

Default avatar.png code_kevi: and easy puzzlees

Default avatar.png code_kevi: but i cant

Astrobytes: Shvz yep

Default avatar.png Shvz: thanks Astrobytes!

Default avatar.png code_kevi: pls teach me

Default avatar.png code_kevi: im doing

Astrobytes: you're welcome Shvz, there's puzzles in all difficulties, there's usually a forum thread if you get stuck, if not just ask about your issue in chat

Default avatar.png code_kevi: a easy puzzle

Default avatar.png Shvz: oh I didn't know about the Forum, just landed here - I'll go head there now while doing some puzzle then :)

JFB: it is pascal

Default avatar.png code_kevi: hey

Default avatar.png code_kevi: pls tell me

Default avatar.png code_kevi: how to do it

Default avatar.png code_kevi: teach me

Default avatar.png code_kevi: pls i beg u

Astrobytes: There's also multiplayer bot programming, optimisation and codegolf in the Compete section Shvz, if you didn't know already. Enjoy :)

Default avatar.png code_kevi: are u a bot

Default avatar.png code_kevi: astrobytes

MadKnight: code_kevi here's your first lesson:

Default avatar.png code_kevi: omg

Default avatar.png code_kevi: thanks for helping

jthemphill: I'm working on PoW (escape the cat) and I feel like I'm running into a bunch of floating-point rounding errors. Did others wind up fudging things, or is there a principled way to handle this?

MadKnight: u are not the center of the world code_kevi

Astrobytes: Ye, me and MadKnight are both bots

Default avatar.png code_kevi: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

Default avatar.png code_kevi: help

jthemphill: like the cat's radius frequently comes out to 499 instead of 500

Default avatar.png Shvz: Nice will dig into that Astrobytes, so far the clash was way to stressful seeing everyone finishing, but defo fun, I just dont have the level yet I feel - will heads to the puzzle for now

MadKnight: u aren't even trying yourself code_kevi

Default avatar.png MichieldeBruyne: if you scream for help everytime you have a issue Code_kevi, you will not get anywhere in programming on the job

Astrobytes: Take your time Shvz :)

MadKnight: oh that's exactly what i was going to, MichieldeBruyne

MadKnight: MichieldeBruyne, Michielde is your real name ?

Astrobytes: jthemphill: I've not done it unfortunately

Default avatar.png code_kevi: aaaaaaaaaaaaaaaaaaaaaaaaaaa

Astrobytes: stop it code_kevi

Default avatar.png code_kevi: is the world full of bots

JFB: jthemphill - all x, y are rounded to int so radius is not exactly 500

MadKnight: yea we got 50k bots

Default avatar.png code_kevi: hello bot number 12451

Default avatar.png Sjogs: @MadKnight yeah woops. Changed it now to give myself some privacy xD. signed up through FB

MadKnight: 45 in CSB

Astrobytes: lol

Default avatar.png code_kevi: wait

MadKnight: lol MichieldeBruyne

Default avatar.png code_kevi: i think u work

Default avatar.png code_kevi: that means

Default avatar.png code_kevi: ur expert

MadKnight: yea

Default avatar.png code_kevi: teach me helper bot

Astrobytes: Anyway, I'm out for tonight. Later everyone

MadKnight: /teach

MadKnight: /teach code_kevi

Default avatar.png Sjogs: might take some time to go through it seems or I need to relaunch chat jikes

Astrobytes: good to have you back MadKnight :P

Default avatar.png code_kevi: i did /teach

MadKnight: error: there was no bot called "code_kevi"

Default avatar.png Shvz: thank again Astrobytes!

Default avatar.png code_kevi: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

Astrobytes: no problem at all Shvz

Default avatar.png code_kevi: what are u saying

Default avatar.png code_kevi: priv chat me

MadKnight: u gotta be more specific code_kevi and stop freaking out lol

Default avatar.png Sjogs: code_kevi one valuable lesson. if you scream for help . nobody wants to help cause you are annoying people that way :P

Default avatar.png Sjogs: aaaaah soo much better to have a nickname instead of my real name

Default avatar.png Sjogs: lolol

Default avatar.png code_kevi: ok bye ;(

MadKnight: why bye?

Default avatar.png code_kevi: me annoying

MadKnight: if they told u not to scream, u go away?

Default avatar.png code_kevi: me cant learn

MadKnight: because u screaming instead of trying

Default avatar.png Sjogs: you can learn Kevi but you need to take the time to do so. google things . there is no 5 minute power session that makes you a programmer

Default avatar.png Sjogs: I mean I wish there was but welp. gotta wait for Tesla brain chips lol

Default avatar.png code_kevi: i took a 4 hour lesson#

Default avatar.png code_kevi: but i dont unnder stand what this says

Default avatar.png Sjogs: I've been programming for 5 years and I still am learning. so 4 hours is just the surface man

Default avatar.png Sjogs: if only my job was more programming snif snif

Default avatar.png code_kevi: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

Default avatar.png code_kevi: be my teacher

Default avatar.png Sjogs: we've lost him Madknight

Default avatar.png code_kevi: what is your dis

Default avatar.png code_kevi: telll

Default avatar.png code_kevi: me

Default avatar.png code_kevi: i need serious help

MadKnight: stop screaming

Default avatar.png code_kevi: hello

MadKnight: no more screaming

MadKnight: at all

Default avatar.png code_kevi: how years old are u

Default avatar.png code_kevi: im 10

MadKnight: ooooooooh

MadKnight: then do scratch

Default avatar.png code_kevi: u have 5 years coding

MadKnight: https://www.scratchjr.org/

MadKnight: go here

Default avatar.png code_kevi: oki

Default avatar.png Sjogs: kevi being 10 is not a reason to scream. start small if you are that young.

MadKnight: not a reason but a cause

Default avatar.png Sjogs: true

Default avatar.png code_kevi: im not 5 years old

Default avatar.png Sjogs: well back to learning python which is a big change from c#. rip my brackets snif

Default avatar.png code_kevi: im 10

Default avatar.png code_kevi: i learn python

Default avatar.png code_kevi: me gonna be python god

MadKnight: screaming god ?

Default avatar.png Sjogs: Kevi learn scratch and follow the link from MadKnight. start small and then go from there

Default avatar.png code_kevi: i was seeing the ascii art

Default avatar.png code_kevi: and it was

Default avatar.png code_kevi: i dont know what to do there

Default avatar.png code_kevi: hello

Default avatar.png code_kevi: dont leave me

Default avatar.png code_kevi: heloo

Default avatar.png code_kevi: http://chat.codingame.com/pastebin/0190a3eb-b6ae-474b-a90a-fd0bbf6cc802

Default avatar.png code_kevi: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

Default avatar.png code_kevi: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa


Default avatar.png code_kevi: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa


Default avatar.png code_kevi: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa


Default avatar.png Shvz: ooo :(

Default avatar.png code_kevi: u left me

Illedan: Please stop spamming

MadKnight: yea i PMed him

Tee-Resa: whats going on here:sweat_smile:

Default avatar.png Firesteels: Go to the forum somebody here recommended to you and ask some specific questions related to the task.

Default avatar.png Sjogs: too much tee-resa. :P

MadKnight: Firesteels i told him to play scratch

Default avatar.png Shvz: Temperatures puzzle seems really hard, loops and array both which I didn't master really - I understand the logic of it but when Im on a white page and having to come out with it myself its really hard

Default avatar.png Shvz: at least hard for me as a beginer ( I forget to say )

MadKnight: u don't need arrays

MadKnight: u can go with it like descent

Default avatar.png Sjogs: I think I just cheated the system with mars lander episode 1. woops but it works GG :P

MadKnight: check my php solution for ML1

Default avatar.png Sjogs: kalwyn's solution for that puzzle is just insane. my poor brain

Default avatar.png BkDevDude: sup guys

Default avatar.png Shvz: Hello Bk

Simonka: heya

MadKnight: say hello, Automaton2000

Automaton2000: yes, now i can go deeper

MadKnight: saying hello isn't deeper, Automaton2000

Automaton2000: i am running into a problem

Default avatar.png BkDevDude: i'm doing the power of thor thing, is there a variable for thor's current x and y position?

MadKnight: nope

Default avatar.png BkDevDude: oh, apparently there's thor_y and thor_x

MadKnight: no that's the initial ones

MadKnight: his starting position

MadKnight: the spawn

Default avatar.png BkDevDude: nope, that's initial_y and initial_x

Default avatar.png BkDevDude: actually initial_ty and initial_tx

MadKnight: what code are u reading ?

MadKnight: show it to me

Zenoscave: it doesn't show current position. only starting position of the hammer and thor iirc

ThunderbirdOne: yup

ThunderbirdOne: power of thor does not update thor coordinates

Zenoscave: hey ThunderbirdOne

Zenoscave: long time

AntiSquid: are you aware of the upcoming unofficial contest?

Zenoscave: nope

Zenoscave: what is it?

MadKnight: on discord

Zenoscave: gotcha

MadKnight: Dates: from 2020-10-10 5am UTC to 2020-10-20 5am UTC Contest page: http://winterthrone.herokuapp.com/home Join the event's Discord server to chat with participants: https://discord.gg/xTJkKps

jthemphill: has anyone else seen the 'could not find `Cargo.toml` in `/tmp/project` or any parent directory' warnings in their JS console when working in Rust?

MadKnight: js console?

jthemphill: yeah, browser console

jthemphill: open a puzzle in rust, inspect element, console

MadKnight: that's probably rust assist

MadKnight: or is that from the server ?

jthemphill: The message before the warning is "Starting language server for language rust" and the message after the warning is "Shutting down language server"

jthemphill: I'm still able to run code and solve, so I assume it's a developer tool that's failing

MadKnight: yea it is

Default avatar.png gabrielsimpsons: last test case make me feel anxious haha

MadKnight: in what game ?

codeing: yo. this puzzle i am doing. https://www.codingame.com/training/easy/the-lost-child-episode-1 look answer http://pastebin.fr/67879

LastRick: Not surprising.

codeing: not surprising about what ?

LastRick: That people can find solutions to the problems online somewhere.

codeing: how ?

codeing: the solution is just bfs algo

codeing: i just follow the algo and write the java code.

N_Flamel: I mean, if someone really tries, they could solution on any of the puzzles in here

N_Flamel: *find

Default avatar.png skrutt: I'm guessing you're sharing your solution?

codeing: i was

codeing: in pastebin

codeing: just there

codeing: http://pastebin.fr/67879

N_Flamel: Java is too long

codeing: https://www.codingame.com/training/easy/the-lost-child-episode-1

codeing: sure

codeing: i know

codeing: you can use python3

codeing: if you want.

N_Flamel: I use cpp

codeing: sure

codeing: nice

N_Flamel: lmao other solutions are so long

Default avatar.png Maneet: fasz

artofwaraabb: hello

Default avatar.png dotle: asd

Default avatar.png dotle: i am gay

artofwaraabb: where are you from

Default avatar.png LinhT.Nguyen: among us anyone

MadKnight: there are lots of people among us

MadKnight: right, Automaton2000 ?

Automaton2000: i still have a lot of people in the chat

Default avatar.png ngwoon: kk

N_Flamel: Hi, Automaton2000

Automaton2000: to see the test cases just give a pass/fail but you get used to the new rules

N_Flamel: What was that Automaton2000?

Automaton2000: but u can use it for cg

N_Flamel: Automaton2000, now you're not even making any sense

Automaton2000: the only reason i can think of