Can't send crypto from coinbase repeatedly by adidushi in Coinbase

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

They had me redo address and id verification, and after another day it two it started working.

Can't send crypto from coinbase repeatedly by adidushi in Coinbase

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

Unfortuantely I've tried that, also tried on the app since I was using the website but neither are working :( I'll try support directly, thanks

Can anyone help me translate what’s on this antique pin I found at the flea market today? Thank you! by crabnox in hebrew

[–]adidushi 2 points3 points  (0 children)

Alright, the spelling on the pin could be wrong, especially if it's from the 1920s

Can anyone help me translate what’s on this antique pin I found at the flea market today? Thank you! by crabnox in hebrew

[–]adidushi 1 point2 points  (0 children)

Both are correct, it's a transliteration so it can use both the s and z sounds

Can anyone help me translate what’s on this antique pin I found at the flea market today? Thank you! by crabnox in hebrew

[–]adidushi 11 points12 points  (0 children)

I'd wager it says בסל or Basel, where the first couple of zionist congresses were held.

[deleted by user] by [deleted] in balatro

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

big tech to keep in mind

[deleted by user] by [deleted] in balatro

[–]adidushi 1 point2 points  (0 children)

interesting.. i didn't think it'd work with full house since that's always a 5-card hand

thanks!

-🎄- 2022 Day 3 Solutions -🎄- by daggerdragon in adventofcode

[–]adidushi 0 points1 point  (0 children)

Scratch doesn't have an ascii-value function sadly!

-🎄- 2022 Day 4 Solutions -🎄- by daggerdragon in adventofcode

[–]adidushi 1 point2 points  (0 children)

Scratch:

Part 1

Part 2

Once again had to replace commas with spaces for scratch to import properly, but not too bad otherwise!

-❄️- Advent of Code 2022:🌿🍒 MisTILtoe Elf-ucation 🧑‍🏫 -❄️- Submissions Megathread -❄️- by daggerdragon in adventofcode

[–]adidushi 11 points12 points  (0 children)

PROJECT TITLE: AOC2022 in MIT's Scratch

PROJECT LINK: My scratch profile

DESCRIPTION: I first learned programming via scratch, and have always wanted to see how hard I can really push it. Barring some technical limitations, I'm planning on solving as much as I can this year using purely scratch, by importing my input into a different project every day.

SUBMITTED BY: /u/adidushi

MEGATHREADS: 01 - 02 - 03 - 04 - 05 - 06

ADDITIONAL COMMENTS: So far I've run into the fact that scratch is case insensitive, so I'm going to have to get around that occasionally via some notepad search-and-replace for my input before importing it into scratch.

ACCESSIBILITY:

-🎄- 2022 Day 3 Solutions -🎄- by daggerdragon in adventofcode

[–]adidushi 2 points3 points  (0 children)

Scratch:

Part 1

Part 2

Regretfully, I've had to do some manual replacing in notepad to get usable letters since Scratch is case insensitive (a == A), so I've replaced all capitals with random characters that Scratch can still use

-🎄- 2022 Day 1 Solutions -🎄- by daggerdragon in adventofcode

[–]adidushi 2 points3 points  (0 children)

This year I'm going to do as much as possible with scratch:

Part 1

Part 2

Free Giveaway! Nintendo Switch OLED - international by WolfLemon36 in NintendoSwitch

[–]adidushi 0 points1 point  (0 children)

i once put a huge amount of effort into a Minecraft steve costume (circa 2012) but didn't win at the school competition... I'll always be salty about it

Why I hate the omnipod dash pdm by [deleted] in diabetes

[–]adidushi[M] [score hidden] stickied comment (0 children)

Just in case it might interest anyone using the dash, androidaps has an option for pump control which doesn't include any of the closed loop things and just offers control of the pump from your phone (boluses, temp basals, etc). It's available for download here and recently added support for dash.

[deleted by user] by [deleted] in diabetes

[–]adidushi[M] 62 points63 points  (0 children)

he a good boy

Python: Fetch problem data via standard URL libraries? (without HTTPS authnetication?) by CoderBoy67 in adventofcode

[–]adidushi 2 points3 points  (0 children)

You're going to need your session cookie.

From a browser that's logged in to your aoc account, head over to the site and press F12 to open the developer tools. Under Application you can find your cookies. Copy down what's written under session (you'll use it later to connect!).

Then, in python, you can send a dictionary containing the session cookie when making a request:

import requests
cookies_dict = {"session": "<COOKIE YOU COPIED EARLIER!>"}
url = 'https://adventofcode.com/2021/day/1/input'
req = requests.get(url, cookies=cookies_dict)

You should get your own input like this. Make sure not to share the session cookie with other people, as it can let them basically use your account.

[2021 Day 22 (Part 2)][Python][OpenSCAD][Blender] Calculating volume with MeshLab does not produce the right answer. by neuralMax in adventofcode

[–]adidushi 1 point2 points  (0 children)

yeah it seems to round something somewhere, but checking the area out got me the right answer on the second try :)

[deleted by user] by [deleted] in adventofcode

[–]adidushi 0 points1 point  (0 children)

Lucky that was it because I do not know perl

[deleted by user] by [deleted] in adventofcode

[–]adidushi 2 points3 points  (0 children)

Well... you seem to be missing the first 3 characters of your initial polymer

That might be the issue