Profile Picture

Silverbullet Push

Hey everyone, So recently I talked about the Git plug for Silverbullet and backing up my notes into Github. This has worked amazingly and I wanted to add the ability to make draft webpage that would be sent to my Hugo repository. I wanted to be able to make notes and the draft on Silverbullet and push that to Github without it firing off a pipeline but, when added to a certain folder, it will fire off a pipeline to push to my remote repository. ...

April 24, 2025 · 2 min · 317 words · Isaac

Scraping the Web

Hey everyone, So I was thinking of things to code, and recently I’ve been intreseted in Web Scraping. There is a lot that can be done with a web scraper but, I wanted to match something in my career. That’s why I made a CVE database web scraping, that way I could expedidate my Software Reviews. Just like most projects, I started with a requirements.txt file in a directory. The libraries I used for this are ...

April 22, 2025 · 3 min · 547 words · Isaac

Member join on Discord

Hey guys, So I wanted to have a few custom things happen when a member joined my guild on Discord. First I wanted a custom Gif to play and I also wanted their role to be set to the newb role. In order to do both of these, I needed the bot.event to be set on member join. Easy enough with @bot.event async def on_member_join(member): Next I needed the bot to pull the Channel ID for the #general chat. When I got that, all I needed to do ...

April 19, 2025 · 2 min · 226 words · Isaac

Adding to the Discord bot

So I’ve been tinkering a bit with my Discord bot and recently got a request to add functionality to know how long someone has been in the Discord and associating it with a rank. Not too bad of an ask. I opened by Discord bot script I had been working on and got to work. The first thing I needed to add was a bot.event to listen for the set of words to trigger the action. ...

April 19, 2025 · 3 min · 455 words · Isaac

Discord Bot

Hey guys, So today I wanted to start off a new set of posts revolved around coding. I was thinking about what kind of project I wanted to work on and I thought, I’ve already done the pipeline series that featured a Discord bot, why not that. So to start on the bot, there were a few things I needed so I created a repo, git cloned it, and started on just that. ...

April 18, 2025 · 4 min · 717 words · Isaac