DCDan Cobbinblog.daniel-cobb.com·May 31, 2021 · 3 min readIntroducing PirateWebSnippets that build the web. PirateWeb.Dev is a place to share code that helps build the web as we know it today in a free and open-source environment. The goal is to create a searchable repository of free and open-source code that includes helpful s...00
DCDan Cobbinblog.daniel-cobb.com·Dec 25, 2020 · 5 min readSnippets: User Permissions with BitmaskSometimes user permissions can become a complex mess that is hard to manage well in our code. One way to manage those permissions using an integer value is with a bitmask. A bitmask is just computer jargon for an integer that represents a different v...00
DCDan Cobbinblog.daniel-cobb.com·Dec 24, 2020 · 28 min readLinux Basics: Zip It Up and Script ItIn this entry of our Linux Basics series, we will go over some popular commands for compressing files and directories. We will also talk about scheduling tasks and some basics of writing scripts. By the end of this post, you should be able to start p...00
DCDan Cobbinblog.daniel-cobb.com·Dec 19, 2020 · 24 min readLinux Basics: Touching Files and Making DirsIn this entry of our Linux Basics series, we will begin to uncover some of the file interactions possible through the command line. We'll touch on things like creating, editing, and removing files and directories, and searching files for a specific p...01A
DCDan Cobbinblog.daniel-cobb.com·Dec 15, 2020 · 7 min readWebSec: Reflected XSSIn this web security article, we are going to cover Reflected XSS. We'll cover what it is, how it works, and how to prevent it. This is for educational purposes only. This post intends to teach you, the developer, how to prevent malicious attacks on...00