๐Ÿš€ HickleSecLab

All Posts

Thumbnail for Posts

What is the difference between i and i in C

๐Ÿ“‚ Categories: C#
๐Ÿท๏ธ Tags: Variable-Assignment Increment

Ive seen them both being used in numerous pieces of C code and Id like to know when to use i and when to use i i being a number variable like int float double

Thumbnail for Posts

What is the point of interfaces in PHP

๐Ÿ“‚ Categories: Php
๐Ÿท๏ธ Tags: Oop Interface Theory

Interfaces allow you to create code that defines the methods of classes that implement it You cannot however add any code to those methods Abstract classes

Thumbnail for Posts

What would be an alternate to TearDown and SetUp in MSTest

๐Ÿ“‚ Categories: C#

When I use MSTest Framework and copy the code that Selenium IDE generated for me MSTest doesnt recognize TearDown and SetUp What is the alternative to

Thumbnail for Posts

When should I use Async Controllers in ASPNET MVC

๐Ÿ“‚ Categories: C#

I have some concerns using async actions in ASPNET MVC When does it improve performance of my apps and when does it not Is it good to use async action

Thumbnail for Posts

When to use a linked list over an arrayarray list

๐Ÿ“‚ Categories: Programming

I use a lot of lists and arrays but I have yet to come across a scenario in which the array list couldnt be used just as easily as if not easier than the

Thumbnail for Posts

Why do I get NameError name is not defined or a SyntaxError or a number instead of a string when using the input function in Python 2x

๐Ÿ“‚ Categories: Python
๐Ÿท๏ธ Tags: Python-2.7 Input Nameerror

I am getting an error when I try to run this simple script inputvariable inputEnter your name printyour name is inputvariable Lets say I type in dude the error

Thumbnail for Posts

Why does PyCharm propose to change method to static

๐Ÿ“‚ Categories: Python
๐Ÿท๏ธ Tags: Pycharm Static-Methods

The new pycharm release 313 community edition proposes to convert the methods that dont work with the current objects state to static What is the practical

Thumbnail for Posts

add createdat and updatedat fields to mongoose schemas

๐Ÿ“‚ Categories: Node.js
๐Ÿท๏ธ Tags: Mongodb Express Mongoose

Is there a way to add createdat and updatedat fields to a mongoose schema without having to pass them in everytime new MyModel is called The createdat field

Thumbnail for Posts

Allowed characters in filename

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Special-Characters Filenames

Where can I find a list of allowed characters in filenames depending on the operating system eg on Linux the character is allowed in filenames but not on