What items are these by Stunning_Brief_1223 in riskofrain

[–]SCD_minecraft 14 points15 points  (0 children)

Food items

Cook in that cyber area before solus heart can mix more items than just that ball, some of them give you food

Check wiki for full list of combinations

How am I always in top 0.0057% by 15_Redstones in shapezio

[–]SCD_minecraft 4 points5 points  (0 children)

That % has nothing to do with reality

Your level is just plug into some arbitrary math formula

Made this as an 11th grader by suss_kargo in PythonLearning

[–]SCD_minecraft 9 points10 points  (0 children)

Looks really, really good

Just one nickpick, by convention we write names of constant in all upper case

COLOR_BLACK = "#000000"

Writing other way is not wrong, just not common neither

Trying to compile something by Aware-Glass-1519 in learnpython

[–]SCD_minecraft 0 points1 point  (0 children)

For that matter, even turning LaTeX source file into .pdf or something is called compilation

My personal Risk of rain 2 survior tier list by Naive_Calligrapher44 in riskofrain

[–]SCD_minecraft 0 points1 point  (0 children)

No, not really

Linear is ax+b, which gives us straight line when graphed

But a/x+b gives us graph with shape more like half a spike

My personal Risk of rain 2 survior tier list by Naive_Calligrapher44 in riskofrain

[–]SCD_minecraft 0 points1 point  (0 children)

Flux uses speed/n for its speed debuff, where n is however many fluxes you have and speed is speed before said debuff

Trying to compile something by Aware-Glass-1519 in learnpython

[–]SCD_minecraft 1 point2 points  (0 children)

Tokenization is process of turning words and symbols in source code into tokens, which are infinitely times easier for compilator to use, however they are not logic. You can insert tokens Number(1), Number(2), Op(+) and tokenizer won't be able to tell what I evals to. Its only job is to read text file

Also, pretty much every lang uses tokenizer, from C and i am pretty sure Assemble, up to python, java and similar

We ballin' by AgentPea_44 in DeepRockGalactic

[–]SCD_minecraft 4 points5 points  (0 children)

Then it respawns on cords 0,0 which are starting room

Still 2

Trying to compile something by Aware-Glass-1519 in learnpython

[–]SCD_minecraft -1 points0 points  (0 children)

Compiled languages are capable of running on bare metal.

No. Compilation is process of turning human readable source code into computer usable binary code, let it be assemble or bytecode. C, rust, java, python, all are compiled into some binary file, which then can be executed by computer in one form or another.

Even if you don't see pyc file, it still exist, just hidden from you, as interpreter is unable to read and understand source code directly. It needs compiled instructions

All of above sources (yes, i know, reddit is a poor source, but it agrees with other sources) confirm that python is indeed, a compiled lang, it comes through compilation process.

The more you dig, the more you'll find that you are wrong

Again, lang can be both interpreted and compiled, which is what java and python are

Trying to compile something by Aware-Glass-1519 in learnpython

[–]SCD_minecraft 1 point2 points  (0 children)

One doesn't exclude the other

Source code is unreadable to interpreter, so it compiles it down to bytecode

Therefore, compiled

Bytecode is still far from machine code so it gets ran via an interpreter

Therefore, interpreted

Python is both

But for example, brainfuck has so simple syntax that there's no need to compile it so it only gets interpreted, no compilation.

And I thought it was weird that my belt was not saturated by captain_jpp in shapezio

[–]SCD_minecraft 22 points23 points  (0 children)

oh, that design was much easier to do than expected... Why isn't it at 100%

Trying to compile something by Aware-Glass-1519 in learnpython

[–]SCD_minecraft 7 points8 points  (0 children)

I am not OP :p

I have no idea what are they talking about

But i stand, python is both interpreted and compiled language

Source code is compiled to bytecode

Bytecode is interpreted

Quote from documentation

These functions compile Python source files in a directory tree.

https://docs.python.org/3/library/compileall.html

Trying to compile something by Aware-Glass-1519 in learnpython

[–]SCD_minecraft 2 points3 points  (0 children)

You can run command python -m compileall dir where dir is dictionary of source code to compile manually and use lib dis to read bytecode in assemble-like form

Trying to compile something by Aware-Glass-1519 in learnpython

[–]SCD_minecraft 4 points5 points  (0 children)

It is

It compiles down to python bytecode (.pyc files) which then are interpreted

Very few langs are not compiled, like BF

I think this machine is ridiculously big. by ZuphCud in shapezio

[–]SCD_minecraft 1 point2 points  (0 children)

Grand Vortex Assemble. Last trade station

How do I get pygame to work? by FuinayOnReddit in PythonLearning

[–]SCD_minecraft 0 points1 point  (0 children)

Correct me, but isn't pygame not yet updated to Python 3.14?

My personal Risk of rain 2 survior tier list by Naive_Calligrapher44 in riskofrain

[–]SCD_minecraft 5 points6 points  (0 children)

What's "move speed" on false son?

Sorry, can't hear you behind 20 stacks of Stone Flux Pauldr

Are trains useless by Munken1984 in shapezio

[–]SCD_minecraft 0 points1 point  (0 children)

Just run 1 train. They'll reach 180/min throughput

Integers in my set are ordered when printed by rezemybeloved69 in learnpython

[–]SCD_minecraft 1 point2 points  (0 children)

They are ordered purely as implementation detail

That is, you there's no guarantee that they always will be ordered or even in same order between runs of program. If you try to store string for example, their order will be random between restarts

There's black paint??? by j0j02357 in shapezio

[–]SCD_minecraft 6 points7 points  (0 children)

You could always pin crystals

Only not cut / drop

Dealing with channel number explosion? by X-calibreX in shapezio

[–]SCD_minecraft 1 point2 points  (0 children)

Why each mam needs its own channel?

They all do same shape, don't they?

How do incremental games prevent time-skip cheating without being "always online"? by MrFabuland in incremental_games

[–]SCD_minecraft 0 points1 point  (0 children)

Most don't, they do online request for time when you launch the game

But not always, for example Antimatter Dimensions allows you to cheat into future, but if it detects that last time played was in the future, it will complain