Proposal: Open browser if query is bad
See original GitHub issueIn case I am not happy with the results, I do:
- Copy the query string (
howdoi *QUERY*
) - Open browser
- Paste Query
- Press ENTER
- Open the first 5 tabs to do a more thorough research
What about automating these steps with a howdobrowser
?
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:7 (2 by maintainers)
Top Results From Across the Web
a SQL query performance killer – the basics - SQLShack
Poor query design is one of the top SQL Server performance killers. Even with good database design, no frequent recompilations, ...
Read more >Performance Tuning SQL Queries | Advanced SQL - Mode
It can be especially bad if others are running particularly resource-intensive queries that fulfill some of the above criteria. Database software and ...
Read more >Are Bad Statistics Making My Query Slow? (Dear SQL DBA ...
Learn how to use query execution plans to get to the heart of the question and find out if stats are really your...
Read more >Query Processing Architecture Guide - SQL Server
How SQL Server processes queries and optimizes query reuse through execution plan caching.
Read more >SQL Injection - OWASP Foundation
A SQL injection attack consists of insertion or “injection” of a SQL query via the input data from the client to the application....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I like @Omar-Elrefaei 's implementation (https://github.com/gleitz/howdoi/pull/173) in general because of better UX. It’s just an
-b
and it opens the tabs in the browser.Thus I would prefer to see the PR getting towards upstream.
@MathiasRenner From the README
pip install git+https://github.com/Omar-Elrefaei/howdoi.git#egg=howdoi
, I Just changed the user so you can get the fork. (This will remove the old version)also you can clone localy, then install
python setup.py install
(This also will remove the old version)or you can clone localy and add
alias how='cd /path/to/dir/ && python -m howdoi.howdoi'
into your~/.bashrc
, now you can use both.howdoi
for the old version, orhow
for the new oneHope that helps