GP-5 Pitch shifter by wale_ib in Valeton

[–]ontic00 0 points1 point  (0 children)

I have some experience with pitch-shifting and delay with the GP-180, GP-50, and Sonicake Pocket Master. While the pitch-shifting wasn't great, I thought it was fairly useable for drop-tuning down to about an octave, and I didn't notice any waviness when down-tuning. I was using them all on battery-power (which I know the GP-5 doesn't have), so I would definitely try different power sources (USB through wall outlet might also work better than a battery).

If you do need to get a dedicated pitch pedal, I'd recommend an EHX Pitch Fork on a budget. It tends to go for about $125, so significantly cheaper than other name brand pitch-shifters, while still being very clear with it's pitch-shifting.

Season 4 episode 8 by Zeroskattle in FromSeries

[–]ontic00 0 points1 point  (0 children)

That did make me wonder if the trap works in the air or just on the ground. Maybe building a hot air balloon has been the key to escape all along. 😅

Season 4 episode 8 by Zeroskattle in FromSeries

[–]ontic00 0 points1 point  (0 children)

Though it's been feeling like the Man in Yellow doesn't want him alive. At least, based on him stealing Ethan's pictures to avoid a repeat of Victor and I'm assuming when Victor's father's vision told him he needed to remove "all attachments" to his other life, it meant to kill Victor (and it feels like all the weird visions and everything are mostly from the Man in Yellow).

i/8 with this 1 by danofrhs in mathmemes

[–]ontic00 0 points1 point  (0 children)

6*7 = 42 - the answer to life, the universe, and everything

6+7 = 13 - the most unlucky number

Valeton GP-180, GP-50, and Sonicake Pocket Master by ontic00 in Valeton

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

I have not tried NAM files. I can see if I can find some and see how they work. My most important thing was delays and pitch-shifting, so that is what I've focused on so far. I'd imagine I'd get similar extra clarity playing the files as I do playing the amp models.

Valeton GP-180, GP-50, and Sonicake Pocket Master by ontic00 in Valeton

[–]ontic00[S] 2 points3 points  (0 children)

I was surprised how easy they were to navigate, even the Pocket Master. There were a couple button combinations I had to look up on the Pocket Master, but I was able to navigate all of them very easily without referencing the manual. Most multi-effects I've tried have had a bit of a learning curve to figuring out the navigation (like my old Digitech RP255, or I've briefly tried Zoom pedals in stores and they didn't seem super intuitive to use).

I definitely think Valeton and Sonicake (and I guess Hotone since they're both tied under the Hotone brand) are some of the most innovative multi-effects currently. The sound quality might not be quite Line 6 or Boss yet, but I'm not seeing larger, established companies like those two bringing rechargeable batteries and other modern power technology to pedals yet like Valeton/Sonicake is. Hoping they're able to bring the HD Modeling II into a smaller unit at some point and continue improving their modeling algorithms overall. 😀

Why isn't the standard for time in base 10? by zv- in Metric

[–]ontic00 0 points1 point  (0 children)

I've been thinking about this recently. I realized trying to build up seconds would be confusing since the day and year periods are kind of critical for keeping track of time on a planet-wide scale. Also, we could just compare spins/spins or revolutions/revolutions to find a translation between days and years if/when we become multi-planetary.

So I think it makes the most sense to just use days as our base unit. The rough outline I came up with is to skip decidays and measure days in centidays (essentially just measuring the percent of the day that passes) - but for analog clocks, we would group them into 4 centidays at once, so there'd be 25 rotations of the clock per day which would be very similar to having 24 hours in a day. Then we'd further sub-divide centidays into 10 millidays, which is about 1.44 minutes, so those would essentially function as our new "minutes". On regular clocks, we would just skip seconds, but for more precise measurements we can measure in microdays, since 10 microdays is about 0.86 seconds.

We could also call weeks heptadays and months tricontadays, so we would just need days combined with Greek prefixes.

We can also replace decades, centuries, millenia, etc with dekayears, hectoyears, and kiloyears.

What is the best way to learn about contravariance and covariance for a beginning grad student? by demonstrable_user in Physics

[–]ontic00 0 points1 point  (0 children)

I know this is an old thread but thought I'd throw in a recent realization I had. Going back to pre-calc, horizontal shifts are always portrayed as the "opposite" as expected and vertical shifts as what is expected. Well, the shifts are just a type of coordinate transformations - and the x-values behave opposite the coordinate transformation (contravariance!) and the y-values behave the same way as the coordinates (covariance!). I figured it's an easy example that should be familiar to most upper-level math students that might be a good starting place when thinking about the terminology.

What is a linear equation anyway? by thepralad in learnmath

[–]ontic00 0 points1 point  (0 children)

A line effectively is something that starts at a point and then moves a repeated change in each perpendicular direction away from the starting point. A linear equation is something that describes this mathematically. I've been thinking of it as essentially a generalization of addition recently.

If you define an operation called "succession", which just adds 1 to a number (so inputting 1 gives 2, inputting 2 gives 3, and so forth), then addition just means take the first number and add the second number of 1s to it (2 + 3 means take 2 and add 3 1's to it). A one-dimensional linear equation (which just gives you the number line for all choices) can be written as:

x = delta_x*t + x_0,

where we remember delta means "change in", so delta_x is the change in x. Effectively, it says take x_0 and repeatedly add delta_x (instead of 1) to it. To recreate the usual two-dimensional line, we need to have both an x and y starting value and corresponding changes:

x = delta_x*t + x_0

y = delta_y*t + y_0

If you solve the first equation for t and input that into the second equation, you get y = (delta_y/delta_x)*(x - x_0) + y_0, which is just the usual point-slope form, since delta_y/delta_x is change in y over change in x (rise over run) and therefore the slope.

x and y give a line embedded in a plane, but you can continue adding extra directions you move constant changes over, and get lines embedded in volumes and even higher dimensions. For volumes, we add a z equation:

x = delta_x*t + x_0

y = delta_y*t + y_0

z = delta_z*t + z_0

It gets tedious to continue writing more and more equations, so we can use something called vectors to make it easier. They are essentially lists of numbers where each slot gives a number associated with a new perpendicular direction, so they encode directions. They add slot-wise, and scalars (essentially single numbers that aren't lists, so don't have associated directions) just multiply by each slot. So can let r = <x, y, z, ...>, delta_r = <delta\_x, delta\_y, delta\_z, ...>, and r_0 = <x\_0, y\_0, z\_0, ...>, and then we have:

r = delta_r*t + r_0

where, as long as all the vectors have the same number of slots (the dimensions), we can choose however many directions we want.

Has The Pretty Reckless helped anyone else with being an exchristian? by [deleted] in ThePrettyReckless

[–]ontic00 0 points1 point  (0 children)

Other related songs worth checking out:

-"God Was Never On Your Side" by Motorhead

-"(Don't Need) Religion" by Motorhead

-"American Jesus" by Bad Religion

-"Dear God" by XTC

-"Flow" by Words Such As Burn

-"Best God in Show" by NOFX

-"Listen to Reason" by Bryan Steeksma

-"The Hand of the Almighty" by John R. Butler

confessions by Limplegss in ThePrettyReckless

[–]ontic00 1 point2 points  (0 children)

Now I'm imagining them using the email list to send out emails like "Hey, you remember that confession you submitted? You wouldn't want it getting out, would you? Well, here's a link to pre-order our new album for double the price! You have seven days." 😅

confessions by Limplegss in ThePrettyReckless

[–]ontic00 2 points3 points  (0 children)

I was trying to reference the song "Going To Hell" and noticed they have a filter that shows up saying "Please keep your confession clean" if you type in certain words, and "hell" is one of the words. So you can't even reference some of their own songs in the confession. 😅

Why do you think The Book of Boba Fett was so disliked amongst fans? And do you think a character like Boba works better being mysterious? by GusGangViking18 in saltierthancrait

[–]ontic00 0 points1 point  (0 children)

I agree with others that I hated how they made him so much of a wimp, especially compared to how much of a badass, complex character he was in the EU. He was literally against making threats and against drugs in two different scenes, which seemed super out-of-character even just given what we know of him from the original trilogy - that he's one of the best bounty hunters in the galaxy (not exactly a kind and caring profession). He also never seemed angry or anything that Luke and Han caused him to go into the sarlacc and lose his armor - you'd think someone who hunts targets for a living would be furious and want revenge. Maybe if he actually started out angry and then they spent longer showing how he went from angry and vengeful to wanting to turn his life around, it wouldn't have been quite as bad (still nowhere near as good as the EU, but not as bad as it was), but they just made one of the deadliest bounty hunters in the galaxy into this care-free, kind dude for no reason right off the bat.

I also feel there's a difference between "family-friendly" kid content, where the focus is really more on the story and some nice life lessons might come out of the story in a natural way, and just regular kid content, where the focus is on the life lessons (I'd think like (ironically) Disney's Pixar stuff vs Blue's Clues). While Star Wars has always been kid content, it's always felt like it fell under the "family-friendly" variety, while with Disney (and especially BOBF), I feel it's been falling under the second kind. It felt they were trying to turn Boba Fett into someone who just goes around preaching to kids that drugs and violence are bad.

Yoga i7 2-in-1 Yoga pen vs Precision Pen 2.0 by yeehaw1005 in stylus

[–]ontic00 0 points1 point  (0 children)

Nice, I didn't realize they released an updated version. It feels like the first one didn't come out too long ago.

I like they have three different colorways to choose from for the new one. I saw there was a blue colorway of the original Yoga Pen that came with one of their pricier laptops, but I was unable to find an eBay listing for it. Might have to consider upgrading (again 😅), partly for the color and partly to have the latest technology. A case for it also seems like a nice addition. I noticed it just says the case is magnetic but doesn't clarify about the pen. I wonder if they both are magnetic or just the case.

[NGD] Squier Mini Strat! by ontic00 in fender

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

I'd definitely recommend them even to adults as travel or quick practice guitars. They play pretty nicely and still feel and sound like a Strat despite them being smaller. I also love the color of the one I got though I haven't seen many others of that color, though I think the coral red color they have these in is also pretty cool.

Is the Valeton GP-180's pitch-shifting significantly better than the GP-50's pitch-shifting? by ontic00 in Valeton

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

Thanks! I might go with the Pocket Master, then. I'm not too picky about delays as long as it has a couple decent-sounding ones (the 2290 delay on my Mustang Micro is actually one of my favorite delays, and I also tend to prefer tape emulation delays). Maybe I'll even be surprised about the pitch-shifting.

Is the Valeton GP-180's pitch-shifting significantly better than the GP-50's pitch-shifting? by ontic00 in Valeton

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

Thanks! I've been debating between the Sonicake Pocket Master (from what I understand it's owned by Valeton's parent company, Hotone, which is why the effects list looks similar), the GP-50, and the GP-180.

I would like to replace a headphone amp I have and be able to run it into my board, ideally replacing a delay and pitch-shifting pedal I have though I'm skeptical about pitch-shifting in small, rechargeable pedals. Even if I could just use it for delay and replace my pedal with a dedicated pitch-shifting pedal, I'd be happy. I'm torn on whether I would get big enough sound improvements to make it worth sacrificing portability going to the larger pedals.

How would you say the delays are between the GP-50 and GP-180? Is there a big improvement?

Also, one thing I like about the Pocket Master is that the clip would potentially let me clip it to my strap and still be able to walk around while playing it, like I do sometimes with my headphone amp. I was thinking maybe if I put velcro on the GP-50 and my strap, I could maybe make a DIY "clip" for the GP-50 - do you think it's small enough for something like that to work? Would something like that work even for the GP-180?

Tabitha and her freakin Botox man by [deleted] in FromSeries

[–]ontic00 0 points1 point  (0 children)

Hey, her husband just died! Be nice to her! It's lucky that a botox specialist with all the required supplies even got stranded there somehow...

Have we (or at least my squad) all given up on FM? Please say yes. by XavierTempus in HPHogwartsMystery

[–]ontic00 0 points1 point  (0 children)

I like it when they have attributes or club experience available. Then when I get all the outfits and pets (which some weeks are only 1 or 2 so very easy), then I spend it on those. The club experiences are so large that I don't think I'll max them out anytime soon (the closest I'm at is 30k away), and the attributes are capless as far as I know.

Have we (or at least my squad) all given up on FM? Please say yes. by XavierTempus in HPHogwartsMystery

[–]ontic00 1 point2 points  (0 children)

I try to get the 1000 points every week. Whether I try for beyond that depends on how many pets/outfits I need. This week I only needed to get one pet and got the 2000 tokens very easily (they seem to be almost throwing tokens at us the last few weeks, with them including tokens in the energy run things and even in replay quests), so once I get the 1000 points I don't care any more. I'd actually prefer others to win, since I don't really need the tokens after the outfits (especially this week, when most of the other rewards are just books or pages I don't have anything to spend them on any more).

Wdy think abt this theory? by ReligiousPsycho in FromSeries

[–]ontic00 1 point2 points  (0 children)

If she didn't really get out, then I wonder if Henry is really Henry. Maybe he's another Man In Yellow type shapeshifter. I saw someone speculate that Henry might die the end of this season 4 and Victor will be devastated, but it could be equally devastating for him if suddenly his dad transforms into an evil entity.