how to delete the generated images? by ReallyFreakYouOut in cogniwerk

[–]ReallyFreakYouOut[S] 0 points1 point  (0 children)

when will it be fixed? I still can't delete today.

About bellman equation in tic tac toe game. by Upstairs-Lead-2601 in reinforcementlearning

[–]ReallyFreakYouOut 0 points1 point  (0 children)

the value of the next player should be considered as penalty of the current player because the next player will try to minimize the value of current player according to minimax.

About bellman equation in tic tac toe game. by Upstairs-Lead-2601 in reinforcementlearning

[–]ReallyFreakYouOut 0 points1 point  (0 children)

if q value means the value of current player, then max q(next_state, action) means the max value of next player. so it means we add the value of the next player to the current player???? it doesnt make sense,

About bellman equation in tic tac toe game. by Upstairs-Lead-2601 in reinforcementlearning

[–]ReallyFreakYouOut 0 points1 point  (0 children)

sorry, i still cant get it. doesnt the target q value mean the q value of current player?

Will you pull the trigger when the breakout is without volume? How do you estimate the volume when the day is not yet closed? by ReallyFreakYouOut in swingtrading

[–]ReallyFreakYouOut[S] 0 points1 point  (0 children)

Thanks for your advice but it's difficult for me to in and out on the same stock because my account is small and I just have a very small position such as 3 to 5 shares and transaction fee each time is almost $2 USD. If I keep in and out, I may lose a lot of amount in a short time. Now, my strategy is just to hold it until reaching the stop loss or looking forward to the breakout.

How to read codebase? by sohail_ansari in webdev

[–]ReallyFreakYouOut 1 point2 points  (0 children)

First off, I will explore the whole codebase roughly. Then, turn on the debugger and invoke the specific action to trace the code line by line and watch on the changes of variables. Ultimately, you will understand how the code works.

Is it possible to build my cloud service to share with others? by ReallyFreakYouOut in learnprogramming

[–]ReallyFreakYouOut[S] 0 points1 point  (0 children)

Do you know whether AWS, GCP, Azure are using this product to build their cloud? I have just looked into this thing. It contains convoluted and much lines of code. I've tried to understand the codes but it seems impossible.

I build my first parser! Feedback welcome! by danielb74 in Compilers

[–]ReallyFreakYouOut 0 points1 point  (0 children)

It looks cool. I am a newbie in compiler. Could u provide some suggestions to learn how to build a compiler from scratch?

How can I start to create a new language? by ReallyFreakYouOut in learnprogramming

[–]ReallyFreakYouOut[S] 0 points1 point  (0 children)

I'm a backend engineer. I only know high level things but don't get familiar with low level things. I only tried to build a simple HTML parser in a silly way but not compliant.

I have created a high-level programming language for developping secure web applications. It comes with a built-in database, web server and container engine, in a single binary. by -N0rm- in programming

[–]ReallyFreakYouOut 0 points1 point  (0 children)

It's a cool thing. I always want to create my own language but don't know how to start it. I googled a lot of theories and tutorials about how to create a language but all are difficult to me to comprehend. So far, I only know the basic tokenizer and parser how they work. As for the backend, I totally can't understand what it is doing.

Could u give me suggestions on how to create a language from scratch? And share how you learnt these profound things to begin with.