Remember when you export dBeaver settings some of the files are hidden, which means they start with a period.
New AI Tools
AI Search Enging
https://www.perplexity.ai/search
AI IDE Editor built on Visual Studio Code
https://www.cursor.com/
Macbook Closing Windows with Mission Control
You can cmd+tab, and then while still holding command press Q over any app you want to quit, and then tab onto the next
Refresh local applications in Ubuntu 22.04
When using menu libre you want it to pickup the new application settings, right away.
#!/bin/bash
# Show a notification that the app is launching
notify-send "Refreshing ~/.local/share/applications/"
update-desktop-database ~/.local/share/applications/
Edmonds Library WiFi Hotspot
Search for
Wi-Fi Hotspot To Go
Refer:
Raw:
https://sno-isle.bibliocommons.com/v2/search?query=Wi-Fi%20Hotspot%20To%20Go&searchType=smart
Search Monkey Text Search Tool for Ubuntu 22.04
GUI Text Search Tool
sudo apt install searchmonkey
If the application icon is missing, try the following:
sudo nano /usr/share/applications/searchmonkey.desktop
Use the following image, verify it exists.
/usr/share/icons/hicolor/48x48/apps/searchmonkey.png
API Mock Testing
Simple tool to verify you can send various requests
Refer: https://httpbin.org
Simple Debug Post Tools
- https://webhook.site/#!/
- https://pipedream.com
Mocking Tools
- https://getsandbox.com
- https://github.com/getsandbox/sandbox
- https://www.mockable.io
- http://jsonstub.com
You can run it locally:
$ docker run -p 80:80 kennethreitz/httpbin
Announcing Httpbin.org
June 12, 2011
The development of Requests, the Python HTTP Module for Humans, led to some annoying testing practices. Relying on random websites and services in order to test different capabilities of the HTTP client became annoying quickly. PostBin.org was perfect for testing POST request behavior, but is usless for other situations. I was hoping to extend its functionality to other request types, but it turns out that PostBin runs on the Google App Engine platform. No.
Thus, httpbin.org was born.
Example Endpoints
To get a feel for what HttpBin does, here are a few endpoint examples:
$ curl http://httpbin.org/ip :
{"origin": "::ffff:24.127.96.129"}
$ curl http://httpbin.org/user-agent :
{"user-agent": "curl/7.19.7 (universal-apple-darwin10.0) libcurl/7.19.7 OpenSSL/0.9.8l zlib/1.2.3"}
