Explore >> Select a destination


You are here

calebfenton.github.io
| | blog.convisoappsec.com
10.2 parsecs away

Travel
| | Learn how to build effective harnesses for fuzzing native libraries on Android. Explore techniques and strategies to uncover vulnerabilities
| | blog.oddbit.com
13.1 parsecs away

Travel
| | Overview I was recently working with someone else's C source and I wanted to add some basic error checking without mucking up the code with a bunch of if statements and calls to perror. I ended up implementing a simple must function that checks the return value of an expression, and exits with an error if the return value is less than 0. You use it like this: must(fd = open("textfile.txt", O_RDONLY)); Or:
| | www.thepolyglotdeveloper.com
12.8 parsecs away

Travel
| | Use Volley to make asynchronous Android HTTP requests with very little code. A perfect solution for making calls to a web API in Android.
| | ezyang.github.io
34.3 parsecs away

Travel
| Model Context Protocol servers provide a standard interface for LLMs to interact with their environment. Cursor Agent mode and Claude Code use agents extensively. For example, instead of needing a separate RAG system (e.g., as previously provided by Cursor) to find and feed the model relevant context files, the LLM can instead call an MCP which will let it lookup what files it wants to look at before deciding what to do. Similarly, a model can run tests or build and then immediately work on fixing problems when this occurs. It is clear that Anthropic's built-in MCP servers are useful, and you should use agent mode when you can.