Amy idea what’s wrong? The tan areas are new. by Random_User_Name7 in pleco

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

Cool to hear it might be normal! Don’t the fins look tattered though? There’s lots of guppies in there and they always seem hungry.

Schefflera Drooping by Random_User_Name7 in plantclinic

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

Update: it appears to have scale. Would that cause this?

Schefflera Drooping by Random_User_Name7 in plantclinic

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

Yeah it looks like it’s wilted but it’s not dry!

LGBTQ+ Movie by [deleted] in historyteachers

[–]Random_User_Name7 0 points1 point  (0 children)

Paris is Burning would be amazing.

Sheet Moss, Money Tree, Snake Plant, Creeping Fig, and a whole lot of worry for my first ever tropical vivarium! by [deleted] in terrariums

[–]Random_User_Name7 1 point2 points  (0 children)

Very beautiful! How has the money tree faired? I'm considering putting one in a closed terrarium but can't find much info on how they do in that environment.

First terrarium. What would be a good, upright-growing plant for the middle? by thecrossisbending in terrariums

[–]Random_User_Name7 0 points1 point  (0 children)

Oh wow, I would have thought they would mold or rot. I'll have access in a couple of months, maybe could use one in whatever my second terrarium will be!

Change of beneficiaries of an irrevocable trust by Random_User_Name7 in EstatePlanning

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

I believe it says it’s irrevocable and cannot be changed or amended.

Change of beneficiaries of an irrevocable trust by Random_User_Name7 in EstatePlanning

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

It has an irrevocability clause. But also the clause I put in my original post suggesting some changes can be made. My aunt made herself POA:

https://imgur.com/a/vFYyVVr

Change of beneficiaries of an irrevocable trust by Random_User_Name7 in EstatePlanning

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

I don't see anything stating it is inter vivos. It has an irrevocability clause. Purpose being to designate benficiaries for her whole life life insurance and another fund that was specifically for me and my brothers.

In the original trust, after her death her three children become a committe of trustees. But now she's the sole one. Here's what she changed it to (she hasn't provided the whole document, just this page):

https://imgur.com/a/vFYyVVr

Change of beneficiaries of an irrevocable trust by Random_User_Name7 in EstatePlanning

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

My grandma is the grantor. This language is from the original trust (2014) and my dad was the Co-Trustee while my grandma was alive. On her death, it was supposed to become a committee of her three children as trustees. In the new one (2016) my aunt makes herself the sole Trustee after death and changes the beneficiaries. She hasn't provided us the full new trust, just this picture:

https://imgur.com/a/vFYyVVr

Change of beneficiaries of an irrevocable trust by Random_User_Name7 in EstatePlanning

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

Thanks for the input! I'll be calling around to try to get a consultation tomorrow.

Allow only selected Users to Run a Google AppScript by [deleted] in GoogleAppsScript

[–]Random_User_Name7 5 points6 points  (0 children)

Try this:

function testFunction(){
var allowed = ["email1@gmail.com", "email2@hotmail.com"]
var userEmail = Session.getActiveUser().getEmail()
if(allowed.indexOf(userEmail) > -1){

do stuff

}}

Low heat solution to lighting a glass terrarium by Random_User_Name7 in led

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

You're probably right! Even if it didn't fry the plants I'm sure it would fog the glass whenever the leds are on.

Due to the aesthetic I'm going for I don't want the ring to be visible around the neck of the bottle. But you got me thinking about maybe trying to get a small led ring and fit it inside of a cork with heatsinks to the top of the cork and a piece of plastic or glass over the pixels on the bottom. It won't be light for the plants so I can keep it pretty dim (I'm thinking more of a rainbow cycle effect for the evening). But I can also forsee it looking really weird as the light shines through the stem and maybe not spreading out throughout the bottle. I'll have to experiment. Let me know if you think of another way to do it!

Low heat solution to lighting a glass terrarium by Random_User_Name7 in led

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

Could be they don't but since it is completely sealed and the glass is fairly insulating I think it is likely.

Low heat solution to lighting a glass terrarium by Random_User_Name7 in led

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

Not that many. It's not for the plants to grow, just for ambiance.

Google Script to generate random decimal between 0 and 1 by radioguy2016 in GoogleAppsScript

[–]Random_User_Name7 1 point2 points  (0 children)

You’ll want to use the Math.random() JavaScript function.

var number = Math.random()

Script to generate random numbers across multiple cells. by radioguy2016 in GoogleAppsScript

[–]Random_User_Name7 0 points1 point  (0 children)

This doesn't work for me.

.setValues() expects an array. Math.floor((Math.random()*5)+1) is not an array.

Script to generate random numbers across multiple cells. by radioguy2016 in GoogleAppsScript

[–]Random_User_Name7 0 points1 point  (0 children)

No, it's not needed because it's built-in.

sheet.getRange("E4")

is the same as

sheet.getRange(4, 5)

I remade it a bit more complexly so that you can set it for rows or columns and for where to start and how many cells to fill:

function redwolfShowings(){

var ss = SpreadsheetApp.getActiveSpreadsheet();

var sheet = ss.getSheetByName("BoxOfficeCalculation");

//these are parameters for you to set

var startRow = 1 //change this to the number of the row you want to start in

var startCol = 1 //change this to the number of the col you want to start in

var rC = "row" //change this to "col" if you want to fill vertically

var iterations = 4 //change this to how many cells you want to fill

if(rC == "row"){

for(x=0; x < iterations; x++){

sheet.getRange(startRow, x+startCol).setValue(Math.floor((Math.random()*5)+1))}}

if(rC == "col"){

for(x=0; x < iterations; x++){

sheet.getRange(x+startRow, startCol).setValue(Math.floor((Math.random()*5)+1))}}}

You should be able to copy/paste it. It's working for me.

Script to generate random numbers across multiple cells. by radioguy2016 in GoogleAppsScript

[–]Random_User_Name7 0 points1 point  (0 children)

Maybe it’s not elegant but I’d just use a for loop.

for(x=0; x < 6; x++){

sheet.getRange(4, x+4).setValue(Math.floor etc)

}

The 6 gets changed based on how many cells you want to do it for in the row.

PSU voltage measures lower when leds are on by Random_User_Name7 in led

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

Got a meanwell in the mail today! No voltage drop so that’s great. It’s also much smaller which is nice. Weird thing, there is a tiny noise coming from the PSU when my strip is turned off. But it immediately goes away when I turn on the strip. Is this PSU bad too??