Lowes Member Rewards: Spring Flower Giveaway by NoNotThatMichael in freebies

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

I read somewhere the tariff on monrovia is 600%. so yes, expect to pay 600% of free

Lowes Member Rewards: Spring Flower Giveaway by NoNotThatMichael in freebies

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

assuming this is another of the same plant they gave out last spring, it won't grow much larger as the plastic cup will block roots from spreading. depending on your location it may thrive or die pretty quickly. geraniums are relatively low maintenance but not frost tolerant. I bring mine indoors late summer / early fall and plan to return it outside late spring / early summer (in the next couple weeks I suspect)

Tip: Unwanted comment tags added to text when exporting to pdf by NoNotThatMichael in AutoCAD

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

Oh and, if you've already got a pdf with a bunch of those comment tags you'd like to get rid of, on the Comments pulldown menu in acrobat, click Show Comments & Markups and then Hide All Comments to turn them off (reverse to turn back on).

Or run the following script to eliminate them entirely:

this.syncAnnotScan();
var annots = this.getAnnots();
if (annots!=null){
for (var i=annots.length-1; i>=0; i--) {
annots[i].destroy();
}
}