codesandbox-client icon indicating copy to clipboard operation
codesandbox-client copied to clipboard

An online IDE for rapid web development

Results 384 codesandbox-client issues
Sort by recently updated
recently updated
newest added
trafficstars

# 🐛 bug report ## Preflight Checklist - [x] I have read the [Contributing Guidelines][contributing] for this project. - [x] I agree to follow the [Code of Conduct][code_of_conduct] that this...

# 🐛 bug report ## Preflight Checklist - [x] I have read the [Contributing Guidelines][contributing] for this project. - [x] I agree to follow the [Code of Conduct][code_of_conduct] that this...

Bumps [webpack](https://github.com/webpack/webpack) from 4.31.0 to 5.94.0. Release notes Sourced from webpack's releases. v5.94.0 Bug Fixes Added runtime condition for harmony reexport checked Handle properly data/http/https protocols in source maps Make...

dependencies

Now the _huge_ houskeeping PR has been merged, I can do some more tiny cleanup. These fields have been deprecated / resolved to a hard-coded value in the API for...

1

2 comment

# 🐛 bug report ## Preflight Checklist - [ ] I have read the [Contributing Guidelines][contributing] for this project. - [ ] I agree to follow the [Code of Conduct][code_of_conduct]...

💥 Crash Report What were you trying to accomplish when the crash occurred? > Please use this issue template to describe what you were doing when you encountered this crash....

💥 Crash Report What were you trying to accomplish when the crash occurred? > Please use this issue template to describe what you were doing when you encountered this crash....

💥 Crash Report What were you trying to accomplish when the crash occurred? > Please use this issue template to describe what you were doing when you encountered this crash....

import hashlib import json from time import time from uuid import uuid4 class Blockchain: def __init__(self): self.chain = [] self.current_transactions = [] # Create the genesis block self.new_block(previous_hash='1', proof=100) def...