Md. Almas Ali
Md. Almas Ali
How can we get post from a tag ? Like we can get post tags like : "$post->tags();". My question is "$tag->posts();" get all post by attached tag. Let me...
External script tags like Google Analytics, Adsense etc other tags require to inject on html page. How can we handle this? Currently we don't have any way to handle this...
**What's the problem this feature will solve?** We can activate a `virtualenv` by just typing `workon env_name`. This feature exists in some other virtual environment packages in Pypi. But I...
`bash -c "$(wget -q https://raw.githubusercontent.com/OpenBangla/OpenBangla-Keyboard/master/tools/install.sh -O -)"` ```bash |-------------------------------------------------------| |-----Welcome to the OpenBangla Keyboard installer------| |-------------------------------------------------------| This helper script will install/update OpenBangla Keyboard in your system. You might need to...
**Is your feature request related to a problem? Please describe.** It will make Radon more powerful. **Describe the solution you'd like** A sample example. ```radon try { 1/0 } catch...
Couple of things are going to be changed with this proposal. Currently we have `include` keyword to handle imports. - [x] We will replace `include` with `import`. ```radon import stdlib...
Our hole codebase need to refactor as soon as possible before it’s too late. We have to support `type annotations` before too much unknown bugs encounter. We will make sure...
I tried this code: ```radon # this works value = json.loads(response_post) assert value["id"] == 101 # this don't assert json.loads(response_post)["id"] == 101 ```