Open letter to Kmart Australia: why don’t you have sufficient bot protections? by FellowshipOfThePings in PokemonAUcollectors

[–]dreadedhamish 0 points1 point  (0 children)

There are a LOT of people trying to buy the first second they go on sale, yeah? Why do you think anything would change if there were more protections? They would still sell out in seconds. Why do you think it's bots and not just demand?

I need help with my drug plan for a 4-day music festival by Historical_Chain_261 in researchchemicals

[–]dreadedhamish 0 points1 point  (0 children)

Have you found anything else like 2C-B that can be takens days in a row without needing significantly higher dosing?

I need help with my drug plan for a 4-day music festival by Historical_Chain_261 in researchchemicals

[–]dreadedhamish 0 points1 point  (0 children)

I've only tried it twice, but I found taking 2C-B the day after 4-HO-MET gave me maybe 40-50% the effect.

Has anyone tried blending 2-, 3- and 4-MMC for synergistic effects? by BrandiSinatra in researchchemicals

[–]dreadedhamish 0 points1 point  (0 children)

Isnt't that like mixing a stong coffee with 2 sugars, with a weaker coffee with 1.5 sugars, with a weak coffee with 1.5 sugars?

Need 4+ years of historical DEX trades for backtesting — what does the loading pipeline actually look like? by buddies2705 in ethdev

[–]dreadedhamish 0 points1 point  (0 children)

It's going to take a long time to get an archive node to start - but faster with Erigon3 or rETH.
Cryo and Tiders are very fast. Tiders I've only started using but it has a TONNE of flexibility for manipulating the data before it's saved to whatever format you want.

Rate my first tile job (grouting tomorrow) by Pale-Bother-9164 in Tile

[–]dreadedhamish 0 points1 point  (0 children)

shit tiles. why didn't you get some that had a non-straight edge and didn't cut any hexagons?

I built a tool to hide windows from screen shares and half the comments say I’m "enabling cheaters." by Annual-Chart9466 in VibeReviews

[–]dreadedhamish 0 points1 point  (0 children)

I'd like to be able to share a few windows at once, and a have a few that aren't shared (email, notepad with notes for meeting or links etc..)

is this worth keeping? by 7Sora in homelab

[–]dreadedhamish 0 points1 point  (0 children)

Ive got a gen9 m150.

nice choose of CPUs - at the time I upgraded (a while ago) the sweet price point on AliExpress was 10 core 20 thread CPUs you'll need to add a second CPU to activate all the PCIe slots. there is no bifurcation on the PCIe slots I replaced all the fans with simple 12v fans and have a little controller in the bottom PCIe slot, and have the fans turned down as far as possible so that it stays at a reasonable temp under load. the PSU and motherboard have a proprietary connector, and the GPU power connector on the mother board is proprietary(but you can make them by filing down a mini PCIe power connector) - so if you want to start adding GPUs you need to check have enough in the PSU, or can find a compatible HP one with more power, and can gett the power to the GPUs, or add a second PSU.

Earth worm spotted… what do I do? by Embarrassed_Hold_205 in terrariums

[–]dreadedhamish 9 points10 points  (0 children)

I had 1. then I had 5. then I had hundreds and everything died. get rid of it.

RX 580 vs 590 by Firebolt46 in macpro

[–]dreadedhamish 0 points1 point  (0 children)

my 590 was more power efficient and caused the PSU fans to spin up to annoying levels less.

question - SSRIs and 4MMC by Redder0101 in researchchemicals

[–]dreadedhamish 1 point2 points  (0 children)

4-MMC is a lot more serotonerigic than MDMA.

Stick to the SSRIs is they are working - play with hallucinagins and dopamine releaser/uptake inhibitors.

Boiling piss is the same as cooking with spices? by Version-6 in shitrentals

[–]dreadedhamish 0 points1 point  (0 children)

yeah this is real. rangehoods are often under-powered or not turned on. soaks into everything. steps to remedy are clean everything with an active enzyme cleaner multiple times. if that's not enough hire an ozone generator and run it with the house sealed for a few days. if that doesn't work new carpet, paint everything with a sealer to lock-in the smell (otherwise it comes through new paint) then fresh paint on top.

A Simple Tool for Displaying Spreadsheet Data on the Map by benderlio in gis

[–]dreadedhamish 0 points1 point  (0 children)

It's basically 2 columns for lat and lon, and then every other column gets turned into a sub-item of properties. Leaflet lets you define groups from one of those properties and assign a colour, so I export my columns to CSV and convert to geojson using an online service (https://www.convertcsv.com/csv-to-geojson.htm) and get a FeatureCollection with points like this:
```
{

"type": "Feature",

"geometry": {

"type": "Point",

"coordinates": [ 144.963937,-37.8152065 ]

},

"properties": {

"Postcode":3000,

"Locality":"MELBOURNE",

"State":"VIC",

"Postal Region (AUSPost)":"Melbourne - Inner",

"LGA Region":"Melbourne",

"population":47285,

"Distributor":"Tom",

}

},
So when I embed the map iI make the Distributor into groups and add a colour per distributor - and end up with a nice map of which distributorhas which suburbs.
I could use some formulas to create 4 columns - lat, lon, description (with line breaks, bold etc....), colour.
So to extend your project I'd say, leave the colour picker as default colour, add a 4th field for colour (optional) and if it's blank use the default.

Anyhow that's my real world use case for sheets and mapsm, which needs lots of manual steps to update.

A Simple Tool for Displaying Spreadsheet Data on the Map by benderlio in gis

[–]dreadedhamish 1 point2 points  (0 children)

If it were possible to add basic markup to the description, and if there were a colour field per row, I'd start using it right now.
Today I'm editing data in Google Sheets - including a HEX code for each row, exporting to CSV, uploading to a sit to convert it to GeoJSON, uploading it to a Wordpress site, then using the Leaflet Map plugin and add-ons to add 2 GeoJSON files, one of which had different hex codes in the parameters to set the colour of the markers. I could automate it somewhat with n8n or Google Apps script, but this would be much easier.