youknowone's comments

youknowone | 4 months ago | on: New South Korean national law will turn large parking lots into solar farms

The article is a bit misleading.

The new law requires the installation of solar panels in all *public* parking lots operated by the government. I checked this through local news sources.

In South Korea, there are already incentives to install solar panels on buildings, including parking lots. If you operate a solar power system with a capacity of over 20 kW, you can sell the generated electricity at prices higher than the market rate thanks to government support programs.

Despite these benefits, many parking lots in South Korea still do not install solar panels. This is mainly because, given the country’s high population density, most parking lots are located on land that is considered potential development sites. Once solar panels are installed, it becomes more difficult to change the land use later for development purposes, and the owners would also have to bear additional costs for removing the panels.

youknowone | 2 years ago | on: RustPython

Our team tends to drilling on code more than writing. I know it is not a strategic good way though. Any idea what do you expect to see on the blog?

youknowone | 2 years ago | on: RustPython

Thank you for working with RustPython. I believe kybra made RustPython wasi support a lot more stable.

youknowone | 2 years ago | on: RustPython

If Python community and CPython developers were more open to PyPy, many things could be changed. A group of people talks about how good having a third-party interpreter in Python community while the whole Python eco-system is heavily relying on the old (maybe good-enough) Python C API.

Whenever I meet a C API issue on RustPython project (yes, I contribute to RustPython), I think about PyPy, and check what's going on C API, and realize 15 years was not enough to change things. Now the momentum of PyPy is not that strong as before. I believe Python community lost a huge chance.

Hope HPy or something can save PyPy. Maybe RustPython also will get a chance around there.

youknowone | 6 years ago | on: Ring: Advanced cache interface for Python

Thanks. I didn't think adding them to the why page. For now, the actual projects work like:

  if DEBUG:
      ring_cache = functools.partial(ring.dict, {}, default_action='execute')
  else:
      ring_cache = functools.partial(ring.redis, client)

  @ring_cache(...)
  def ...

Which is not very good solution at all. I will fix the design and properly document it. Thanks for suggesting why page and mock section.

youknowone | 6 years ago | on: Ring: Advanced cache interface for Python

I agree they are missing features but still they are easy goal with small refactoring so it will be solved soon. Issue #129 is about application default. After that, dryrun is just replacing default action from 'get_or_update' to 'execute'
page 1