Almenon

Results 181 issues of Almenon

This converts renderjson to typescript. Typescript has a number of benefits like type safety, catching common mistakes, easier refactoring, and better intellisense. It also adds tests to make sure things...

I recently converted [python-shell](https://github.com/extrabacon/python-shell) to typescript, Also see my [medium article](https://medium.com/@almenon214/converting-python-shell-to-typescript-8768162d3a55). (cause every two-bit dev has to have a medium article now right? :P ) Eventually I want to implement...

It would be nice to have truncation paramater in case there are too many items. set_show_to_level is useful in this regard, but it doesn't cover cases in which there are...

Looks like netlfix roulette was bought by reelgood and they stopped providing the API. I was using the API for my [reddit bot](https://github.com/Almenon/reddit_episode_bot). Is there any other netflix API's I...

cause I'm too lazy to move my mouse over to that icon all the way in the right... or for those l33t hacker keyboard masochists who don't even have a...

enhancement

**Works:** ```python print('a'*8190) # a's show up ``` **Doesn't work:** ```python print('a'*8191) # a's don't show up ``` Interestingly the output log for the extension still shows characters, it just...

bug

This is a minor problem and a easy fix. `raise Exception('hi')` - wolf works `raise BaseException('hi')` - wolf doesn't output anything fix: in wolf python code catch BaseException instead of...

good first issue
bug [Python]

99 bugs left on the wall, take two down, pass them around, 99 bugs left on the wall! But seriously, it's getting harder to find bugs now, so you're making...

bug

Pop-up or something for the user to type in input Alternatively, some sort of message telling the user that wolf does not handle input ``` x = input() print(x) #...

enhancement
needs research