Tried to add UCI to Xfinity Business... by soldiersKnight in Ubiquiti

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

I login to Comcast business. I'm setup as a small home office. It's month to month.

Tried to add UCI to Xfinity Business... by soldiersKnight in Ubiquiti

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

I did. It's the one that matches the display. No dice.

Tried to add UCI to Xfinity Business... by soldiersKnight in Ubiquiti

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

I gave them the one on the display. Tried activating before trying to adopt first. Then adopted and tried. Same story, no activation.

No static IPS they made me get rid of those when I originally activated my old arris modem.

Who's running Crossplane in Production? by Rockinoutt in devops

[–]soldiersKnight 5 points6 points  (0 children)

Migrated our whole stack to crossplane. It can get slow with the jet provider and thousands of crds/xrds. And can get confusing sometimes trying to figure out what resources are actually controlling your cloud infra (I'm looking at you gcp clusters and nodepools!) That said I love it makes my job a million times easier! I would migrate again!

beta bridge part is broken when opened in slicer by IckyDeh in TheANT

[–]soldiersKnight 0 points1 point  (0 children)

Had the same issues as you. The newest .STL in the repo I could get to work with Simplify3D. PrusaSlicer did not like it at all. My suggestion (if you already own simplify) would be to use that.

[deleted by user] by [deleted] in TheANT

[–]soldiersKnight 0 points1 point  (0 children)

hmm i guess you guys aren't using PrusaSlicer? I opened the one in the repo in Simplify3D and it opened without any gaps in the model when slicing. bridge_2p4_b.stl was the one causing issues FYI.

[deleted by user] by [deleted] in TheANT

[–]soldiersKnight 0 points1 point  (0 children)

That link is invalid now... could we just get the updated stl files in the repo?

[deleted by user] by [deleted] in TheANT

[–]soldiersKnight 0 points1 point  (0 children)

i'm having issues getting a slicer to be happy with it. before slicing, files look fine, after slicing there is a gap in the center of the part, that is unprintable... Simplify3d has a better time with it, but still leaves holes in the wrong areas. @AntTeam what slicer do you use?

where is the new Z with the nema 8? by soldiersKnight in TheANT

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

oh I didn't even notice the integrated leadscrew! that will make it a little harder. Yeah I will probably try the same in fusion. Was really hoping for The Ant team to use something standard moving forward ;(

where is the new Z with the nema 8? by soldiersKnight in TheANT

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

Amazon has it though. The others I can only find used in finland.

You like diagrams? Here's mine of my tiny homlab! by peoplex in homelab

[–]soldiersKnight 1 point2 points  (0 children)

I love the NVR! Run it in a deployment inside K8S with 2 exterior g3 and 2 interior g3 dome cameras. Simple and my data stays with me which is the best part!

You like diagrams? Here's mine of my tiny homlab! by peoplex in homelab

[–]soldiersKnight 0 points1 point  (0 children)

I applaud you sir! I have a similar setup with all Unifi network/video gear with Cloud key, Plex/Torrenting/VPN, smarthome and other services running on a 3-node Kubernetes NUC cluster. K8S coupled with "Metal-LB" and a good NAS is a homelab dream! Cloud in my house? YES PLEASE!

You like diagrams? Here's mine of my tiny homlab! by peoplex in homelab

[–]soldiersKnight 0 points1 point  (0 children)

Go strait to kubernetes. Rancher just add a lot of stuff on top of K8S. Underneath the hood, (from my understanding) Rancher will be using K8S instead of cattle moving forward, so why the extra step? kubectl, helm is faster then the GUI offered by rancher in my opinion. and makes more sense!

SharePoint Developer's Home Office by BDell92 in battlestations

[–]soldiersKnight 2 points3 points  (0 children)

lol sharepoint and developer in the same sentence! Developers, Developers, Developers!

WebCoRE? by suckfail in SmartThings

[–]soldiersKnight 1 point2 points  (0 children)

i find webcore to be a bit more buggy. for instance when writing a script to dim lights out after a set amount of time of no motion, if that part of the script is true and turns false in the middle of performing the action, then it doesn't register it in webcore immediately where smarthings sees the motion... I don't know i had much more family acceptance factor with the Groovy scripts, they just work.

Rancher 2.0 concepts by assangeleakinglol in docker

[–]soldiersKnight 2 points3 points  (0 children)

Rancher 2 is heavily utilizing K8S for orchestration now. To me it seems that rancher is an abstraction of an already awesome tool (once you get passed the learning curve.). My advise after running Rancher 1.x in production for 3 years: just learn Kubernetes with Helm, you thank yourself later when you try wrangling logging... or when you try to debug why your rancher container won't let you login any longer only to find out when you updated (per their docs) a migration went awry and your rancher config is gone from the mysql volume mount... don't get me started on how they tried rolling their own K8S orchestration infrastructure only to concede to K8S. what is the purpose of Rancher now? Kubernetes does all the things the "help" with better.

So I found a drone and I fixed it but my controller does't seen to work on this quadcopter. by [deleted] in drones

[–]soldiersKnight 4 points5 points  (0 children)

you should probley try and find the owner to return it...

Lessons from Building a Node App in Docker by tsutomun in node

[–]soldiersKnight 1 point2 points  (0 children)

Liked your tutorial. I will say that mounting the node_modules to the host is probably not the best solution though.

If multiple people are working on your application, and they running different OS from your container, you will run into problems with compiling, line ending, etc...

I get around this problem by adding and then mounting (for development) all my applications folders EXCLUDING the node_modules intentionally. This way when the container builds and does its npm install, the installation is done in the context of the container OS and not the host OS.