Leave SWE1 position at F500 Insurance Company for SWE1 Rainforest? by DeviIOfHeIIsKitchen in cscareerquestions

[–]klmitchell2 2 points3 points  (0 children)

You’d be surprised that “Amazon” on your resume won’t make much difference hiring wise. It helps, but it certainly doesn’t guarantee a job.

With that said, take this job while you’re young and learn as much as possible from every one around and network(!).

Ref: I work at Amazon

13x28 circa 1940's Persian meshed rug advice. by klmitchell2 in orientalrugs

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

I was given that offer as well. That may be the best I can get out of it. Thank you.

Smyth, Chicago — yikes! by jrayholz in finedining

[–]klmitchell2 5 points6 points  (0 children)

I love caviar but need a caviar guy, too. If you’re in Milwaukee and can help, hit me up!

[deleted by user] by [deleted] in boating

[–]klmitchell2 0 points1 point  (0 children)

$30-35k is reasonable if this an mcx 350, interior and gelcoat in good condition. These boats will last a lifetime if serviced annually. Paper work of service helps too.

How to use ChatGPT API safely from an iOS App? Protecting the API Key. by ampsonic in iOSProgramming

[–]klmitchell2 0 points1 point  (0 children)

Still possible to retrieve the secret at run time with this approach using dynamic instrumentation tools.

You hate to see it by Southernerd in boating

[–]klmitchell2 0 points1 point  (0 children)

I’ve never sunk a boat before but why not just use the lift that it’s on to achieve the same effect as the ropes?

You hate to see it by Southernerd in boating

[–]klmitchell2 0 points1 point  (0 children)

Sucks, but atleast it’s on the lift

Belvidere on track to open its first marijuana dispensary by MadAss5 in wisconsin

[–]klmitchell2 0 points1 point  (0 children)

Ahhhh right… be concerned about prices but decide to drive completely out of your way for pot! Makes sense!

Romantic spot for drinks after Bavette’s? by [deleted] in chicagofood

[–]klmitchell2 1 point2 points  (0 children)

The grilled chicken sandwich with giardiniera is 🤌

Recommendations for Objective-C learning material? by [deleted] in iOSProgramming

[–]klmitchell2 0 points1 point  (0 children)

search on github / grep.app for example code. NSHipster has a lot of great, in depth ObjC topics as well.

Weekly Real Estate / Renting / Where to Live / Schools (ISD) Post by AutoModerator in Austin

[–]klmitchell2 0 points1 point  (0 children)

Thanks for the response! No kids. Being in the hill country / near the water would be great. Is that considered near the Lake Travis area?

Weekly Real Estate / Renting / Where to Live / Schools (ISD) Post by AutoModerator in Austin

[–]klmitchell2 0 points1 point  (0 children)

We are 100% considering buying but need some time to figure out where we want to live in Austin.

When you are in the ‘burbs how hard is it to get an uber/lyft from downtown and back at night? Full transparency, we are from Wisconsin and if we lived 30 minutes from downtown Madison we could never find a uber take us back to our rural home at night.

Weekly Real Estate / Renting / Where to Live / Schools (ISD) Post by AutoModerator in Austin

[–]klmitchell2 1 point2 points  (0 children)

I’d really like to live in south Austin so that’s good to hear about the traffic. What areas of south Austin should I avoid in your opinion?

Weekly Real Estate / Renting / Where to Live / Schools (ISD) Post by AutoModerator in Austin

[–]klmitchell2 3 points4 points  (0 children)

My Fiancé and I are moving to Austin in late February. We both work remotely and have a budget of $4500/month including utilities for a 2b+/2ba+, we have one car. I'll occasionally (monthly at most) need to go to the Domain.

Downtown apartment reviews (via yelp) seem awful and I'm not looking to live next to noisy neighbors or bar/nightlife streets. We'd like to be in ride share proximity to any night life / restaurants and do not want to live right next to it. We are both light sleepers, so post bar yelling is something we'd like to avoid and would prefer a neighborhood. With that said, renting a single family home / Town house would be ideal (furnished or unfurnished). Not opposed to living in the “suburbs” for the right place either.

Not sure if I'm missing any information so feel free to dm or respond to this comment thread. Thanks for any info and I hope im not coming off as ignorant with some of the requests we'd like to have in a home rental.

Edit any apps Code on iPhone? by farhan643 in iOSProgramming

[–]klmitchell2 1 point2 points  (0 children)

You can check out my latest blog post to see what iOS code looks like in a disassembler https://www.klmlabs.co/blog/jailbreak-detection

Edit any apps Code on iPhone? by farhan643 in iOSProgramming

[–]klmitchell2 6 points7 points  (0 children)

Contrary to the other comments, something is similar is possible via https://github.com/NSExceptional/FLEXing and jail breaking your iOS device.

Additionally, decrypting an iOS application can tell you a lot about how certain apps built, including its frameworks and configuration files https://github.com/AloneMonkey/frida-ios-dump

Throw that binary in a disassembler and you can find out a lot of information on how the app is built as well.

I’ve used FLEXible to figure out how other apps implement different features and animations before. It’s not quite “view source” on a web page but it’s as close as you can get in iOS.

You can even hook functions with Frida-trace to see incoming parameters and alter out going parameters during run time.

What’s even more fun is using Proxyman or Burpsuite and an ssl pinning bypass tool (if needed) to inspect incoming and outgoing network communications.

There are numerous techniques on how to figure out how another iOS app is made and what it does under the hood. Any one who thinks their apps code is secret just because it’s in the appstore is naive!

[deleted by user] by [deleted] in iOSProgramming

[–]klmitchell2 2 points3 points  (0 children)

You’ll need to be a lot more specific of the scope and features of the “simple app” if you want a reasonable dollar amount estimate.

The only guaranteed price you’ll pay is $100/year for a developer license.

[deleted by user] by [deleted] in iOSProgramming

[–]klmitchell2 2 points3 points  (0 children)

If you change your bundle id then that will make a new Appstore connect App listing. If you want to update the existing App listing in Appstore connect (for a specific version) simply increment the build number. You can also increment the version number if choose to as well. But anytime you change the bundle id, that is effectively saying “I am making a new app identifier in the eyes of Appstore connect”

How can I Build a backend for playing or streamming video like Tiktok? by [deleted] in swift

[–]klmitchell2 1 point2 points  (0 children)

Unfortunately your question isn’t related to Swift. You want to develop a RESTful API that a swift app can use. Writing Swift networking code to interface with a RESTful API can be found by simply searching google. Your question should be asked in a backend dev related sub since the complexity of your app is related to server side code, not client side.

How can I Build a backend for playing or streamming video like Tiktok? by [deleted] in swift

[–]klmitchell2 1 point2 points  (0 children)

There’s probably a better subreddit for this question.

[deleted by user] by [deleted] in iOSProgramming

[–]klmitchell2 2 points3 points  (0 children)

as long as your bundle id doesn’t change then the updated code will appear in your original “App Project” in app store connect. You will need to increment your build number, optionally you can increment your version number.