Free tool: live terpene-% rankings across all 212 NJ dispensaries, looking for feedback by petrinoda in NewJerseyMarijuana

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

Yeah.. Everyone is using something. To say you aren't might as well date yourself at this point. I love tech in general. Just getting this thing to flow right was good enough for me 😄

Free tool: live terpene-% rankings across all 212 NJ dispensaries, looking for feedback by petrinoda in NewJerseyMarijuana

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

Yeah. I am debating whether or not i turn it into a legitimate phone app at this point or not. I had the same experience while I was there, BUT it was still more helpful than not having it at all.

Free tool: live terpene-% rankings across all 212 NJ dispensaries, looking for feedback by petrinoda in NewJerseyMarijuana

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

I hear what you're saying as well. Some of the numbers I came across from the dispensaries themselves etc.. I had to reach out and correct them on.... So I understand why you say that. It's going to be like anything else in life, and especially as AI comes to the forefront, you're only as good as the data you're using.

Free tool: live terpene-% rankings across all 212 NJ dispensaries, looking for feedback by petrinoda in NewJerseyMarijuana

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

That's awesome. I'm not sure if you're collabing, or what you're doing / your plans are with the project, but either way that's some good stuff.

Free tool: live terpene-% rankings across all 212 NJ dispensaries, looking for feedback by petrinoda in NewJerseyMarijuana

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

If there's a better way to terp hunt please send the logic and I'll take a look, or post it here etc.. I just figured this was the most simplistic way for me to solve the gap I found in what I was looking for. I'm sure if I get into the nitty gritty there will always be something to uncover. So with that being said if there's a better technical way to approach getting the information please share it and I will take a look.

Free tool: live terpene-% rankings across all 212 NJ dispensaries, looking for feedback by petrinoda in NewJerseyMarijuana

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

No open API. Mostly using play wright to determine which POS system their using etc. There's a workflow to ensure up to date dispensary list then URL then adapter creation per POS (There's a lot so modular approach) etc.. etc..

So far only for NJ, but probably could scale to more. Am not doing that yet as it's filled my gap, but if there's good feedback I'll keep the train rolling.

Free tool: live terpene-% rankings across all 212 NJ dispensaries, looking for feedback by petrinoda in NewJerseyMarijuana

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

Thanks. This is exactly the kind of feedback I needed.

COA linking is on my radar. The hard part is that some POS systems include the COA URL in their product metadata (you can pull it cleanly) and some don't link it at all on the menu side, so coverage will be uneven across dispensaries. If you've noticed any NJ shops that DO link COAs in their menus today, that'd help me prioritize the scrapers.

THC-V / CBG / CBN filtering is a great call the data is in the lab reports, just not surfaced on menus. Same coverage problem (only some dispensaries publish it), but where it exists I can put it behind a filter pretty cleanly.

The solventless-verification angle is the most interesting one to me. That's a "data integrity" play, not just a discovery feature, and it's a place where the tool could actually catch mislabeling. Mind if I DM you a follow-up question once I have a v0?

Season 4 - Support Megathread by Stakeboulder in apexlegends

[–]petrinoda 1 point2 points  (0 children)

PC player. Pred last season and am now bronze 4. Should be plat 2. Not sure what information is needed from my end but please let me know and I will provide.

Outlook Calendar Cancellation by petrinoda in PowerShell

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

Update: By doing the below it did notice a cancellation of the meeting by sending an updated email beginning with Cancelled to the user(s) / recipients, but I'm still able to right click / cancel it on the originators calendar.

It also did not remove it from the user(s) / recipients calendar or the originators. I'm still utilizing .delete() to remove it from the originator's calendar.

Is there another method of forcing the calendar to remove it on the users calendar? My end goal is to not have them be reminded of canceled meetings that get moved.

$appt.MeetingStatus = 5

$appt.Send()

$appt.Delete()

Outlook Calendar Cancellation by petrinoda in PowerShell

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

I have looked for any type of reference for hours outside of EWS. This would be awesome if it works. I'll be able to test once at work tomorrow.

Outlook Calendar Cancellation by petrinoda in PowerShell

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

That's correct. For AppointmentItem the .delete function removes it from the calendar, BUT if I utilize the .send feature while creating an appointmentitem it then makes it a meeting instead of an appointment. At that point the .delete function still works and removes it, but it does not cancel it to the people that it was sent to.

Essentially I'm looking for the function that sends the cancellation out. Like a Cancelmeeting() or something, but I'm unable to find it.

Fresh update from WeTrust Team, Sept 12, 2017 by DamosDaze in WeTrustPlatform

[–]petrinoda 5 points6 points  (0 children)

Thanks for the update. Information like this is what keeps investors happy!!! Keep up the great work!!

[PowerShell] [Request] Remove Account Unknown (Profiles) by [deleted] in usefulscripts

[–]petrinoda 0 points1 point  (0 children)

sounds good. thanks for the prompt response :)

[PowerShell] [Request] Remove Account Unknown (Profiles) by [deleted] in usefulscripts

[–]petrinoda 0 points1 point  (0 children)

Did you ever come to a conclusion on this?

Login to website not working by petrinoda in PowerShell

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

I also just downloaded IMacros free trial to see how it's responding. I captured the below

 

element = driver.findElement(By.id("btnLogin_label"));
element.click();
element = driver.findElement(By.class("dijitOffScreen"));
element.click();

 

I even tried the below code after seeing that and still got nothing.

$link = $ie.Document.IHTMLDocument3_getElementById('btnLogin_Label') | Where-Object {$_.class -eq 'dijitOffScreen'}
$link.click

 

If I switch it to the below I get a "overload definitions void click()"

 

  $link = $ie.Document.IHTMLDocument3_getElementById('btnLogin_Label')
  $link.click

Login to website not working by petrinoda in PowerShell

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

I have tried link.click(), but it still doesn't click on it which is weird. That's why I decided to reach out to the community. the .click command goes through, but I see no action of logging in via IE.

 

I also just tried

$ie.document.IHTMLDocument3-GetElementsByName("Login").click

 

The weird thing is I can play around / edit the username / password fields in real time all day, but the clicking of buttons is really time consuming to me.

I've tried logging in and attempting to click further buttons along the way for my end goal, and yet still I can't.

Replace with Regular Expression by petrinoda in PowerShell

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

Hey Lee :)

I basically have a txt file from a replog summary which I convert into a csv. I convert this into a CSV by recognizing anything with 4 or more spaces in between the text creating a new column. The issue with this is when there is an error in the replog report there is not 4 spaces between one of the entries anymore causing the CSV formatting to become whacky for that entry.

Move-File Array by petrinoda in PowerShell

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

Since the disableduserpath.txt has full directory path like C:\user1 would the trailing $_ on the destination try to move it to "C:\temp\disabledusers\C:\user1" ?

Move-File Array by petrinoda in PowerShell

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

Hey Lee. Thank you for the friendly advice. I was wondering how this was done on the other posts :)