Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Metario

Pages: 1 2 3 4 5 6 [7] 8 9 10 11 12 ... 153
91
moar progress

the javascript autosaver is about.. 33x (very very close to 34x the performance which is INSANE) faster then torquescript (with the absolute maximum amount of bricks :o)
:D

92
did we say 5 seconds?
i meant


blisteringly fast....... i wouldn't like to stand in the way of this freight train


(note this is a 108k brick save with no events and all 2x2s, performance may vary.. merely just a test and not fully representative of the final product : ))
sorry did i say 1.33 seconds
i meant

please stop me



doing some general testing as well...
ts autosaver
js autosaver
10.6x increase in performance (but this is a very very lightweight version so..)

93
did we say 5 seconds?
i meant


blisteringly fast....... i wouldn't like to stand in the way of this freight train


(note this is a 108k brick save with no events and all 2x2s, performance may vary.. merely just a test and not fully representative of the final product : ))

94
Yes, I have given her some space. I noticed small cuts on her upper arms and I'm wondering if thats just the beginning. I'm worried about the bigger picture; Self Delete.

I've been keeping tabs on her with her mom. All I can do is hope.
speaking from experience- I guess it’s a bit different from my point of view but it’s unlikely that she’s going to actually try, and even if she does try normally everybody who does try goes for some silly stuff that won’t actually kill them. just talk to her continually, and give her space. whenever she needs space it’s probably that she doesn’t want to talk and needs to go chill for a bit. she’ll be alright. unless the cutting gets bad (usually after the first one or two cuts people realize how forgeted it is and stop), you probably shouldn’t ask her because then she’ll hide it from you. common place for cutting is arms/thighs so i’d be watching in those places (and if it’s thighs and she’s wearing jeans, it’ll be hella painful to stand up/sit down)

you have to acknowledge the cutting op. my best friend started cutting and she told me instead of noticing myself. cutting is a way to ignore other pain, like the death of your father. explain you concerns and make sure she seeks help.
while true there’s no reason for immediate concerns with small cuts unless they start to become giant and span entire arm lengths. letting the person know that you see their cuts is either a good way to get them to open up further about it and make you feel horrible or have them hide it from you entirely. it depends.

95
Off Topic / Re: artists similar to Carpenter Brut?
« on: March 03, 2018, 09:37:16 PM »
rl grime, rezz, kill the noise, SLANDER, armnhmr, and gesaffelstein are all pretty good (and are in somewhat of the same style, not so much the rest of his work more of similar to roller mobster imho)

recos:
https://open.spotify.com/track/7upu6DQbTqutjQ6coUqway?si=4peObiKXTH-dWEUgTo-qqg
^ after all - slander
https://open.spotify.com/track/2KU0RHzEYq8GLwDTyimWGr?si=8guTNmnGTkuEUvaDaXA3jw
^ core (original mix) - rl grime
https://open.spotify.com/album/3rlYfAO27jQo8P7Al72Cbb?si=FH0tEg88SeGXGO-OwSQcQw
^ this entire album by rezz
https://open.spotify.com/track/4dG0SlYdknf1J5qqIZwDLo?si=q9mBBCYnT2auooCPDv2TLg
^ fourth impact - rezz & k?d
https://open.spotify.com/track/1qmRcQV5N0oDYHcoVB11YS?si=w0FMnjRuTUugUrfhzA9pbg
^ spitfire - porter robinson
https://open.spotify.com/track/2lH7bkBsHV9aOJWtvKak9l?si=XTarZsnERu2OpHq7Z__BGw
^ punks (riot remix ) - btsm
basically all of gesaffelstein's works

96
Off Topic / Re: rest in peace aniki
« on: March 03, 2018, 06:41:50 PM »

97
*flexes*


98
Off Topic / Re: i'm turning 13 in 26 days
« on: March 01, 2018, 04:23:55 PM »
holy stuff I had no idea you were 12
you’re surprisingly mature for a 12 year old
happy early birfday

99
the fact that you believe this stuff is the biggest joke of all
first of all logging all user info on a bot would be against the ToS
second of all

(jake being https://github.com/jhgg)

https://www.reddit.com/r/discordapp/comments/80j2ob/apparently_notsobot_is_malicious/
don't be a handicap and realize that notsobot is on 156,000+ guilds with around 4.4 million users in total

100
holy stuff forgeters
 


stop spreading this handicapped rumor around jesus christ

101
Modification Help / Re: blocklandjs
« on: February 26, 2018, 09:01:56 PM »
what security is there on writing to certain locations and to certain critical files?
low as i'm still looking into fully resolving paths relative to the current working directory (with libuv this is harder then you think..), but, it'll be fixed by v8.2

102
Modification Help / Re: blocklandjs
« on: February 21, 2018, 04:11:58 PM »
I would recommend that you create a threadpool which keep the threads alive and then send the action to the pool which puts it into a thread. This makes it possible to stack work without having way too many threads launched. Also keep in mind to copy over all data that is used in current thread to make sure it is not altered. This means that it will slow the process a bit if the data is huge(Mentioned below).

Also, as you say that reading is asynchronous, but how would writing work? Saving parts of a file? Saving the whole file as one big string?
http://docs.libuv.org/en/v1.x/threadpool.html
libuv already does this internally- no need to worry about it.

Writing can be done sequentially, or as a one-shot method. The offset method can be used to write onto the end of files (or just using the append flag)

103
Modification Help / Re: blocklandjs
« on: February 21, 2018, 12:05:52 PM »
Kyunde make asynchronous brick loading/saving (It might already be but I never bothered to research whether it's single thread)
it's not asynch seeing as it's using torkscript
you could do this alot faster with bljs's libuv implementation as it provides an asynchronous file writing/reading part: see http://blocklandjs.readthedocs.io/en/latest/JavaScript/libuv/fs.html#uv.fs.read

it'll spawn a new thread so the game and the engine will not be stuck on writing the file out

104
Modification Help / Re: blocklandjs v8.1.1
« on: February 19, 2018, 10:13:51 PM »
Super cool, excited to see what all this will be used for. Have a bunch of ideas popping around.
you could actually expose all of the json stuff from v8 and expose it to torquescript
and have a faster json parser then jettison :o

105
Modification Help / Re: blocklandjs v8.1.1
« on: February 19, 2018, 09:06:51 PM »
reserved

Pages: 1 2 3 4 5 6 [7] 8 9 10 11 12 ... 153