- 162
- 11 999
SoichiZunea
Приєднався 21 бер 2017
Ain't professional, expect mistakes to happen.
How to redefine operations based on the class
How to redefine operations based on the class
Переглядів: 0
Відео
MemoryStore Introduction and Future Plans
Переглядів 1021 день тому
MemoryStore Introduction and Future Plans
Why do most applications more files than an exe
Переглядів 428 днів тому
Basically. Store properties, the end.
How to Set up a Class in Java
Переглядів 5Місяць тому
I was going to leave it as "How to setup a class", but I did the teaching video not too long ago, so it could be misunderstood. Anyways, more references W3Schools Java Classes section. W3Schools is very very highly recommended for beginners. If you have studied Java for awhile, definitely recommend biting the bullet and getting a certificate when u have enough spare money.
Word Problems and How to Solve them
Переглядів 1Місяць тому
I strongly recommend openstax and going through one of their physics books and trying out some of the problems to get better at word problems. Of course, you won't be a master, but you will understand which approaches to take and be less prone to error. If you are planning on being a physicist, well, get used to them.
How to teach FOR students
Переглядів 14Місяць тому
If you have any other suggestions, please do state them in the comments. I do know that the best approach to teaching is flexibility, because students change throughout and also yearly.
Combat for most games
Місяць тому
There is alot more to combat than I said, such as specifics for each category.
Slope of functions
Переглядів 24Місяць тому
The calculus subject is rather saturated on youtube. I think the plan was to read off my notes, but then I just decided to go and not do that. So idk the purpose of this video either..., definitely not how I wanted it to go.
How to convert from any base to any base
Переглядів 32 місяці тому
How to convert from any base to any base
Logical operators using math equations
Переглядів 32 місяці тому
The end decoder, yes I did realize it was incorrectly setup, just gotta change it a little bit, since it should return a table and not a value. Plus enable doesn't just mean it is on or not, it also defines whether all but one should be true OR all but one should be false. Unsure which is which though, it is confusing. Anyways, as with the previous video, this is merely to assist in understandi...
If statements using math equations
Переглядів 172 місяці тому
Heyo! The video is as the title says, although the usage case is very specific, where you have specified bounds and want different equations for each set of numbers. I must note that I don't know about equal to or less than or equal to, the same with not equal to, so the pattern may shift if you have to deal with those. I personally suggest testing using desmos or another graphing calculator an...
Game or novel idea
Переглядів 12 місяці тому
The video is mainly for giving ideas regarding games or novels and hinting towards both forms of entertainment being different. Games could be used to inspire novels, vice verca, but the issue is that their respective audiences may not enjoy the games or novels created through such a way. I would strongly suggest testing and making sure the game or novel is enjoyable to read or play. I also giv...
DataStoreCreator Module - Code Explanation
Переглядів 12 місяці тому
Hey! You can copy the game (www.roblox.com/games/18122511727/DatastoreCreator-Video) and take the modules as needed. Hopefully this helps some of y'all. If you have any questions, concerns, or otherwise comments regarding the content in or excluded from this video feel free to comment. I would be glad to further explain any section that I glazed over or was unable to properly explain.
What else can be done to the DataStoreCreator module
Переглядів 33 місяці тому
What else can be done to the DataStoreCreator module
DataStoreCreator Module - Brief Explanation
Переглядів 23 місяці тому
DataStoreCreator Module - Brief Explanation
Session locking is vital for roblox datastores
Переглядів 1023 місяці тому
Session locking is vital for roblox datastores
JSONEncode does not work for all tables
Переглядів 44 місяці тому
JSONEncode does not work for all tables
Log2 Extremely Rough Approximation - Using Bit Length
Переглядів 64 місяці тому
Log2 Extremely Rough Approximation - Using Bit Length
How to Document Functions on Roblox Studio
Переглядів 114 місяці тому
How to Document Functions on Roblox Studio
Number to number encoding and decoding methods for storage as int
Переглядів 34 місяці тому
Number to number encoding and decoding methods for storage as int
Dataset6 - how to read data that has been processed into a correlation matrix
Переглядів 65 місяців тому
Dataset6 - how to read data that has been processed into a correlation matrix
Dataset5 - working with many columns (Summing)
Переглядів 55 місяців тому
Dataset5 - working with many columns (Summing)
Copying swing elements in Java without clipboard
Переглядів 15 місяців тому
Copying swing elements in Java without clipboard
I think this is a really awesome method on teaching. The teaching system used in schools today has many flaws and this would really be such a good replacement
@@pacifiky That is how I personally learn, I separate notes from examples.
😭
i cant enter with the merchant, the door dont open
There should be a quest you have yet to complete. Presume you are already done with it by now, but if not, swordbloxonlinerebirth.fandom.com/wiki/List_of_Quests. The quest you need is 87, which is where you need to kill 10 Candy Crabs. The NPC is located near the outskirts of the Candy Corn Mountains, on a path, you can find it by taking the path left from spawn. I hope this helps.
change schedule indeed
STALKER
>:C
Whats the music called in the beginning?
I know not the name, but I do know I looked up "breakcore" on soundcloud and clicked one of the first playlists. It is probably by necrosister.
Advanced SystemCore is apparently a disk optimizer, haven't been using it for years. Nor do I want to take that risk again. .-.
seems like your formula works for alpha, if 1/alpha is integer, which agrees with the previous comment
Hey, I'm not sure if this interests you, but I found something which looks quite promising! It's *almost* a closed form expression for f(a,N)=sum_(n=1)^N floor(an) (this was not found via approximations, but rather by manipulating the formula, so is exact): Let M = floor(a(N+1)) and P = floor(1/a). Then f(a,N) = M * ( N + 1 - ceil(M/a) ) + P * M(M-1)/2 + ( sum_(k=1)^(M-1) L(k) ) Where L(k) is the only problem: L(k) = 1 if frac(k/a) >= 1 - frac(1/a), and is 0 otherwise. PS - I've made a typo somewhere in here, will fix when I find it.
Hey! In regards to the L(k), I wanted to add that the Unit Step Function sounds perfect for it. Let H(x) = (1/2)(1-sign(x)). sign(x) = |x|/x. You can then do L(k) = H( (1 - frac(1/a)) - frac(k/a) ). I plotted the function you described on desmos and I presume that "a" should be between -2 and 1. Probably 0 to 1 was intended. I personally think that when a=1.5 and N=floor(x) the corresponding graph is quite beautiful though. Yeah, that has indeed peaked my interest.
Lmfaoooo I'ma have to decrease music sound a little bit next time. Not much tho, cuz it was a vibe.
Yes. I am still working on this. I may have kinda done a complete revamp, changing it into a module, allowing for customization... Multiple issues were brought up to me, including the hassle of adding new sections, allowing different types of data to be saved, and precision saving (where it rounds numbers to either scientific or a specific decimal placement). Idk how, but I got scientific before decimal placement, I'll probably briefly explain it in an upcoming video when I go over it in as much detail as I can. Currently working on updating and loading, then I gotta do documentation and maybe a cool UI to explain it. Also... bro wtf is Guatemalan Syphilis Study and why is it there for the timestamp thingy. Idk man, yt is weird.
Not the best aim, but that was me streaming the experience... so gotta get better at compensating for the lag that incurs. Much better than that now 😢, with aim, not compensating. Fr shoulda had a wasd displayer thingymabob since my movement then is most likely better than rn.
Oh yeah! Think this was about smoothness of the door opening. Btw, a little hint for those that don't know yet. We can make the moving of parts rather seemless if we use a localpart to control the part (or clone the part then make the cloned part move? suggest doing further research). However, we do have to make sure that the server does actually update the door to be fully open or fully closed. The animation from fully open to closed can be done client side :). I think that I just used a loop in a server script, since I can still see some ridgedness.
Btw, the dmg was not all from the skill. He was actively clicking, as shown by the damage. Divs usually did ~3k or less dmg per skill tick. Rip that 170k exp :( takes ages to get that much when you don't grind (like days to weeks, or just a few boss kills for those that play alot).
I must clarify that my build is 0 str, so although I may have dealt a little damage to him using my skill, my partner that jumped from the same bridge did not take much and didn't even drop to yellow :). Thank you for anyone who thought of him when they saw me activate the skill early. It was by no means intended to harm him, just to make the jump look cooler.
Ngl. Sadly, it is lookin like just using an event system will be best. PlayerGui deletes so fast, hard to get it when playerRemoving. Maybe PlayerGui DescendantsRemoving could work? And you just input the values into a premade template for the server to save? Idek, issue is that it would interfere with game closing. Hmm or we just have a serverStorage version of the whole datastore and save using that. (Any change to the one in playerGui will fire an event that makes dataChanged to be true, after changing it to true, the value can also be updated for the one in serverstorage. Issue is that it would be costly memory-wise, since it creates 2 datastore folder trees for each player instead of 1. Hmm Literally anything to not have to use and abuse updateAsync and getAsync for sending data from server to client. Could just store it all in sessionData, then update the values in there as needed, then use it to save. Would be done using events from server to server, then from server to client to update the stuff client got, mainly for UI purposes. Hmm main issue is that client sends a request, what if instead the server sends the information to the client, with the client not being able to "request" the info at all, getting it every time something updates (after like a second or so to make sure stuff that updated in batches go thru). Fun. Ima have to do more research. This comment is just a thought bubble.
right
You know when you get a new toy, so you start playing with it. Then later you realize that it was made of lead and now you got lead poisoning? Yeah... I messed up. Realized today a few hours ago when I was testing it again that it had lead. So now I gotta remedy it, so yall also don't start playing with the lead toy.
Yes. I use Minecraft to model since it is faster than doing it in roblox.
Is that so?
@@AFTERHEARTZ Yeah, at least for me it is lol
Bahahahah that out of context come still gets me
What, I click to watch on my own video and I have to mute it. ffs . _. Tis expected though. Sus music is fun to listen to. Just... weird.
Fr... just came to rewatch it cuz i liked that thumbnail i did. Prob will have to do some audio adjustments... ffs
Uh, changed series name to Expression Espial, which is the same. But functions typically mean that it cannot be circular, and... yea. Also, goal is moreso to detect. So yeah. Sorry if there is any confusion!
I am irxyzi and i support this message
u dont actually need reaver or anything similar just climb downwards to the shell
Uh.. good advice, but doin that on mobile can be quite challenging (or console, or vr, or switch, or whatever roblox is connected to). Thus the reaver comment. Plus, most people will have reaver anyways, even if they got carried from F2-9. Thanks though! (Tis but a "Just in case" clause since not everyone can get it through normal means)
how to get duck?
how to open the door of the merchant
Where did u get coin1
Tnx
Fast
omg finally 2023 sbo youtuber
Thank u🔥
😉
:0
For those that also make content regarding SBO:R, Floors 15 and 16 both have copyrighted music playing in the background.
Golems indicate that you are extremely close to the Temple! The NPC is also located above the golems, as shown in a previous video.
I am remaking the Floor 7 one currently.
Had to use clideo so that the quality would not degrade to 144.
Very trippy
1:49 bro you need jump to use skill
wowie
Nice video helped me
:) If you have any video request just send them my way. (I check comments every so often)
@@soichiZ do u play anymore
@@fallenangel-pd2fv Sadly not much if at all, college takes a good chunk of my time.