๐Ÿš€ HickleSecLab

All Posts

Thumbnail for Posts

How to cut an entire line in vim and paste it

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Vim

I know how to use the v command in vim but I need something which will delete an entire line and it should allow me to paste the same line somewhere

Thumbnail for Posts

How to disable or hide scrollbarminimap

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Visual-Studio-Code

I cant find any option setting or keyboard shortcut that disables or hides that annoying scrollbar I just dont find it useful and its distracting Cant just

Thumbnail for Posts

How to get a file or blob from an object URL

๐Ÿ“‚ Categories: Javascript
๐Ÿท๏ธ Tags: Html Blob Fileapi

I am allowing the user to load images into a page via dragampdrop and other methods When an image is dropped Im using URLcreateObjectURL to convert to an

Thumbnail for Posts

How to increment a datetime by one day

๐Ÿ“‚ Categories: Python
๐Ÿท๏ธ Tags: Datetime

How to increment the day of a datetime for i in range1 35 date datetimedatetime2003 8 i printdate But I need pass through months and years correctly Any

Thumbnail for Posts

How to make my font bold using css

๐Ÿ“‚ Categories: Css
๐Ÿท๏ธ Tags: Css

Im very new to HTML and CSS and I was just wondering how I could make my font bold using CSS I have a plain HTML page that imports a CSS file and I can change

Thumbnail for Posts

How to output something in PowerShell

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Windows Powershell

I am running a PowerShell script from within a batch file The script fetches a web page and checks whether the pages content is the string OK The PowerShell

Thumbnail for Posts

How to remove all white space from the beginning or end of a string

๐Ÿ“‚ Categories: C#

How can I remove all white space from the beginning and end of a string Like so hello returns hello hello returns hello hello returns hello hello world returns

Thumbnail for Posts

How to remove branches already deleted on GitHub that still show up in VS Code

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Git Visual-Studio-Code

In VS Code after I do a pull request and delete the branch on GitHub that branch still shows up in Visual Studio Code If I select the branch it gives an Error

Thumbnail for Posts

How to retrieve inserted id after inserting row in SQLite using Python

๐Ÿ“‚ Categories: Python
๐Ÿท๏ธ Tags: Sqlite

How to retrieve inserted id after inserting row in SQLite using Python I have table like this id INT AUTOINCREMENT PRIMARY KEY username VARCHAR50 password