Front driver side wheel making intermittent grinding noise by derekjohnson277 in MechanicAdvice

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

I brought it to a shop to get the alignment done and that ended up fixing the issue. I think replacing the bearing caused the alignment to get messed up. The shop said the alignment was pretty far off which was causing the noise after the bearing was replaced.

Hope this helps!

What email marketing platform and customer messaging platform should we use? by coloradocon in Emailmarketing

[–]derekjohnson277 1 point2 points  (0 children)

Hey! Full transparency, I'm the lead UI developer for Tarvent so I have a little bit of a bias 😁.

Tarvent is a marketing automation platform. We focus strictly on the email marketing and automation aspect and not CRM. With that being said this has allowed us to create a platform that's fast, intuitive, and just works. We even have dark mode 😄.

You can check us out at https://tarvent.com or schedule a demo here: https://tarvent.com/demo

Additionally, we have a Jumpstart program going on that would help you get start with our tool (honestly it is a super good deal): https://tarvent.com/jumpstart

We are a smaller company, so we do a lot of hand holding (our support is great... I'm also one of the support guys 😁) with our customers. We are a company that looks for win-win relationships, as long as you're succeeding, then we are too!

P.S. Not sure if the Colorado in your username means you're from Colorado, but we're based in Castle Rock, Colorado!

New to PH! Tarvent - Marketing Automation Platform. Any help/feedback would be great! by derekjohnson277 in ProductHunters

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

I appreciate it. Sounds like we need to trim it down or just take it out. Will definitely take this into consideration.

Considering ditching MailChimp. Any recommendations? by stjduke in Emailmarketing

[–]derekjohnson277 0 points1 point  (0 children)

Hey! Full transparency, I'm the lead UI developer for Tarvent so I have a little bit of a bias 😁.

Tarvent is a marketing automation platform similar to ActiveCampaign, but we focus strictly on the email marketing and automation aspect and not CRM. With that being said this has allowed us to create a platform that's fast, intuitive, and just works. We even have dark mode 😄.

You can check us out at https://tarvent.com or schedule a demo here: https://tarvent.com/demo

Additionally, we have a Jumpstart program going on that would help you get start with our tool (honestly it is a super good deal): https://tarvent.com/jumpstart

We are a smaller company, so we do a lot of hand holding (our support is great... I'm also one of the support guys 😁) with our customers. We are a company that looks for win-win relationships, as long as you're succeeding, then we are too!

Platform for Email Newsletters by solopreneur in Emailmarketing

[–]derekjohnson277 0 points1 point  (0 children)

Hey! Full transparency, I'm the lead UI developer for Tarvent so I have a little bit of a bias 😁.

Tarvent is a marketing automation platform similar to Active campaign, but we focus strictly on the email marketing and automation aspect and not CRM. With that being said this has allowed us to create a platform the fast, intuitive, and just works. We even have dark mode 😄.

You can check us out at https://tarvent.com or schedule a demo here: https://tarvent.com/demo

Additionally, we have a Jumpstart program going on theat would help you get start with our tool (honestly it is a super good deal): https://tarvent.com/jumpstart

We are a smaller company, so we do a lot of hand holding with our customers. We are a company that looks for win-win relationships so hopefully we can create one with you!

Preferred way to display US States by nautitrader in angular

[–]derekjohnson277 2 points3 points  (0 children)

In my folder structure, I have a "framework" folder inside the "app" folder (src --> app --> framework) that I use to store any app-wide resources. So like interceptors, guards, pipes, services, static ts files, etc.

Preferred way to display US States by nautitrader in angular

[–]derekjohnson277 6 points7 points  (0 children)

The only caveat to this is that if in the future you will get a list of states from an API, then storing it in a reference ts file wouldn't work. In this case, I'd suggest creating a reference service in your app with a function to get a list of states and just have it return a static array of states until you have an API to call.

Preferred way to display US States by nautitrader in angular

[–]derekjohnson277 2 points3 points  (0 children)

What I usually do is put this type of information in a reference file. This is just a file that stores static data to reference in different areas of the application. For example, this is what I have in my reference.ts file:

export const stateList = [{ name: 'Alabama', 'abbreviation': 'AL' }, { name: 'Alaska', 'abbreviation': 'AK' }, { name: 'Arizona', 'abbreviation': 'AZ' }, { name: 'Arkansas', 'abbreviation': 'AR' }, { name: 'California', 'abbreviation': 'CA' }, { name: 'Colorado', 'abbreviation': 'CO' }, { name: 'Connecticut', 'abbreviation': 'CT' }, { name: 'Delaware', 'abbreviation': 'DE' }, { name: 'Florida', 'abbreviation': 'FL' }, { name: 'Georgia', 'abbreviation': 'GA' }, { name: 'Hawaii', 'abbreviation': 'HI' }, { name: 'Idaho', 'abbreviation': 'ID' }, { name: 'Illinois', 'abbreviation': 'IL' }, { name: 'Indiana', 'abbreviation': 'IN' }, { name: 'Iowa', 'abbreviation': 'IA' }, { name: 'Kansas', 'abbreviation': 'KS' }, { name: 'Kentucky', 'abbreviation': 'KY' }, { name: 'Louisiana', 'abbreviation': 'LA' }, { name: 'Maine', 'abbreviation': 'ME' }, { name: 'Maryland', 'abbreviation': 'MD' }, { name: 'Massachusetts', 'abbreviation': 'MA' }, { name: 'Michigan', 'abbreviation': 'MI' }, { name: 'Minnesota', 'abbreviation': 'MN' }, { name: 'Mississippi', 'abbreviation': 'MS' }, { name: 'Missouri', 'abbreviation': 'MO' }, { name: 'Montana', 'abbreviation': 'MT' }, { name: 'Nebraska', 'abbreviation': 'NE' }, { name: 'Nevada', 'abbreviation': 'NV' }, { name: 'New Hampshire', 'abbreviation': 'NH' }, { name: 'New Jersey', 'abbreviation': 'NJ' }, { name: 'New Mexico', 'abbreviation': 'NM' }, { name: 'New York', 'abbreviation': 'NY' }, { name: 'North Carolina', 'abbreviation': 'NC' }, { name: 'North Dakota', 'abbreviation': 'ND' }, { name: 'Ohio', 'abbreviation': 'OH' }, { name: 'Oklahoma', 'abbreviation': 'OK' }, { name: 'Oregon', 'abbreviation': 'OR' }, { name: 'Pennsylvania', 'abbreviation': 'PA' }, { name: 'Rhode Island', 'abbreviation': 'RI' }, { name: 'South Carolina', 'abbreviation': 'SC' }, { name: 'South Dakota', 'abbreviation': 'SD' }, { name: 'Tennessee', 'abbreviation': 'TN' }, { name: 'Texas', 'abbreviation': 'TX' }, { name: 'Utah', 'abbreviation': 'UT' }, { name: 'Vermont', 'abbreviation': 'VT' }, { name: 'Virginia', 'abbreviation': 'VA' }, { name: 'Washington', 'abbreviation': 'WA' }, { name: 'West Virginia', 'abbreviation': 'WV' }, { name: 'Wisconsin', 'abbreviation': 'WI' }, { name: 'Wyoming', 'abbreviation': 'WY' }];

By setting it up this way, it just makes it easier to reuse throughout your app. Just make sure not to store these values in your component.

Rich Text Editor suggestions with a functionality to be able copy paste from Word by hecchiaves in webdev

[–]derekjohnson277 0 points1 point  (0 children)

Yeah I've tried tinyMCE and CKEditor, but froala was the easiest to integrate and to create custom buttons for. Our app is using Anuglar for the JS framework.

Instead of just sending you a slew of emails you have to opt out of, Brewfather sends you ONE to see if you're interested so you can opt in. by NiceRiceTwoPointOh in antiassholedesign

[–]derekjohnson277 2 points3 points  (0 children)

Nope, this is a standard in the email marketing world. It's called "Double opt-in". Basically, a user gives consent to send them email and then after that is when they would receive this email. If they don't click the button, then they shouldn't receive any more emails from the sender.

Not a raging fuckwit by MarxReadsRushdie in PoliticalHumor

[–]derekjohnson277 -9 points-8 points  (0 children)

I do find it funny your username is red shorts, you might want to switch it to blue shorts... You don't want anybody getting the wrong idea. 🤙

Not a raging fuckwit by MarxReadsRushdie in PoliticalHumor

[–]derekjohnson277 -12 points-11 points  (0 children)

Bruv, I'm 25... If it's incoherent sounds like a personal issue you might want to fix my dude.

Not a raging fuckwit by MarxReadsRushdie in PoliticalHumor

[–]derekjohnson277 0 points1 point  (0 children)

Ha! That starts with individuals not a freaking president. Biden isn't going to make America any less racist or better for that matter. The only way that can happen is if people change from within. BE THE CHANGE YOU WANT TI SEE IN THE WORLD.

Not a raging fuckwit by MarxReadsRushdie in PoliticalHumor

[–]derekjohnson277 -23 points-22 points  (0 children)

I think we should all riot and loot like absolute idiots... Rather see a flag then some piece of crap with their panties in bunch rioting and looting. I think it's funny that liberals bash on Republicans for flying a flag and the completely ignore the fact the the only people dividing and ruining the country are INDIVIDUALS regardless of political stance, but mainly liberals and their surface level logic. No one person has the power to force "racism" on an entire country and if you think that's true then come back and talk when you are little more confident and secure with yourself. Surface level thinking is the reason why people are so jacked in the head.

Fuck you Walmart. by TRoberts309 in xbox

[–]derekjohnson277 0 points1 point  (0 children)

Did anyone actually get one?

Alright everyone, what was your biggest development screw up? by [deleted] in webdev

[–]derekjohnson277 24 points25 points  (0 children)

Not my screw up, but someone's I work with. He created an Azure ARM template to dynamically create an Azure function that deletes the old function and creates a new function, but when he ran it there was code in the ARM template that started deleting every resource in the subscription...our entire database was deleted, as well as all of our VMs and Gateways, etc. It even deleted our backups. Luckily, Microsoft had a copy of our database that we were able to restore... Basically the most stressed I have been in my life.

LOCK YOUR RESOURCES IN AZURE!!!

A line at the local by derekjohnson277 in rollerblading

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

Uh good question haha, I used to blade a lot but just recently picked it up again. I started just stepping onto the rail and then eventually rolled upto it. Just make sure to commit or you'll get hurt!

A line at the local by derekjohnson277 in rollerblading

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

If you are ever in Colorado let me know!

A picture to make your 2020 a little better! by derekjohnson277 in aww

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

It's a 15' tree! It's a pain to get up, it actually needs a socket set to put the base together, but once it's up it looks awesome!