๐Ÿš€ HickleSecLab

All Posts

Thumbnail for Posts

Apache Spark The number of cores vs the number of executors

๐Ÿ“‚ Categories: Programming

Im trying to understand the relationship of the number of cores and the number of executors when running a Spark job on YARN The test environment is as follows

Thumbnail for Posts

Appending an element to the end of a list in Scala

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

I cant add an element of type T into a list ListT I tried with myList myElement but it seems it creates a strange object and accessing to myListlast always

Thumbnail for Posts

Automatically set appsettingsjson for dev and release environments in aspnet core

๐Ÿ“‚ Categories: C#

Ive defined some values in my appsettingsjson for things like database connection strings webapi locations and the like which are different for development

Thumbnail for Posts

C Events and Thread Safety

๐Ÿ“‚ Categories: C#
๐Ÿท๏ธ Tags: Multithreading Events

I frequently hearread the following advice Always make a copy of an event before you check it for null and fire it This will eliminate a potential problem with

Thumbnail for Posts

Can you attach a UIGestureRecognizer to multiple views

๐Ÿ“‚ Categories: Programming

UITapGestureRecognizer tapGesture UITapGestureRecognizer alloc initWithTargetself actionselectortapTapTap selfview1 addGestureRecognizertapGesture selfview2

Thumbnail for Posts

Change the current directory from a Bash script

๐Ÿ“‚ Categories: Bash
๐Ÿท๏ธ Tags: Environment

Is it possible to change current directory from a script I want to create a utility for directory navigation in Bash I have created a test script that looks

Thumbnail for Posts

Change Twitter Bootstrap Tooltip content on click

๐Ÿ“‚ Categories: Programming

I have a tooltip on an anchor element that sends an AJAX request on click This element has a tooltip from Twitter Bootstrap I want the tooltip content to

Thumbnail for Posts

Check whether there is an Internet connection available on Flutter app

๐Ÿ“‚ Categories: Flutter

I have a network call to be executed But before doing that I need to check whether the device have internet connectivity This is what i have done so far var

Thumbnail for Posts

Convert a namedtuple into a dictionary

๐Ÿ“‚ Categories: Python
๐Ÿท๏ธ Tags: Dictionary Tuples Namedtuple

I have a named tuple class in python class TowncollectionsnamedtupleTown name population coordinates population capital statebird Id like to convert Town