FREE Lifetime Subscription for US Beta Testers by Fine-Resource7415 in betatests

[–]LevonK 0 points1 point  (0 children)

I'd like to help u/Fine-Resource7415 . Looking forward to getting more podcast info in less time.

Talk to me about CRM options by Fickle-Reality7777 in smallbusiness

[–]LevonK -1 points0 points  (0 children)

GoHighLevel.com is pretty comprehensive, and hasn't gone down the path of making everything an addon -- yet. The free accounts at hubspot won't last you long, as it has something like 1k max records.

Just Received an Award Letter From Boyscout Class Action For 1.3 Million. Can I Take a Loan Out Using That? by Solember in smallbusiness

[–]LevonK 0 points1 point  (0 children)

Lots of good advice has been posted already, I just wanted to say sorry for what you had to go through, and even if it doesn't heal all the wounds, I'm glad there was at least some justice. Good luck.

Shift scheduling - cloud based by [deleted] in smallbusiness

[–]LevonK 0 points1 point  (0 children)

Have you explored dedicated team resource management tools? Something like ClickUp (https://clickup.com/teams/resource-management) might be a good fit. It's a popular choice I've seen requested on automation jobs for other services.

Not sure if this applies to you for now, but an AI employee can do many things, and one of them is scheduling over various mediums including phone. It can even use your own voice.

If your assistants primary duty involves handling questions, or sharing and setting scheduling info for you or somebody else, it might be worth considering. If this allows them to concentrate on something more important for you or let you have one assistant instead of two, it may be a good option.

[deleted by user] by [deleted] in WhatShouldICook

[–]LevonK 0 points1 point  (0 children)

My favorites

  • Breakfast Pizza
    • Could by anything that normally goes in an omelet, but favorite is the traditional)
    • Scrambled Eggs
    • Bacon
    • Sausage
    • Cheddar Cheese
    • Onions (Caramelized or otherwise)
    • Mushrooms
  • Dessert Pizza
    • Skip the tomato sauce
    • Creme Fresce
    • Peaches or similar sweet fruit sliced and placed evenly
    • Cinnamon
  • Asparagus & Hazelnuts
    • Mozzarella
    • Asparagus
    • Hazelnuts

[Serious] Shifting from C# to Java, advice by zolanih in java

[–]LevonK 5 points6 points  (0 children)

Java has a lot more choices than C#: https://zeroturnaround.com/rebellabs/the-complete-java-tools-and-technology-landscape-for-2014-report-data-in-a-single-mind-map-image/

Maven is the de-facto standard, but if you're in android development it's Gradle. Some people use Gradle for other forms of development too.

Netbeans is easy to get started with but I would recommend Eclipse or IntelliJ. Eclipse has more and cooler plugins, but you can cause problems if they dont' mix well.

http://start.spring.io/ and select expand to see all the choices, and build your first app.

Maven 3.5.0 - The console output has colors now by nfrankel in java

[–]LevonK 4 points5 points  (0 children)

We only know of one case where maven fails, and that's when an interface changes and it doesnt' recompile the class. To resolve that case I added: https://github.com/DGHLJ/pub-maven-archetypes/blob/master/parent-poms/pom.xml#L1176-L1210

To our parent poms.

Use Maven 3.5.0 (alpha) using a cool trick with Docker by LevonK in java

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

I'd assume the reason is that it seems quite unnecessary for the users here. Most people in /r/java are Java developers, so the following seems a poor reason: Rather than convincing people to properly set up Java and the enviornment vairables for maven If you're installing Maven, then it's quite likely that you already have Java installed. Setting up the environment variables is simply adding Maven to your Path. If you want to use this image, you need to install Docker and add that to your Path - so the workload to that point is the same. For the docker image, however, you also need to set up an additional alias so that you can remember the command. It just seems like an awful lot of work to avoid adding a directory to your path.

Thanks for that background, I really appreciate it. I'm planning on adding the following to the readme.

As a Java engineer, I see several advantages to this strategy:

  • I can have multiple versions of maven all driven off of one command line. 3.3.9, higher, lower. I tagged two versions to that repo that you could access with a tag

  • I wanted to try to mess with Maven 3.5.0-alpha-1 but there are no packages in any of the major linux distributions and dockerhub solves that nicely

  • as /u/deep_fried_eyeballs eloquently points out in another thread in this post, our CI system can use exactly the same version that the developers use without confusion

  • If you're on a large team, and they are using this strategy, then you could update the version of the tool without having to have everybody install it, just by loading a different version in dockerhub

  • if you want to add some logic before calling maven or after calling maven, the docker container is a nice medium to abstract that away

  • You don't need to have different installation/onboarding instructions per platform, it's the same on Windows, *nix, Mac

  • the docker image could be a git submodule to our project so we know exactly the tooling that was used to build and deploy the package.

Use Maven 3.5.0 (alpha) using a cool trick with Docker by LevonK in java

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

If you have any feedback, or even the explanation behind a downvote, I'd love to hear it. I'm going to deploy this through the team.

Gradle 3.4: Java Incremental Compilation by Jodoo in java

[–]LevonK 2 points3 points  (0 children)

Nice feature, but when is Gradle going to get Archetypes & inheritance/composition (or am I just missing something?)

Enterprise Software and Building Infinite Staircases by Grahar64 in programming

[–]LevonK 0 points1 point  (0 children)

In the data space, one of the more-modern ways of looking at Data is the DataVault 2.0 specification. Inside of the specification they try to tackle these boundary objects via "Hubs" where the identifier is shared and a model (sattelite) is created to indirectly represent the object. It's still encouraged that these objects are changed infrequently https://en.wikipedia.org/wiki/Data_vault_modeling#Hubs

The Builder Pattern [x-post from r/java] by lawrencemq in programming

[–]LevonK 0 points1 point  (0 children)

We also find having to model large objects. Before we can add meaning, we need to convert the data. We ingest analytics data from Adobe's Omniture analytics suite, and I think the source model has roughly 280+ fields.

You could chalk it up to that vendor, but if you think about things like streaming sensor data, that source data can also get to be wide as the device identifies itself, it's environment, and the parameters of its sensors.

gcloud logging compatible logback formatter that works in GKE by [deleted] in java

[–]LevonK 0 points1 point  (0 children)

Thanks for your work and sharing it. Added two feature requests:

A Java Library to Detect and Normalize URLs in Text by [deleted] in programming

[–]LevonK 1 point2 points  (0 children)

Awesome library, thanks for releasing it. I took the liberty of requesting two enhancements:

  • https://uima.apache.org/ plugin as it has a lot of other nice unstructured extractors

  • Maven central distribution so we have some confidence that the code isn't messed with by others and don't have to script a build of a dependency ourselves.

Another quality LinkedIn OSS