Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Just use a regex. It'll let you create match groups for the parts of the domain and subdomain. Named groups make it easy to extract the values you want.
https://javascript.info/regexp-grou... -
donuts238485y@SortOfTested but only if u pay? Or do they give everyone the latest episode asap now?
-
@billgates
Android will be more robust and saleable long term, but the app is easily fixable. Depends on what your concern is. -
donuts238485y@SortOfTested I sorta felt like if I'm going to ditch RN anyway, should I just use this as a learning experience for Android... But last app I built for Android took forever to setup because of some bugs and new changes... The template project didn't exactly work...
-
donuts238485yLeft all the details in but took a whole day to figure out how to get the right tab to show up...
it was some bug where the xml element order mattered and the template had it in the wrong order... I think I ranted about this -
@billgates
Were it me, I'd go android. React Native is more of a 1.0 mvp approach than a long term solution. Most companies decide to go full native within a few iterations.
An app I wrote in react native broke. It just checks for new episodes and opens the actual download link so this all the ads. The URL seems to have changed from www to www1.... So the Find/Replace broke.
I don't think I will be using RN though because I can't access all features like root commands, that can be done from Android SDK. And probably easier to access all Android's features?
So should I try to fix the RN code (prolly 1 line) or port the whole project to use Android SDK?
question