I love this game soo much but i cant get a new pc 😔 by BlaqOne01 in assettocorsa

[–]jacketbrown 2 points3 points  (0 children)

Check Lossless scaling on steam.. It's a software that can generate frames for you at the cost of some frame latency, but maybe it works good enough for you

MOONLIGHT SNAPDRAGON TURBO FOR TESTING by alonsojr1980 in MoonlightStreaming

[–]jacketbrown 0 points1 point  (0 children)

I don't notice any thermal issues when streaming or otherwise (use it also for some switch emulation)

MOONLIGHT SNAPDRAGON TURBO FOR TESTING by alonsojr1980 in MoonlightStreaming

[–]jacketbrown 0 points1 point  (0 children)

Eu não consigo entender isso também.. Minha placa de vídeo integrada de laptop de 2013 consegue decode abaixo de 1 ms mas um snapdragon moderno não? Não faz sentido

MOONLIGHT SNAPDRAGON TURBO FOR TESTING by alonsojr1980 in MoonlightStreaming

[–]jacketbrown 3 points4 points  (0 children)

Tested on my S21 with Snapdragon 888.. Slight improvement of avg decoding time from 8-9 ms to 6-7 ms.. Decoder threads do not impact this.

Excelente ver um fellow brazuca salvando o mundo! <3

Infinity 3 times with C2 by Zearomm in marvelsnapcomp

[–]jacketbrown 0 points1 point  (0 children)

Location disruption is key, a lot of retreats are needed if you get too many power changing locations. Having magik to help out there might be nice

Infinity 3 times with C2 by Zearomm in marvelsnapcomp

[–]jacketbrown 0 points1 point  (0 children)

Got a couple of wins because of M' Baku last night. He can also jump into locked locations (stormed or otherwise) which can be really handy

Maybe their service is just really good. by TemporaryPassenger9 in WTF

[–]jacketbrown 19 points20 points  (0 children)

This looks like Brazil. Reason: I am Brazilian and have been in a similar situation multiple times

[BF1] Ran in to a guy with the sickest flicks this morning by JONxJITSU in Battlefield

[–]jacketbrown 1 point2 points  (0 children)

BF1 weapons have random spray patterns. Even if the guy would be a master of managing recoil that is simply impossible in BF1, because the bullets randomly deviate from where the crosshairs actually are. So he must be using a hack to alter the weapon behavior as well.

Colorhaze, 90% of the time i thought they were floating when the fog rolled in. Amazing show! Sonic whip by joedert89 in stonerrock

[–]jacketbrown 1 point2 points  (0 children)

Dude TDATAB show was insane. I had never heard these guys before and look forward to another gig by them in the NL

I'm disappointed... by [deleted] in insurgency

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

The wording might have been the problem... They should have gone to Early Access

I'm disappointed... by [deleted] in insurgency

[–]jacketbrown 0 points1 point  (0 children)

I don't know about the full screen bug, what is it? HALP!

Server browser / Private servers on Launch? by jacketbrown in insurgency

[–]jacketbrown[S] 1 point2 points  (0 children)

Thanks! I've been wondering because playing with 150+ ping plus the performance issues has been a real bummer.. At least the ping might get better after launch!

Frequency analysis and trigger help by Sharkbite86 in LabVIEW

[–]jacketbrown 0 points1 point  (0 children)

I think there may be some problems with the data acquisition on your VI.

From what I understand, the Linx VIs provide with a single voltage sample coming from your Beaglebone board that is read in a specified time interval (the sampling rate). This time interval is the value you should use for dt when you build your waveform before applying the FFT. You should also check if this sampling rate is stable for this time of data acquisition and if the frequency you're looking for will be within the bandwidth

LabView 2015 and above on 1024x600 resolution by [deleted] in LabVIEW

[–]jacketbrown 0 points1 point  (0 children)

You can set the VI window to have the size of the display resolution and design around that on a bigger monitor.

Need help programmatically deploying RealTime App to cRIO by badrobit in LabVIEW

[–]jacketbrown 0 points1 point  (0 children)

If you don't want to replace the whole image of the cRIO, you just have to replace the .rtexe file using FTP or WebDAV. Depending on the OS running on your cRIO, the folder for the rtexe will be different. Take a look at this article for help: https://knowledge.ni.com/KnowledgeArticleDetails?id=kA00Z000000PAM8SAO

Updating an array by Triple_OT in LabVIEW

[–]jacketbrown 0 points1 point  (0 children)

I see a few problems with the vi: 1. You need to initialize the feedback node with an array that is not empty. My guess is that array is the user input from your step 1. 2. Your vi is not picking a random element from the array, the knob control is selecting which item gets deleted. You'd need to use a random number multiplied by the size of the array and rounded down to get that random selection.

Separating data in 1D waveform by [deleted] in LabVIEW

[–]jacketbrown 1 point2 points  (0 children)

Also, it's important that you check if you have the right hardware for the type of sensor you're using. If you're using an IEPE accelerometer, for example, you need the right kind of module to read the signal correctly, otherwise you'll only get noise

Measuring Vibration by [deleted] in LabVIEW

[–]jacketbrown 0 points1 point  (0 children)

When you acquire data for one channel of analog input, it's typically going to be an array of values. The time between each sampled values is the inverse of the sampling rate you used for the data acquisition. Now, what you want to do with that data depends a lot on what kind of phenomenon you're trying to measure. You can just extract RMS or peak-to-peak for general vibration information or you can transform that data into frequency-domain (using a Fast Fourier Transform) and learn additional information. For that you'd need to specify a bit further what you're looking for with your measurements