Main public logs

Jump to navigation Jump to search

Combined display of all available logs of Free Knowledge Base- The DUCK Project. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 10:40, 8 April 2025 Littleguy talk contribs created page Grok Tips (Created page with "== programming source code markdown == If you want to distinguish source code from regular text in your instructions, feel free to use Markdown syntax. Specifically, you can use triple backticks (```) to create a code block for your source code, or single backticks (`) for inline code. Grok will interpret it accordingly and treat the code portions as distinct from regular instructions. Example: ```python def greet(name): return f"Hello, {name}!" print(greet("...")