Chat:World/2021-12-02

From CG community
Jump to navigation Jump to search

Default avatar.png MynameisDuy: oh no

Default avatar.png MynameisDuy: this statement is too hard for me

UZUHAMA: uh oh

UZUHAMA: Sometimes, you get hard one

Default avatar.png MynameisDuy: the last compete was hard

Default avatar.png MynameisDuy: but this one

UZUHAMA: even harder?

Default avatar.png MynameisDuy: it is VERY VERY HARD

UZUHAMA: Oof

UZUHAMA: Well, you just gotta try your best

Default avatar.png MynameisDuy: ok!

UZUHAMA: Even if it's not successful

UZUHAMA: Because that how you get better

Default avatar.png MynameisDuy: http://chat.codingame.com/pastebin/8e11557e-87ec-480b-a810-96d2361b1941

Default avatar.png MynameisDuy: this is output

UZUHAMA: Bruh

UZUHAMA: You have to code output that?

Default avatar.png MynameisDuy: yes

Default avatar.png MynameisDuy: reverse mode

UZUHAMA: In fifteen minutes????

UZUHAMA: Oh my

Default avatar.png MynameisDuy: i have to input the up and down row

UZUHAMA: I haven't got the slightest clue

Default avatar.png MynameisDuy: it is too hard

Default avatar.png MynameisDuy: im giving up ;-;

UZUHAMA: Hey

UZUHAMA: Try using nested for loop

Default avatar.png MynameisDuy: wut?

Default avatar.png MynameisDuy: im using c++

UZUHAMA: Are there no nested for loop in c++?

Default avatar.png MynameisDuy: not really

Default avatar.png MynameisDuy: 4 minutes left

UZUHAMA: Oh no

UZUHAMA: Did anybody else solved it?

e_fishel: hello guys : D

Default avatar.png MynameisDuy: no

e_fishel: (: D)

UZUHAMA: Hello

e_fishel: o_o

ZXC01: hi im back

Default avatar.png MynameisDuy: im giving up o_o

Medoo: halo

UZUHAMA: Oh no :((

ZXC01: you two playing coc?

UZUHAMA: No

UZUHAMA: Duy is playing

ZXC01: oh

ZXC01: whats the q

UZUHAMA: And he/she got super hard one

ZXC01: lol

Default avatar.png MynameisDuy: im a boy

Default avatar.png MynameisDuy: https://www.codingame.com/clashofcode/clash/20984273b26dad7b5cf481d62115a649fd5b087

ZXC01: now most is damn hard

Default avatar.png MynameisDuy: join if you guys wanna play

ZXC01: i dont use c++

Default avatar.png MynameisDuy: oh ok

UZUHAMA: You can always change language

UZUHAMA: what

ZXC01: he set it to only c++

UZUHAMA: Oh

Default avatar.png MynameisDuy: https://www.codingame.com/clashofcode/clash/209842837c6c78c454a603aedc5026bf7e71e5e

Default avatar.png MynameisDuy: join now

ZXC01: ok

UZUHAMA: My goal is just to finish it

Default avatar.png MynameisDuy: start?

UZUHAMA: I guess yeah

Default avatar.png MynameisDuy: wait

Default avatar.png MynameisDuy: my friend

Default avatar.png MynameisDuy: ok he joined

UZUHAMA: gogo

ZXC01: http://chat.codingame.com/pastebin/461c5a0f-652c-4d19-b01e-ab1f7772baf1

ZXC01: whats wrong...

Dren: isn't ord already an int?

ZXC01: no.....

ZXC01: i got 80%

Dren: I don't know the challange so I can't tell the problem

Dren: but you can probably just write that as sum(map(ord,s))/len(s)

ZXC01: use acii value added up from a string to divide by the length of the string and round it off

ZXC01: wait what?????

ZXC01: so short?

Dren: map(ord,s) will iterate through the string and turn the letters into the number ord returns

Medoo: wow coool

ZXC01: wow thanks

Dren: if you have a string like '1434234'

Dren: and you want to take every digit

ZXC01: but the string i thought is letters?

Dren: you can also use map(int,num)

Wontonimo: Hearthbell nice bronze pod racing bot

Hearthbell: Oh thanks Wontonimo! I found this site earlier today and fiddling around with the bots is pretty fun

Wontonimo: i've never seen your tactics before. nice opening moves

Wontonimo: my first intro to this site was the mars lander series https://www.codingame.com/training/medium/mars-lander-episode-2

Wontonimo: there is also a discussion board for each of the multis where people discuss ideas and strategies. For pod racing it is here https://www.codingame.com/multiplayer/bot-programming/coders-strike-back/discuss

Hearthbell: Lol I'm not sure if I would call them tactics, I just set it to try and bump in to the opponent if they're not too out of the way. The game and board look interesting, I'll check them out!

Default avatar.png noobestnoob: long time, no message...

Default avatar.png Javsn: how to play Wood 2 League

Default avatar.png Javsn: need some help

Superwog1: no clue bud

DialFrost: hi guys

DialFrost: how do i shorten this

DialFrost: if gets==0;puts 0;else;a=gets.split();b=a.map(&:to_i);a.map!{|x|x.to_i.abs}.sort!;puts (b.include?a[0])?a[0]:a[0].to_i*-1;end

DialFrost: its in ruby

Superwog1: wat

DialFrost: code golf for temperatures

BlueArtemis: DialFrost you can call methods without parentheses if without a parameter

BlueArtemis: gets.split() --> gets.split

DialFrost: whoops

DialFrost: im not very fluent in ruby :/

BlueArtemis: and a[0].to_i*-1 can be shortened into -a[0].to_i

DialFrost: but if i do test case no.2 will fail

Superwog1: blueartemis are u 13

DialFrost: wait nvrm

DialFrost: anyone else can help shorten?

ZXC01: try a different method

DialFrost: thats part of the reason y i need help

ZXC01: o

ZXC01: i think you could delete the first part "gets==0;puts 0

DialFrost: then it can print 0

ZXC01: i think it could since the programe is finding the one nearest to 0

DialFrost: nope

DialFrost: it will mess up the code

DialFrost: the program starts printing random numbers in the list

ZXC01: oh

derjack: :upside_down:

DialFrost: any ruby pros out there?

DialFrost: *abit more refined

DialFrost: if gets==0&&0;else;a=gets.split;b=a.map &:to_i;a.map!{|x|x.to_i.abs}.sort!;k=a[0];p b.member?(k)?k:-k.to_i;end

Default avatar.png PATTRIM: thx for ans

ZXC01: lol

ZXC01: its only a part

DialFrost: er no its not

DialFrost: its the full length code

DialFrost: :/

ZXC01: wow thx

ZXC01: jk

DialFrost: atlthough the code is too long

DialFrost: rank 700/900

DialFrost: rubbish

ZXC01: why you use ruby

DialFrost: its short

DialFrost: although im figuring out how to remove a big chunk of my code

ZXC01: but code golf are seperated

DialFrost: 1# is 29 chrs

DialFrost: in perl

ZXC01: the languages

Default avatar.png FlyingWormOfPower_efa8: cheers banach

DialFrost: ye

DialFrost: the more langauages u code in

DialFrost: the more cp u get

ZXC01: so i ony use py

DialFrost: any ruby pros pls pm me

DialFrost: lol

ZXC01: peoples onlie:

ZXC01: http://chat.codingame.com/pastebin/98966945-42f8-4d81-8320-eae432cb4331

RandomAustralian: Ok ouch

RandomAustralian: Dont include me

RandomAustralian: then

ZXC01: ...

DialFrost: anyone?

5DN1L: You may get some inspirations from the published solutions under the practice version of the same puzzle

DialFrost: practice versions???

5DN1L: https://www.codingame.com/training/easy/temperatures/solution

DialFrost: oh ty 5DN1L!

Uljahn: you're supposed to compete by yourself, that's the point of a competition, and if you're too lazy to learn ruby just don't use it

DialFrost: i alr learnt ruby kinda

Uljahn: clearly not enough

derjack: you cant codegolf in the language, you dont know the language

PMG_The_samurai: anyone excel in c :nerd:

Default avatar.png radioctiv: hey

Default avatar.png radioctiv: not exellent but prob can get job done

PMG_The_samurai: anyone execel in c

PMG_The_samurai: need a help

derjack: just ask the question

PMG_The_samurai: how can we se dynamic allocations to enter elements of an array

Uljahn: like vectors in c++?

PMG_The_samurai: malloc functions

PMG_The_samurai: http://chat.codingame.com/pastebin/7bd40ff5-d95b-4526-8e97-4e0f8ad73510

PMG_The_samurai: can some one excel in c solve this

Uljahn: why don't you want to solve it yourself? at least there is a plenty of resources on the web to borrow some ideas from

PMG_The_samurai: no iam problem with using malloc function thats why i ask i coudnot found any resources describe it much more clear

Milanovich: How do i make my code of 277 python characters into code of less than 200?

Default avatar.png DoomedDictator_ba8d: delete windows

Default avatar.png Aquajag: i'm new here. trying to find things in "learn" that will tell me how to manipulate strings or use arrays in python. cause the games all seem to assume I already know how to do that. but the search box brings up mostly games. how can i search the learning space?

Uljahn: use other sites and online tutorials to learn basics, then come back to practice

Default avatar.png Aquajag: ok. well i came here because when i googled places to learn coding it suggested this site. But I'm finding this site isn't about learning, it's about practice? any suggestions on places to learn?

Milanovich: w3schools imo

Ajaiy: You can find a book about your language in https://books.goalkicker.com/ (if you are ok with books)

Default avatar.png Aquajag: generally I like books! but i was looking for something book-free this time around

Default avatar.png Aquajag: thanks for the suggestions

derjack: codeacademy? kaggle?

derjack: https://www.learnpython.org/

Default avatar.png Aquajag: i'll check kaggle. i am trying codeacadamy, but it seems to think i should sit through an hour of "why coding is a good thing to learn and how to get a job with it" first.

Uljahn: https://diveintopython3.net/ https://github.com/ubarredo/LearnPythonTheHardWay

Uljahn: also learn The Zen of Python and PEP8

Default avatar.png Aquajag: ty for all the suggestions

Default avatar.png C26_1: @all

Default avatar.png C26_1: I've made a questions on StackOverflow

Default avatar.png C26_1: https://stackoverflow.com/questions/70200015/how-to-inverted-a-password-function-maker

Default avatar.png C26_1: I only want to hope that cryptography will be much more easy to learn

Default avatar.png C26_1: So I make a question

Default avatar.png C26_1: And new method

Default avatar.png C26_1: If you have time (for me), please click the yellow-link that I have post here

Default avatar.png C26_1: #It is not a fake link to troll or something, it has the word stackoverflow in there

Default avatar.png C26_1: That's all I have to say about

Default avatar.png C26_1: WHAT!!!!!

Default avatar.png C26_1: I've just posted a question in Stackoverflow a minute ago and it closed my question

Default avatar.png C26_1: It said that my question need to be more focused

Default avatar.png C26_1: http://chat.codingame.com/pastebin/6bb27241-b989-4506-9974-10d7cd3dd81e

Uljahn: oof

derjack: oO

Manjius: are u asking how to reverse ur method?

Manjius: u said u wrote an encrypt function but the functions name is decrypt im so confused

BlaiseEbuth: That's a feint!

P0sandu: https://www.codingame.com/clashofcode/clash/2099127bb20652287a063c9a0f7dc11d3e3ca29

P0sandu: join

Uljahn: P0sandu: don't post clash links here, use #clash channel

P0sandu: ok sorry

P0sandu: #clash

P0sandu: #test

Uljahn: just click it or use /join clash

GER-NaN: I read that pastebin and I dont even see a question in it.... maybe thats why

Mortis_666: can i create a multiplayer game with python?

Uljahn: on CG? no

Default avatar.png dirri: shortest code is the most stupid shit i ever seen

Default avatar.png dirri: congrats who ever added that to clas

eulerscheZahl: sounds like a challenge: get maven to compile python and upload it here

BlaiseEbuth: Another c# coder... :smirk:

eulerscheZahl: thank you for being so open-minded

Mortis_666: 😢😢

Default avatar.png dirri: im done playing that shit

Default avatar.png dirri: rank 700 in 2 days

Default avatar.png dirri: but cant go further

Default avatar.png dirri: cz of this useless invention

Uljahn: genuine clash experience

BlaiseEbuth: :rofl:

GER-NaN: :sob:

Default avatar.png dirri: check the last notification

Default avatar.png dirri: second place with 1:16 and 62 chars

Default avatar.png dirri: first place 8:18 ad 56 chars

Uljahn: oO

Default avatar.png dirri: what is that? a competition ?

eulerscheZahl: last notification. Superwig1 is following me. good to know

BlaiseEbuth: Well. Yes ?

Default avatar.png dirri: he spend 8x more time

Default avatar.png dirri: for only 10 chars improvement

Default avatar.png dirri: actually 6

Uljahn: bruh

GER-NaN: thats what you should do. stop crying

eulerscheZahl: actually 6.55 as much time, not 8 times

BlaiseEbuth: Oh. That's the fact that thinking people do beter than fast ones that trigger you? :smirk:

eulerscheZahl: you are free to use the remaining 13min to go online and look up some stuff of your programming language of choice to get it shorter

Uljahn: Automaton2000: turtle

Default avatar.png Automaton2000: what do you mean by that

eulerscheZahl: but surely you spent 2 days on it already, so you are mastering the subject and i shouldn't tell you what to do

Mortis_666: bruh what is kotlin

eulerscheZahl: language from jetbrains teams

Uljahn: java for codegolf

Westicles: dirri, as ombudsman I would be happy to arbitrate if you file a formal complaint

eulerscheZahl: compiles to JVM, as does Java. so they can be combined

BlaiseEbuth: You can use clojure too. :3

Uljahn: or scala

eulerscheZahl: no one should ever use clojure

BlaiseEbuth: :(

Mortis_666: is the kotlin the only way to make a bot programming game?

GER-NaN: can code make api calls over the internet when in the Arena?

eulerscheZahl: any JVM language works

eulerscheZahl: most use Java to create games here

Mortis_666: hmm ok

eulerscheZahl: no internet connection GER-NaN

BlaiseEbuth: Of course GER-NaN, very useful to use external super-computer for NNs.

Mortis_666: o i saw ur dice duel game is 97.3% made with js

GER-NaN: hmm ok thanks, guess someone already thought of my idea.... ima dummy

eulerscheZahl: because i included that 3D library by copy-pasting the entire thing

eulerscheZahl: the player interaction part is Java

Mortis_666: that game is op

Default avatar.png dirri: how to delete account?

eulerscheZahl: i spent some time to get the UI working that way. it was messing with my brain really hard

eulerscheZahl: https://www.codingame.com/settings scroll to the bottom dirri

BlaiseEbuth: Yeah. Because clashs are the whole platform ^^

Default avatar.png dirri: cool ty

eulerscheZahl: when you rotate a die, you rotate around the internal coordinate system. but this is different to the external one so you can easily mix that up

Westicles: dirri, I will also delete your complaint ticket

GER-NaN: dirri, do some Bot Programming, its much funner

GER-NaN: than challenges

eulerscheZahl: https://www.codingame.com/multiplayer/bot-programming that's where CodinGame shines

eulerscheZahl: and as long as you stay under 100k chars, you are fine

eulerscheZahl: oh, dirri left the chat

Westicles: he delete

Mortis_666: 100k

Mortis_666: lmao

BlaiseEbuth: Just enough for C# base code...

GER-NaN: nah, i am constantly hitting that 100k limit

Mortis_666: (╯°□°)╯︵ ┻━┻

Mortis_666: cool

Mortis_666: gtg bye

Westicles: dang, some guy did my dawg puzzle in essentially one line of python + some io

Westicles: I can't figure out if python is some super-language, or if the python users here are just geniuses

Westicles: or perhaps both or neither

Default avatar.png XmerpX: this website showed me how bad i am at making code

Ajaiy: which one?

jacek: every one :v

Coderboi270: hi

Default avatar.png XmerpX: hello

Coderboi270: hi

Default avatar.png XmerpX: i did the codecademy java course and i cant do a thing on here

5DN1L: What have you tried here so far?

Default avatar.png XmerpX: mad pod, random challenges, clash of code, and now tic tac toe

5DN1L: Have you tried any of the practice puzzles? https://www.codingame.com/training/easy

Default avatar.png XmerpX: yea stuff that i make just doesnt work

Default avatar.png XmerpX: im going to keep trying and hopefully learn more

5DN1L: Maybe try the easier puzzles with hints first, such as https://www.codingame.com/training/easy/the-descent

5DN1L: https://www.codingame.com/ide/puzzle/power-of-thor-episode-1

5DN1L: You can click the HINTS button on the left to get hints if needed

Default avatar.png XmerpX: thanks

jacek: :+1:

jacek: some quite experienced people struggle with the inputs/outputs thing here at first

Default avatar.png XmerpX: what confuses me so much is printing numbers makes games run. or printing words does

Coderboi270: Can someone help me

5DN1L: be specific in the type of help you need

Coderboi270: mad pod racing

Default avatar.png XmerpX: well thank you for the help my class is over so i gtg

Coderboi270: the 2nd boos

5DN1L: the 2nd boss boos...

5DN1L: ok, what's the problem about the 2nd boss?

Coderboi270: i cant win

jacek: are there some hints? i think there was something about angle < -90 or 180

Coderboi270: idk

5DN1L: the thrust should be set based on the angle

5DN1L: does your code consider that?

Coderboi270: i have no clue

5DN1L: what's the logic of your current code?

Coderboi270: what do you mean by that

5DN1L: does your output change based on the inputs?

5DN1L: or does your code always output the same numbers no matter what?

Coderboi270: I think it does change

5DN1L: like how

Default avatar.png tutopiw: hi

Default avatar.png MynameisDuy: hi

Wontonimo: hi 5DN1L , Coderboi270 , tutopiw , and MynameisDuy. What's everyone working on?

jacek: should have update the arch more frequently...

Wontonimo: hey Coderboi270 , you have to increase the speed to 80 or 100 to beat boss 2. Also you have to use the new submit button

Wontonimo: arch jacek?

jacek: archlinux

jacek: after update some graphics fail

Wontonimo: why archlinux instead of an alternative like ubuntu?

eulerscheZahl: arch doesnt try to force snap on you

jacek: eeyup

Wontonimo: wow, i'm so out of the loop <loop>inside</loop> outside wontonimo

eulerscheZahl: snap is a software manager - like apt-get or pacman

jacek: ubuntu seems quite proprietary

eulerscheZahl: i'm still using ubuntu (but not their default gnome interface)

eulerscheZahl: but i don't understand some steps they are taking

eulerscheZahl: evolving like CG does

jacek: are they renaming stuff?

Default avatar.png LE_Shiol: guys what is the easiest to learn coding language?

Kanerix: python i think

Default avatar.png LE_Shiol: okay, thank you

Wontonimo: nope, I'd say scratch.mit.edu is the easiest

Wontonimo: seriously, if you've never programmed before really consider it. It looks like a kids toy but you can make full physics simulations with it. It is turing complete

Wontonimo: then once you understand conditions and loops, go to something like python or javascript

Default avatar.png LE_Shiol: Oh, okay thanks for the tip

Default avatar.png LE_Shiol: Guess, i'll learn scartch first

Wontonimo: what is your background with programming? have you taken any courses? and what is your highest level of math?

Default avatar.png LE_Shiol: Non

Wontonimo: how about math? (the reason i ask is because there are a lot of reusable concepts)

Default avatar.png LE_Shiol: im gonna be honest im just a 12 y/o child

Default avatar.png LE_Shiol: so no

Default avatar.png LE_Shiol: im gonna need to learn scartch, im still too dumb

Wontonimo: okay. Scratch may be a very happy place for at least the first couple months!

Default avatar.png LE_Shiol: Okay, thank you

Wontonimo: it's really fun, but don't let that make you think you are not learning

Default avatar.png LE_Shiol: Okay, i always wanted to learn how to code

Wontonimo: just make sure you spend time trying to add loops and conditions!

Default avatar.png LE_Shiol: Okay

Default avatar.png LE_Shiol: I gotta sleep now its 2:27 am of night.. im gonna get sick :P

Wontonimo: l8r

Default avatar.png LE_Shiol: okay

5DN1L: A more ancient language for beginners is LOGO. I don't know whether LOGO is still being used now :joy: https://youtu.be/1zMtYi2TNTA?t=229

Wontonimo: I went to a coding camp as a child and LOGO was the language we learnt

eulerscheZahl: > are they renaming stuff? yes jacek. they have default tools like nautilus and call it "Files" instead

GER-NaN: wow, removing my "preferred" placement of radars and letting a fill algorithm boosted me into gold league..

jacek: crystal rush?

GER-NaN: yea, its a fun game

Illedan: eulerscheZahl?

Default avatar.png Abdirizaq: clash of code is hard to start from the beginnign

Default avatar.png Abdirizaq: like i dont knew nothing and doing clash of code

Default avatar.png Abdirizaq: know*

jacek: this site isnt for complete beginners

Default avatar.png Abdirizaq: yea i guess

Default avatar.png Abdirizaq: how long it took u to learn coding?

Illedan: It is for NP-complete beginners

Wontonimo: i'm still learning and i've been at it for 40 years

Default avatar.png TeslaRam: hi do i get xp for completing clash of code?

Default avatar.png Abdirizaq: im going to start uni this January and i want to learn from now

Wontonimo: but more practically, be patient without yourself. It'll be about 100 hours of practice until the basics sink in, another 1000 hours of practice until it starts to be fluid

jacek: no. only one-time achievements like 50 clash of codes completed

Default avatar.png TeslaRam: thanks

BlaiseEbuth: patient without yourself? :thinking:

Wontonimo: *with

Default avatar.png Abdirizaq: is 1 month enough to learn coding?

Default avatar.png Abdirizaq: from zero experience

Wontonimo: there are 2 kinds of people in the world, those who can work with incomplete and incorrect data.

Wontonimo: how good do you need to be Abdirizaq ?

jacek: alphazero mastered go in 4 hours. srely you can do things from zero in 1 month

Wontonimo: if your goal is to print "hello world" on the screen, then yes, 1 month is enoug

Default avatar.png Abdirizaq: im good at printing stuff in c++

Default avatar.png Abdirizaq: like example

GER-NaN: nice! :grinning:

jacek: Abdirizaq instead of clash of codes, try easy puzzle

jacek: https://www.codingame.com/training/easy/the-descent or https://www.codingame.com/training/easy/temperatures

Default avatar.png Abdirizaq: thx ill try it now

jacek: or https://www.codingame.com/training/tutorial/onitama :v

Wontonimo: the onitama is a toll link Abdirizaq

Wontonimo: I do like how you changed the url to say "training/tutorial" :D

Default avatar.png Abdirizaq: lol

Default avatar.png Abdirizaq: I still cant solve the first link

Default avatar.png Abdirizaq: lol

jacek: you have hints on the left

jacek: even with solution if needed

GER-NaN: Abd, here is a solution in c# if you want some ideas https://pastebin.com/WiG0M72i

Default avatar.png Abdirizaq: finally did :)

jacek: :tada:

Default avatar.png Abdirizaq: this will help when I find nice book about C++

Default avatar.png Abdirizaq: this is a good practice

Default avatar.png Abdirizaq: ill probably improve in 1month

jacek: :+1:

jacek: is uni using c++?

Default avatar.png Abdirizaq: books help right

Default avatar.png Abdirizaq: yes in uni c/c++

jacek: dunno. i learn by doing, not only reading

Default avatar.png Abdirizaq: give some advice how did u learn coding ?

Default avatar.png Abdirizaq: im sry for asking a lot of questions

jacek: it was so long ago i dont remember. i started before i was 10

jacek: i used... delphi, but it was mostly point and click, arranging buttons and make them show some text

BlaiseEbuth: :older:

BlaiseEbuth: :older_man:

jacek: i also remember writing in some basic for nes clone

jacek: https://obrazki.elektroda.pl/2830948600_1398696242.jpg

AntiSquid: nice url trick, how come this works ? https://www.codingame.com/training/tutorial/ocean-of-code

AntiSquid: and wow games do get renamed

struct: you started programming before you were 10?

struct: damn

jacek: i was antisocial before that

AntiSquid: on the day he was a born a portal opened and he rolled out with his computer desk on wheels

struct: I probably havent even touched a pc by that age

jacek: they werent invented yet?

struct: they were

nyloc: ;) I remeber my first pc at the age ot 10 a pentium 133 MhZ with a 2GB SCSCI HDD and 128MB memory. As if it was yesterday :P

struct: maybe a gameboy if it can be considered a computer

struct: gameboy color I think

struct: or advanced

nyloc: I was so happy when i upgraded my win 3.11 to win 95 all on my self

jacek: 128MB? seems a lot

jacek: my first pc was p3 450MHz with 64MB

Uljahn: my first programmable calculator had only 104 cells of code memory

struct: no idea what my first pc specs were

nyloc: Yeah, my dad payed for that memory and a cd burner as I promised to digitalize his dvr stuff and all his LPs

nyloc: I think I still owe him as I never finished

jacek: you can buy him 128MB memory now

Default avatar.png PhantomChild_80c1: hello friends i come with pandas

Default avatar.png PhantomChild_80c1: tell me all your woes

jacek: oO

nyloc: I like pandas

Uljahn: i like numpy

nyloc: and dask

nyloc: ;)

Default avatar.png PhantomChild_80c1: your mother is a padna

Default avatar.png PhantomChild_80c1: im sorry i tell the truth

jacek: oh my

visva: stop the hate

Default avatar.png JONMS: anyone else here getting the a bad feeling in their body just thinking about coding?

Default avatar.png stagomon: i get a bad feelnig thinking about no pandas

Default avatar.png JONMS: well, i could stop driving my diesel

Default avatar.png JONMS: maybe it'll save the rainforest

Default avatar.png stagomon: do you also eat fried panda

Default avatar.png stagomon: pandas are yum

Default avatar.png stagomon: im sory but the rainforests are made of bamboo

Default avatar.png stagomon: calculate the f = ma of deez

Default avatar.png stagomon: yes

Default avatar.png stagomon: i see

Default avatar.png stagomon: nobody knows the answer

Default avatar.png stagomon: because deez are too large

surgutti: at which past contest you had the most fun?

surgutti: i'm looking for something to do

jacek: fc2020?

Westicles: ice and fire

surgutti: whats the meta in fc2020?

**AntiSquid nervously searches to see which one is fc2020

DomiKo: witches

jacek: witch

DomiKo: there is no meta in fc2020

jacek: try to win by making opponent lose

surgutti: need to note

jacek: :nerd:

AntiSquid: none of these games have a meta, do they ?

surgutti: first in ranking isn't meta?

AntiSquid: maybe spring2021 has a meta i guess

AntiSquid: not when it's all about fastest search, no surgutti

surgutti: faster doesnt mean better

jacek: thats what she said

AntiSquid: the word meta as it is generally used in online games doesn't make sense here

surgutti: so its only about luck

AntiSquid: yes, we are playing bingo in here#

Westicles: kids say meta when they are asking for the winning strategy?

AntiSquid: yes Westicles

Westicles: I think they just don't know any other words

AntiSquid: well strategies

Westicles: like chuck norris only with a meta button and a meme button

surgutti: i think in greek meta means to excel

AntiSquid: beyond

AntiSquid: you should have paid attention to zuck's new ad

surgutti: since when did zuck change company name to meta?

surgutti: im somehow outdated

jacek: ok boomer

AntiSquid: https://youtu.be/b9vWShsmE20?t=50

AntiSquid: it can make jokes

surgutti: imagine meeting in real

  made by meta gang

jacek: :scream:

AntiSquid: is aCat your teacher surgutti ?

surgutti: nope

surgutti: im in highschool now

surgutti: & 2 years till end

AntiSquid: your profile says uni of worclaw

surgutti: because i'm going there next

Westicles: what's the meta on worclaw?

DomiKo: be better than warsaw

jacek: Nyanyan W and L? https://www.codingame.com/share-replay/594337524

struct: o.o

Nyanyan: Oh, that seems something went wrong. I'll fix it. Thanks!

JOKEER: a

Default avatar.png Abdirizaq: where should i find easy practices for beginners

Default avatar.png C26_1: @Abdirizaq, it should be w3schools

Default avatar.png Abdirizaq: ok thx

Default avatar.png C26_1: There you can find the lesson and at the end of any lesson, you'll find the practice box

Default avatar.png Abdirizaq: how long it will take you the lessons

Default avatar.png C26_1: well

Default avatar.png Abdirizaq: 1 month should be enough right to get better at coding

Default avatar.png C26_1: It depends on your knowledge

Default avatar.png C26_1: It you're new, read the lesson slowly as muchas possible

Default avatar.png C26_1: Only very know about the small, you can know the large

Default avatar.png C26_1: Good luck

Default avatar.png C26_1: @Abdirizaq, There's something that I should advice to you

Default avatar.png C26_1: Do not ever to jump-learn

Default avatar.png C26_1: That means you skipped a lot of lesson between two of them and you suddenly so confused

Default avatar.png C26_1: So if you new, don't try hard topic like Neural Network, or Something higher that that

Default avatar.png C26_1: Um

Default avatar.png C26_1: Except that do not asking on Stackoverflow

Default avatar.png Abdirizaq: should I finish the lesson first or do lesson plus practice

Default avatar.png C26_1: Some of the programmers will laugh at you or maybe very angry about your question if you ask very simple

Default avatar.png C26_1: @Abdirizaq

Default avatar.png C26_1: As I mentioned before, you should read the lesson first

Default avatar.png C26_1: When you know you can deal with it, do the practice

Default avatar.png Abdirizaq: ok thanks

Default avatar.png Abdirizaq: @c26_1 i wouldn't take it seriously if someone laughs at me cuz everyone started from where I am today

Default avatar.png Abdirizaq: if you going to learn something ignore the haters

Default avatar.png Abdirizaq: never let someone tell you can't do that

Default avatar.png Abdirizaq: im sorry but i am so motivations lol

Default avatar.png Abdirizaq: have*

Default avatar.png Abdirizaq: some*

n0b1e: good man

Default avatar.png C26_1: Um

Default avatar.png C26_1: @all

Default avatar.png C26_1: How can I make a mathematical expression in Stackoverflow post?

Default avatar.png C26_1: file:///D:/Dulieu/Downloads/CodeCogsEqn.gif

Default avatar.png C26_1: Wait

Default avatar.png C26_1: Sorry

Fluffeh: https://meta.stackexchange.com/questions/76902/how-can-i-write-a-math-formula-in-a-post

Fluffeh: first result on google

Default avatar.png C26_1: ok

Default avatar.png C26_1: That's the same post that I was searched on Google

Default avatar.png C26_1: But I'll try

Default avatar.png C26_1: Ah

Default avatar.png C26_1: I'll the solution

Default avatar.png C26_1: \[1345_{10}\]

Default avatar.png C26_1: This is the Latex Expression

Default avatar.png C26_1: You can embeded into Stackoverflow post

Default avatar.png C26_1: Yay!

Fluffeh: congrats

Default avatar.png C26_1: [1]: https://chart.googleapis.com/chart?cht=tx&chl=1345_%7B10%7D

Default avatar.png C26_1: It looks something like that

Default avatar.png C26_1: To embeded it: Type "![#tag][The label]

ZXC01: Hi

Default avatar.png C26_1: Hi

Default avatar.png C26_1: Wait

Default avatar.png C26_1: StackOverflow is so unfair

Default avatar.png C26_1: I need at least 10 reputations to upload an image

Default avatar.png C26_1: Hours of prepare and writing my post is useless

Default avatar.png C26_1: Thrown all of it into the river

Default avatar.png C26_1: @all

Default avatar.png C26_1: bye bye

Default avatar.png C26_1: I've taken a lot of frustrating this day

Default avatar.png C26_1: No hope for SOF anymore

UZUHAMA: Does anybody know how to view all the puzzles I've solved?

Wontonimo: yes

Wontonimo: to see the easy puzzles https://www.codingame.com/training/easy

Wontonimo: and scroll to the bottom

Wontonimo: repeat for the medium, hard, and very hard

Wontonimo: Abdirizaq , how's it going?

UZUHAMA: Oh thx

Wontonimo: hows it going UZUHAMA ?

Wontonimo: what puzzles have you worked on lagetly?

UZUHAMA: Um, I re-solved Fax Machine, Descent, and Folding Paper for last few days

UZUHAMA: Also, I worked on Mad Pod Racing for little bit

Wontonimo: that's how you level up ! Awesome job

UZUHAMA: :DD

Thorcode: nice

Thorcode: won could you help me with brain fork?

Wontonimo: looks like there are about 3 people actively competing on mad pod racing right now. 2 in wood 2, 1 in bronze

Wontonimo: i haven't done brain fork

Thorcode: no

Thorcode: you got rank so high

Thorcode: in that puzzle

Wontonimo: oh, looks like i did lol

Default avatar.png Abdirizaq: @wontonimo so far not bad I finished reading first lesson

Thorcode: because you finish all of the certification

Default avatar.png Abdirizaq: in w3school

Wontonimo: oh, brain fork used to be called code of the relms or or something like that

Thorcode: that why I'm asking for your help

Thorcode: yep

Thorcode: I know that

Wontonimo: my solution isn't optimized or anything but it works

Wontonimo: i can tell you what it does at a high level, no problem

Thorcode: ok

Thorcode: thanks

Wontonimo: create a function that computes the cost of changing a given magic stone to the letter you need

Wontonimo: the cost includes all the commands to move there and rotate the letter to the one needed.

Thorcode: oh this is like the one I asked you

Wontonimo: use that to rank all the stones

Thorcode: I think I know how to do this

Wontonimo: then change the stone the ranks the least

Wontonimo: that 's pretty much all i do

Thorcode: this like the one that I ask how far from z

Wontonimo: it you want to take it to the next level, then do a search into the future

Thorcode: thanks

Wontonimo: I think you can get pretty high by using a BEAM search and calculating a solution offline

Wontonimo: haha, they renamed Bilbo to "Blub"

Wontonimo: poor Bilbo

Thorcode: oh tha t is the boy name

struct: Hi Wontonimo, are you currently working on any multi?

Wontonimo: nope

Thorcode: is the new string challenge is bot programming?

Wontonimo: i'm fantasizing about making the worlds best multi ever but making sure my expectations are so far out of reach that there is no point in even trying to start coding it

struct: would be hard to beat some of the games here

Wontonimo: my method ensures I don't have to do any work. It's ideal actually

struct: lol

Wontonimo: in all seriousness, i've gotten interested in shaders and compute shaders again

Wontonimo: have i coded any? nope. have i been practicing (like i tell others to do)? nope.

Wontonimo: what have you been up to struct?

struct: not much

struct: trying to find motivation to code :p

Wontonimo: yeah, me too

Wontonimo: I was looking at this https://ajanse.me/asciidots/demo-src/

Wontonimo: use the dropdown to pick counter

Wontonimo: it is a calculating circuit using ascii art. thought it would make a good puzzle ... but would have to make small changes so people don't just copy the code

struct: looks interesting

struct: but is not my beach

struct: I dont know if its an english phrase what I said

struct: but we use quite it portugal

struct: we use quite a lot*

Wontonimo: it hit the feels for me. reminded me of a game i played in 6th grade that was about laying down circuits

struct: you can even use the sdk I think

struct: to make graphic version for it

struct: if it passes

struct: but that might be a bit challenging

Wontonimo: yeah.

Wontonimo: i started working on this https://www.codingame.com/contribute/view/75474b51e6b3186ea493a8467395fbbefad7 but lost steam

struct: I see ascii art and I run

struct: sorry :p

Wontonimo: haha

Wontonimo: i get it

struct: Some people enjoy it though

Wontonimo: i suppose it could be changed to coloured blocks

Wontonimo: instead of ascii characters

Wontonimo: it would be the same thing

struct: Not sure you can change color on statement

struct: unless you use sdk

struct: WW was renamed to Amazonial

Wontonimo: so sad

struct: Maybe they will go to amazons instead when searching it :D

Wontonimo: yeah!

struct: maybe ill remake Othello

struct: and put better graphics on it

Wontonimo: and just update the same game or as a new game?

struct: The same game

struct: I should have released with book prevention

struct: but i dont care much

Wontonimo: i move river crossing out of WIP. Noone's been commenting and the upvotes have been nice

struct: as long as people have fun

Wontonimo: why book prevention? cuz you have had enough of MS's booking ?

struct: Not MS's fault

struct: Im just not really a fan of them

struct: This is why amazons starting positions are randomized

struct: instead of the default one

Wontonimo: I haven't tried to book. I should, to stretch my skills.

struct: There was a list with 13k starting positions

struct: I cant find the link

struct: But when it was suggested it was already too late

Wontonimo: well, if you only have a small amount of coding motivation .. you could try my new medium puzzle ;)

struct: linki?

struct: link*

Wontonimo: https://www.codingame.com/contribute/view/76758846c9b198dbc42714ff228933a2363a

Wontonimo: hey ZXC01 , you dm'd me about search race. so, you need to put the checkpoints in an array

Wontonimo: but the code you shared just concats them as a string

Wontonimo: nextx+=str(checkpoint_x)+' '

Wontonimo: instead you'll want something like

Wontonimo: checkpoints = [] # at the top

Superwig1: lists

Wontonimo: checkpoints.append( [checkpoint_x , checkpoint_y] )

Wontonimo: instead of

Wontonimo: nextx+=str(checkpoint_x)+' '

   nexty+=str(checkpoint_y)+' '

Superwig1: Wyy did someone change my name from superwog1 to superwig1?

ZXC01: then?

Wontonimo: http://chat.codingame.com/pastebin/1f684ccc-e904-42b3-8124-c546adc81399

Wontonimo: ^^ look there

ZXC01: ok

ZXC01: oh thx

ZXC01: i passed the test!

Wontonimo: oh, i just rewrote my bot using my search race bot using my new PID controller and drifting skills ! https://www.codingame.com/replay/594356040

struct: how many turns ahead do you searcH?

Wontonimo: 1

struct: nice

Wontonimo: and no search

Wontonimo: just a drift calculation

struct: looks good for 1 turn

Wontonimo: power 100 if no drift detected, power 20 if a drift is detected

ZXC01: oo

0

Wontonimo: hmm .. it doesn't do Tokyo drift well. https://www.codingame.com/replay/594356405

ZXC01: * *

__

Wontonimo: so sad https://www.codingame.com/replay/594356485

pmor: Wontonimo - thanks for your help yesterday. Couldn't find out what was wrong with my mcts, so I rewrote it a bit differently today. I'm now smacking MightyCarlo around :)

Wontonimo: AWESOME !!!

struct: My bot doesnt even get 100% Wontonimo

struct: for some reason

Wontonimo: what was it? did you ever find out or just a rewrite didn't copy the old problem

pmor: I have no idea what the issue was. Just rewrote it from scratch.

Wontonimo: that is some awesome dedication

Wontonimo: did you add unit tests?

pmor: I have unit tests but I couldn't figure out a good way to really debug the mcts

ZXC01: https://www.codingame.com/share-replay/594356618

pmor: I printed out the tree and analyzed it, but I still couldn't figure out what was wrong

ZXC01: worst code ever

Wontonimo: oh, nice replay ZXC01 !

ZXC01: ....

ZXC01: thats the worst ever

Wontonimo: that's actually really good, don't knock it. you are using the 3v steering PID correction

pmor: I did do some more optimizations and get ~35k iterations

Wontonimo: okay cow pmor ! that's awesome stuff

Wontonimo: you must be in legend now

Wontonimo: okay, if you want to add drift ZXC01 , the trick is to make a look like this

pmor: still finishing up the run, but i'm currently sitting #1

Wontonimo: for _ in range(4):

Wontonimo: and for each iteration through the loop just check if your car is within 600 units of the checkpoint

Wontonimo: if it is, switch a boolean flag to true

struct: https://www.codingame.com/replay/594356787

struct: not perfect

struct: but not bad

Wontonimo: then add your current velocity to your position

Wontonimo: and do that in that loop

Wontonimo: at the end of the loop, you'll have a flag that says if you will hit the next checkpoint in the next 4 rounds

ZXC01: ah?

Wontonimo: if you are, then change the index of the checkpoint you are targeting to be the next one like so

Wontonimo: target[(index+1)%len(target)]

Wontonimo: hey, that's nice struct. let me see if i can find my old solutions tokyo solution

Wontonimo: https://www.codingame.com/share-replay/594356942

DialFrost: hi guys how do i change what languages i code in the profile

Wontonimo: in your profile?

DialFrost: ye

Wontonimo: is that a thing?

DialFrost: like when u hover over somebody's naem

struct: in settings I think

struct: https://www.codingame.com/settings

Wontonimo: oh, i haven't selected any. i guess i don't know how to code

Default avatar.png PATTRIM: lol

struct: dont worry I also have clue how to code

DialFrost: thx struct

struct: Wontonimo should I release a 3d version?

struct: https://www.codingame.com/replay/594339143

Wontonimo: i like that version. 3d just seems like a distraction. if you are excited about it then DEFINITELY DO IT !

struct: well not excited per say

struct: I just dont like the rotation animation of that one

Wontonimo: make it explode and shake the table with a new one forming from the shattered pieces in a reverse entropy reconstruction

Wontonimo: lol

Wontonimo: jk. how were you thinnking of making it 3d? what library/tools would you use?

struct: same one that euler used

struct: I cant remember the name

struct: three js

struct: I think

Wontonimo: I used three.js for this little demo https://panchishin.github.io/shader/square_wave.html

Wontonimo: it's really easy for stuff like that

struct: yes I have tried it before

struct: I was gonna port some game with it

Wontonimo: not a whole lot harder to add shaders where i did this https://panchishin.github.io/shader/square_shade.html

struct: but I abandoned it

Wontonimo: what was the concept behind the game?

struct: its called laser chess

struct: also know as "keth"

struct: just another board game :p

Wontonimo: the angle in search race is true angle and not angle to next checkpoint !

Default avatar.png Ace1234: Wait, How do we make two console.logs?

struct: console.error

struct: to debug

Default avatar.png Ace1234: Ok

Wontonimo: copy the line

Wontonimo: ZXC01 , did you figure out how to do drifting, you would you like some more help?

Default avatar.png Ace1234: It wont work

Default avatar.png Ace1234: ;-;

ZXC01: leave mimi

ZXC01: wait sorry

**ZXC01 says sorry

**ZXC01 says lollllll

**Thorcode say bruh

**ZXC01 slaps everyone with a pancake

**ZXC01 banned moderators

ZXC01: lol

**ZXC01 unbanned moderators

Default avatar.png Ace1234: what

ZXC01: is it possible to key in '/'

ZXC01: as the first character?

ZXC01: /

ZXC01: oh

ZXC01: /

ZXC01: (╯°□°)╯︵ ┻━┻

ZXC01: (╯°□°)╯︵ ┻━┻

Wontonimo: okay, that's enough spam. you've been warned.

ZXC01: oh

ZXC01: just trying the fun comads

Default avatar.png MynameisDuy: hi

ZXC01: hi

Codyz: hi

Default avatar.png Rin_Smd: hi

OofButBetter: *simon say do a pushup

Default avatar.png MynameisDuy: im gay

Default avatar.png MynameisDuy: simon says im not gay

UZUHAMA: ?

Default avatar.png MynameisDuy: join :]

UZUHAMA: How do I join

Default avatar.png MynameisDuy: join a clash

Thorcode: hi DUy

Wontonimo: MynameisDuy - this is a public chat. be respectful. keep the conversation (mostly) about coding or codingame. generally stay on topic. You've been warned

Default avatar.png MynameisDuy: ;-;

Default avatar.png MynameisDuy: oh ik

Default avatar.png MynameisDuy: im sorry

Jerrasterix: Good Morning !!

ZXC01: hi jerra

Default avatar.png C26_1: http://chat.codingame.com/pastebin/05beef58-05fc-4ce0-84aa-342cd4c7a571

Default avatar.png C26_1: http://chat.codingame.com/pastebin/39d66702-32b5-46a3-afb4-e9eb352a78a8

Default avatar.png C26_1: Sorru

Default avatar.png C26_1: Sorry

Default avatar.png C26_1: This is the source code of my post, it has been deleted since I need 10 reputations to upload a image into the post

Default avatar.png C26_1: If you have time, you can read at the second link

Default avatar.png C26_1: StackOverFlơ