mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 02:53:51 +00:00
105 lines
1.8 KiB
Plaintext
105 lines
1.8 KiB
Plaintext
---
|
|
title: "I corebooted my T440p, here's how I did it."
|
|
author: "Timothy Pidashev"
|
|
date: "2024/06/05"
|
|
description: "This is a sample MDX file."
|
|
tags: ["coreboot", "t440p", "dgpu"]
|
|
---
|
|
|
|
|
|
```python
|
|
# discord api
|
|
import discord
|
|
from discord.ext import commands
|
|
|
|
# custom utilities
|
|
from Utilities import log
|
|
|
|
log = log.Logger("errors")
|
|
|
|
class Errors(commands.Cog):
|
|
def __init__(self, client):
|
|
self.client = client
|
|
|
|
@commands.Cog.listener()
|
|
async def on_ready(self):
|
|
await log.info("Errors cog loaded.")
|
|
|
|
@commands.Cog.listener()
|
|
async def on_command_error(self, context, error):
|
|
|
|
if isinstance(error, commands.CheckFailure):
|
|
await context.reply(
|
|
"You are not priveleged enough to use this command.",
|
|
mention_author=False
|
|
)
|
|
|
|
else:
|
|
await context.reply(
|
|
f"**Error**\n```diff\n- {error}```",
|
|
mention_author=False
|
|
)
|
|
|
|
def setup(client):
|
|
client.add_cog(Errors(client))
|
|
```
|
|
|
|
# Heading 1
|
|
|
|
## Heading 2
|
|
|
|
### Heading 3
|
|
|
|
#### Heading 4
|
|
|
|
##### Heading 5
|
|
|
|
###### Heading 6
|
|
|
|
*Italic Text*
|
|
|
|
_Italic Text_
|
|
|
|
**Bold Text**
|
|
|
|
__Bold Text__
|
|
|
|
* Bullet List
|
|
* Item 1
|
|
* Item 2
|
|
* Subitem 1
|
|
* Subitem 2
|
|
|
|
1. Numbered List
|
|
1. Item 1
|
|
2. Item 2
|
|
- Subitem 1
|
|
- Subitem 2
|
|
|
|
[Link Text](https://example.com)
|
|
|
|

|
|
|
|
> Blockquote
|
|
>
|
|
> Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
|
|
|
`Inline Code`
|
|
|
|
| Table Header 1 | Table Header 2 |
|
|
|----------------|----------------|
|
|
| Table Row 1 | Table Row 1 |
|
|
| Table Row 2 | Table Row 2 |
|
|
|
|
<sup>Superscript Text</sup>
|
|
|
|
<sub>Subscript Text</sub>
|
|
|
|
<mark>Highlighted Text</mark>
|
|
|
|
<ins>Underlined Text</ins>
|
|
|
|
<del>Strikethrough Text</del>
|
|
|
|
<abbr title="Abbreviation">Abbreviation</abbr>
|