• 1 Post
  • 59 Comments
Joined 11 months ago
cake
Cake day: September 5th, 2025

help-circle







  • Well, there’s the guerrilla option, but it’s significantly more difficult with trees than it is with flowers or smaller plants.

    Best is if you can find native species that are threatened with extinction or some kind of tree that is beneficial to threatened native insects or birds that enjoy a protected status. Any protected status could help keep the project alive even if it was not sanctioned, but it’s still a struggle to do guerrilla style.

    Do some research about the types of trees that will easily grow in your environment without any/much watering or fertilizing beyond getting them established, which can be anywhere from one to five years depending on how harsh the climate is and how tough the tree is.

    And for acceptance from the city, go for fruitless varieties. They will typically balk at anything that produces fruit because it attracts rodents and will require maintenance. Also avoid trees that sucker easily or sprout prolifically from seed, especially if they’re going near sidewalks.

    Also do the research on how much asphalt, cement, sidewalks, parking lots, etc. contribute to increasing temperatures and the difference when they’re shaded by trees. It’s a substantial difference.

    If you can present a plan to whoever is in charge near you that offers them a way to win points on the environmental arguments without adding any type of city workload or responsibility, you might just be able to pull it off with their blessing or even some financial support. You can try framing it as a community project or community outreach project. Try to get the trees discounted or donated by local nurseries in exchange for some kind of advertising. Get the planning and planting done by volunteers. It’s a win-win for everyone.

    Alternatively, you can get a bicycle or even an e-bike. The higher efficiency and speed means you’re using less energy and staying cooler doing it. And as a bonus you can explore more widely, covering more ground in the same amount of time, and even use it for transporting things from the store or going to work.

    Best of luck to you!

    Edited to add: Make sure the planting is at least done under the guidance of someone who knows how to plant trees. It is actually quite easy to fuck that up and ruin the trees prospect for survival.





  • No offense to you for pointing this out, but fuck him and his vacuous comedy farce. Stolen idea or not, Viénet’s use of appropriation has merit far beyond old 'woody fuck a child’s self aggrandizing theft.

    Edit to add: I would even argue that Epstein’s buddy Woody was merely feeding the idea of detournament, taken from the Situationists of the 50s, back into the capitalist machine like a well trained lackey, offering a simulacrum that was both de-fanged and profitable.







  • I don’t know how that could happen aside from you unmounting it from /mnt and remounting it under /media. Your fstab is mounting it under /mnt at boot. Until you change the fstab, it will continue to be mounted under /mnt every time you reboot, and you will continue to have to access it manually before it is truly accessible to the system. /mnt is a special mountpoint for temporary, manually mounted drives, not system drives or system partitions.

    You don’t have to use /media, but since other, removable media will be mounted there, I find it practical to keep everything together. Just create the mountpoint folder in advance and set the ownership and permissions (you have to do all that as root), and then fstab will happily mount it there once you change that entry as well.

    I also don’t think you should use

    auto nosuid,nodev,nofail,x-gvfs-show 0 0  
    

    in fstab, but you should instead be using

    ext4 errors=remount-ro 0 2  
    
    

    Keep in mind, if you mess up fstab, the computer will no longer boot. Be sure to check it before rebooting with:

    sudo findmnt --verify  
    

    Example fstab:

    UUID=4a7c4523-15a1-4552-b696-c0f510d57184 /media/schipelblort/4a7c4523-15a1-4552-b696-c0f510d57184		ext4	errors=remount-ro 0 2  
    

    Example mountpoint:

    /media/schipelblort/4a7c4523-15a1-4552-b696-c0f510d57184  
    

    It needs to be owned by schipelblort and the permissions can be standard 755 or 750.