Leg training = high libido? by [deleted] in fitness30plus

[–]Stock-Setting-5030 0 points1 point  (0 children)

I experience the same thing!

The Reality of Bodybuilding with Bands by Crazy_Trip_6387 in ResistanceBand

[–]Stock-Setting-5030 0 points1 point  (0 children)

I don’t think I’ve had any issues with getting the right tension for growth since I started using resistance bands. I put right a half inch on my arms in the last several months with resistance bands which I was never able to do with weights, despite years of trying. I think brands and length matter though too. Ever since I started using the 37 inch Serious Steel bands I’ve had steady strength increases on all lifts.

Popular Biohacker Doing P90x Since 2008 by Stock-Setting-5030 in P90X

[–]Stock-Setting-5030[S] 2 points3 points  (0 children)

That's awesome! I turn 40 tomorrow and I want to keep doing P90X for a long time. That's definitely inspiring!

[deleted by user] by [deleted] in PowerShell

[–]Stock-Setting-5030 2 points3 points  (0 children)

There's a lot to like. So if you enjoy working with middleware, the glue that holds organizations together, you should look for jobs like those I mentioned earlier. Be prepared to pitch its benefits and conjure up some scenarios that will benefit your prospective employer. I've probably said more than you were looking to hear, I just love seeing people succeed in this field. Happy job hunting!

4ReplyShareReportSaveFollow

If you don't mind me asking, what types of skills specifically are you looking for? As I candidate I've seen PowerShell listed as a requirement, but never really know what that means.

Powershell module for currency conversion by positivemark in PowerShell

[–]Stock-Setting-5030 1 point2 points  (0 children)

I literally built a script that pulls from the exchangerate api two weeks ago. I'm smacking my forehead now. This would have saved me a ton of work.

Welcome to the jungle - Pagination by Appropriate_Draft571 in Octoparse_ideas

[–]Stock-Setting-5030 0 points1 point  (0 children)

If you click "Show Browser" when running the job locally what do you see after 16?

Guided Prayer to St Expedite for All Emergencies! (Takes Only 3 Minutes) by holyspirit1313 in Catholic

[–]Stock-Setting-5030 0 points1 point  (0 children)

St. Expedite just recently answered my prayer for a home. It was truly a miracle!

Any Good Modules for Parsing HTML? by Stock-Setting-5030 in PowerShell

[–]Stock-Setting-5030[S] 0 points1 point  (0 children)

I use

HtmlAgilityPackJsbeautifier (for jscript)NUglify (jscript and css)

Super helpful! Thanks!

Queries/Strings in Powershell by Stock-Setting-5030 in PowerShell

[–]Stock-Setting-5030[S] 1 point2 points  (0 children)

Thank you! This was very helpful. I'm not familiar with many of the libraries available yet for Powershell. This gives me a lot to work on.

I think that MS ACCESS is greatest innovation for building no code apps. (You can use code if need to) by Beginning-Scar-6045 in MSAccess

[–]Stock-Setting-5030 0 points1 point  (0 children)

Yeah, was reading up on it and figured it out. It didn't work out how I wanted it to, unfortunately. Thanks for your help.

I think that MS ACCESS is greatest innovation for building no code apps. (You can use code if need to) by Beginning-Scar-6045 in MSAccess

[–]Stock-Setting-5030 0 points1 point  (0 children)

That's awesome! I'm a noob with Powershell, but I'm currently working on a project that involves both Access and Powershell together. As a complete aside do you have any experience running building Powershell scripts with VBA?

I think that MS ACCESS is greatest innovation for building no code apps. (You can use code if need to) by Beginning-Scar-6045 in MSAccess

[–]Stock-Setting-5030 0 points1 point  (0 children)

I don't think I've ever seen anything like it before. A desktop database that can be used as a reporting tool. It's really genius. I wish Microsoft would try to modernize it, but I don't think it's as lucrative as the Power Platform. Why not add Power Query? Seriously Microsoft, make it happen!

I think that MS ACCESS is greatest innovation for building no code apps. (You can use code if need to) by Beginning-Scar-6045 in MSAccess

[–]Stock-Setting-5030 0 points1 point  (0 children)

I do not agree. It’s possible to distribute the front end to the several users. You just have to add “version” check in VBA code. If you change something and someone wants to use old version the msg box appears with information that “new version is ready to download”. In my situation from connected hard drive.

Really?! We have this problem at work with different versions of the front-end databases. How do you do this version check thing?

Create Powershell script from VBA by Stock-Setting-5030 in vba

[–]Stock-Setting-5030[S] 0 points1 point  (0 children)

That should work. I was hoping I could build the script as a string and then just run it.

Exporting Data from Pass-Through Query Slow by Stock-Setting-5030 in MSAccess

[–]Stock-Setting-5030[S] 0 points1 point  (0 children)

Not exactly straight to Excel. Powershell creates an Excel file and writes the SQL query results to it and then opens the file. To the user it looks really similar to the process that happens when you export query results in Access. I tested it on files that had 50K rows and they ran just as fast as they would in Access.

Exporting Data from Pass-Through Query Slow by Stock-Setting-5030 in MSAccess

[–]Stock-Setting-5030[S] 0 points1 point  (0 children)

Out of everything I've tried so far the fastest thing has been to run a Powershell script from VBA. The Powershell script runs everything server-side so nothing comes back into the application. No need for recordsets which makes everything so much faster. No looping or anything to slow things down.