๐Ÿš€ HickleSecLab

All Posts

Thumbnail for Posts

What is memory fragmentation

๐Ÿ“‚ Categories: C++

Ive heard the term memory fragmentation used a few times in the context of C dynamic memory allocation Ive found some questions about how to deal with memory

Thumbnail for Posts

What is the best way to concatenate two vectors

๐Ÿ“‚ Categories: C++
๐Ÿท๏ธ Tags: Vector

Im using multitreading and want to merge the results For example stdvectorltintgt A stdvectorltintgt B stdvectorltintgt AB I want AB to have to contents of A

Thumbnail for Posts

What is the main difference between PATCH and PUT request

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Http Patch Put Http-Verbs

I am using a PUT request in my Rails application Now a new HTTP verb PATCH has been implemented by browsers So I want to know what the main difference between

Thumbnail for Posts

Where is varlibdocker on MacOS X

๐Ÿ“‚ Categories: Docker
๐Ÿท๏ธ Tags: Macos Docker-For-Mac

Im looking for the folder varlibdocker on my Mac after installing docker for Mac With docker info I get Containers 5 Server Version 1120rc4 Storage Driver aufs

Thumbnail for Posts

Which version of CodeIgniter am I currently using

๐Ÿ“‚ Categories: Php
๐Ÿท๏ธ Tags: Codeigniter

Quick question Is there something similar to a phpinfo that would display the version for CodeIgniter

Thumbnail for Posts

Why are dashes preferred for CSS selectors HTML attributes

๐Ÿ“‚ Categories: Html

In the past Ive always used underscores for defining class and id attributes in HTML Over the last few years I changed over to dashes mostly to align myself

Thumbnail for Posts

Why cant dataclasses have mutable defaults in their class attributes declaration

๐Ÿ“‚ Categories: Python
๐Ÿท๏ธ Tags: Python-3.X

This seems like something that is likely to have been asked before but an hour or so of searching has yielded no results Passing default list argument to

Thumbnail for Posts

Why use try finally with an empty try block

๐Ÿ“‚ Categories: C#
๐Ÿท๏ธ Tags: .Net

I noticed in SystemThreadingTimerBaseDispose the method has a try finally block but the try is empty Is there any value in using try finally with an empty try

Thumbnail for Posts

Windows recursive grep command-line

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Windows Command-Line Grep

I need to do a recursive grep in Windows something like this in UnixLinux grep i string find print or the morepreferred method find print xargs grep i string