๐Ÿš€ HickleSecLab

All Posts

Thumbnail for Posts

Jump to editor shortcut in Intellij IDEA

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Intellij-Idea Keyboard-Shortcuts

I can use F12 to jump to project tree if it was the last tool that I used but is there a shortcut for jumping back to

Thumbnail for Posts

Keyboard shortcuts are not active in Visual Studio with Resharper installed

๐Ÿ“‚ Categories: C#

I have Visual Studio 2012 Resharper 711000900 StyleCop 4744 installed The problem is that no shortcuts are active since Resharper was installed For example I

Thumbnail for Posts

Kotlin Public get private set var

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

What is the correct way to define a var in kotlin that has a public getter and private only internally modifiable

Thumbnail for Posts

Member member name cannot be accessed with an instance reference

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

I am getting into C and I am having this issue namespace MyDataLayer namespace Section1 public class MyClass public class MyItem public static string Property1

Thumbnail for Posts

Multi-line string literals in PHP

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

Consider xml l xml vv echo xml This will echo vv Why and how can I do multiline string literals for things like SimpleXML

Thumbnail for Posts

MySQL Incorrect datetime value 0000-00-00 000000

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

Ive recently taken over an old project that was created 10 years ago It uses MySQL 51 Among other things I need to change the default character set from latin1

Thumbnail for Posts

MySQLs now 1 day

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

Im using now in MySQL query INSERT INTO table SET data data date now But I want to add 1 day to this date so that date should contain tomorrow Is it

Thumbnail for Posts

Negate if condition in bash script

๐Ÿ“‚ Categories: Bash
๐Ÿท๏ธ Tags: Linux If-Statement Negate

Im stuck at trying to negate the following command wget q tries10 timeout20 spider httpgooglecom if eq 0 then echo Sorry you are Offline exit 1 This if

Thumbnail for Posts

npmean vs npaverage in Python NumPy

๐Ÿ“‚ Categories: Python

I notice that In 30 npmean1 2 3 Out30 20 In 31 npaverage1 2 3 Out31 20 However there should be some differences since after all they are two different