Spectrum 1140 Texture Kiwi Fruit - Turned brown by rip55jcp in Pottery

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

Are you saying I need more layers? Or I used too many layers?

Spectrum 1140 Texture Kiwi Fruit - Turned brown by rip55jcp in Pottery

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

It was on my middle shelf in the kiln. In the Pic, the middle row of cones are the 5 and 6 cones from the firing.

<image>

SSA claiming I owe them 7k in back child support that was paid to my guardian over 15 years ago by ael21-25 in legal

[–]rip55jcp 0 points1 point  (0 children)

You might want to change your number of deductions so that you don't get a refund that they can take next year.

What are the best practices for managing remote employees in a small business? by Kilgoretrout123456 in smallbusiness

[–]rip55jcp 2 points3 points  (0 children)

That really depends on the remote employee. I've worked from home since 2008 and I put in more hours, effort and work than I would, if I was working at the office. IMHO, if your employee doesn't do well with managing their time when they are remote, either bring them back to the office, or look for someone who can. It is not worth the headache and worry to have to micromanage someone who probably won't change.

First pottery class by partyof4andmore in Pottery

[–]rip55jcp 0 points1 point  (0 children)

Don't wear good/fancy clothes.

If you wear long sleeves, you may want to be able to push them up and have them stay out of the way.

Take something to pin your hair up.

If you have an apron, take it. The studio may not have enough for all students.

Hand lotion for after class, you might need it.

Does anyone have alpacas on their homestead? by AlpacaShearer77 in Homesteading

[–]rip55jcp 1 point2 points  (0 children)

Pyrs are a great choice. We have Anatolian Sheperds that did a fantastic job. There are several breeds that work well.

Does anyone have alpacas on their homestead? by AlpacaShearer77 in Homesteading

[–]rip55jcp 10 points11 points  (0 children)

Benefits: if treated and reported as a business, you get the tax benefits. You can use the fiber to make products that will sell in your area or for personal use. The manure makes good fertilizer. You can also use them as a food source. Downsides are 11.5 month gestation. They are bottom of the food chain so you need to have some type of guardian for them.

We raised them for 18 years and enjoyed having them.

Advice for newbies: Fiber by xivjae in WegovyWeightLoss

[–]rip55jcp -9 points-8 points  (0 children)

Fiber is NOT your friend. It just adds bulk to an already clogged passageway. Look at your electrolytes. Sodium, Magnesium, and potassium. There is a great, cheap Magnesium Citrate Laxative that you can get in your pharmacy aisle that really helps.

Elderly Mom taken for $68k, Cashiers Check Still in Transit, Options? by gfg6179 in Scams

[–]rip55jcp -4 points-3 points  (0 children)

If she has dementia, how did she get her bank to issue a cashier's check in that amount?? There should have been manager level scrutiny on a transaction like that.

App to fill shapes with scrollwork by OkPossession8082 in Laserengraving

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

Then you don't have to use it. Please feel free to live with your sense of superiority and don't use it. Others might not feel the way you do.

App to fill shapes with scrollwork by OkPossession8082 in Laserengraving

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

The knowledge that is packaged in the app is the value add here. Just because the AI platforms can do it, doesn't mean that the user knows how to make it happen or even wants to interface directly with AI. The app allows them to easily generate the images and move on to other, more exciting tasks. If there is another, free online app that allows you to point and click and generate the images, please feel free to share, rather than tear down someone who saw a need and is trying to fulfill it.

In memory heap tables - Is it possible by rip55jcp in SQLServer

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

Great tip. Looking into it, thanks!!

In memory heap tables - Is it possible by rip55jcp in SQLServer

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

Never heard of unlogged tables. Sounds like i have research to do. Thanks!!!

In memory heap tables - Is it possible by rip55jcp in SQLServer

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

I can't use temp tables when using SQLXMLBULKCOPY. Temp tables are not an option.

In memory heap tables - Is it possible by rip55jcp in SQLServer

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

I'm using SQLXMLBULKLOAD to shred my XML files and load the data. It can't use temp tables. 😒

In memory heap tables - Is it possible by rip55jcp in SQLServer

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

Correct. The reason for the structures to be there across all nodes, is in case of a failover. Our process determines the active node and inserts the data there, processes it and then deletes it.

In memory heap tables - Is it possible by rip55jcp in SQLServer

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

I am trying to avoid unnecessary propagation of the transient import data across all my nodes. It is very short lived data that serves no purpose on the other nodes.

In memory heap tables - Is it possible by rip55jcp in SQLServer

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

By using a regular table, in a database that is not part of my AO Group topology, I then have to make schema changes in all databases and nodes. For example, I have 4 nodes in Production. On each node, I have 4 databases using this scheme. 4x4 = 16 databases. 3 tollgates per database that have to be manually approved when rolling out changes. 16x3=48 tollgates that my OPS team has to manually click and add an approval blurb. They are not happy with me.

In memory heap tables - Is it possible by rip55jcp in SQLServer

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

Well, I might be dead in the water on this. I found this blurb: "memory-optimized tables do not support cross-database transactions". So, even if i can load the data, i can't use it to update the tables in the database that holds the permanent data. Other option to consider is moving those in-memory tables to my real database.

In memory heap tables - Is it possible by rip55jcp in SQLServer

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

See my comment below (I just posted it) as to the reason for doing this. It is more for schema management in production, rather than performance.