๐Ÿš€ HickleSecLab

All Posts

Thumbnail for Posts

What are some good ways to manage a changelog using Git closed

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Git Github Changelog

Closed This question needs to be more focused It is not currently accepting answers Want to improve this question Update the question so it focuses on one

Thumbnail for Posts

What does the plus sign do in new Date

๐Ÿ“‚ Categories: Javascript
๐Ÿท๏ธ Tags: Syntax

Ive seen this in a few places function fn return new Date And I can see that it is returning a timestamp rather than a date object but I cant find any

Thumbnail for Posts

What is the difference between a map and a dictionary

๐Ÿ“‚ Categories: Programming

I know a map is a data structure that maps keys to values Isnt a dictionary the same What is the difference between a map and a dictionary1 1 I am not asking

Thumbnail for Posts

What is the meaning of three dots in PHP

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

While I am installing Magento 2 on my Server I got an error After investigating the code and found that there are three dots which is producing the error I

Thumbnail for Posts

When do Java generics require extends T instead of T and is there any downside of switching

๐Ÿ“‚ Categories: Java
๐Ÿท๏ธ Tags: Generics Junit

Given the following example using JUnit with Hamcrest matchers MapltString Classlt extends Serializablegtgt expected null MapltString ClassltjavautilDategtgt

Thumbnail for Posts

Why does PostgreSQL perform sequential scan on indexed column

๐Ÿ“‚ Categories: Postgresql

Very simple example one table one index one query CREATE TABLE book id bigserial NOT NULL year integer other columns CREATE INDEX bookyearidx ON book year

Thumbnail for Posts

Why JSF calls getters multiple times

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Performance Jsf El Getter

Lets say I specify an outputText component like this lthoutputText valueManagedBeansomePropertygt If I print a log message when the getter for someProperty is

Thumbnail for Posts

-2147483648 0 returns true in C

๐Ÿ“‚ Categories: C++

2147483648 is the smallest integer for integer type with 32 bits but it seems that it will overflow in the if sentence if 2147483648 gt 0 stdcout ltlt true

Thumbnail for Posts

Access Controller method from another controller in Laravel 5

๐Ÿ“‚ Categories: Php
๐Ÿท๏ธ Tags: Laravel Laravel-5 Controller

I have two controllers SubmitPerformanceController and PrintReportController In PrintReportController I have a method called getPrintReport How to access this