๐Ÿš€ UllrichLumina

All Posts

Thumbnail for Posts

How to enable C 60 feature in Visual Studio 2013

๐Ÿ“‚ Categories: C#

I was going through the latest features introduced in C 60 and just followed an example of auto property initializer class NewSample public Guid Id get

Thumbnail for Posts

How to format Joda-Time DateTime to only mmddyyyy

๐Ÿ“‚ Categories: Java
๐Ÿท๏ธ Tags: Jodatime Date-Format

I have a string 11152013 080000 I want to format it to 11152013 what is the correct DateTimeFormatter pattern Ive tried many and googled and still unable to

Thumbnail for Posts

How to get relative path from absolute path

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

Theres a part in my apps that displays the file path loaded by the user through OpenFileDialog Its taking up too much space to display the whole path but I

Thumbnail for Posts

How to get the selected index of a RadioGroup in Android

๐Ÿ“‚ Categories: Java
๐Ÿท๏ธ Tags: Android Xml Radio-Group

Is there an easy way to get the selected index of a RadioGroup in Android or do I have to use OnCheckedChangeListener to listen for changes and have something

Thumbnail for Posts

How to get the type of a variable in MATLAB

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Matlab Variables Types

Does MATLAB have a functionoperator that indicates the type of a variable similar to the typeof operator in

Thumbnail for Posts

How to parse a string to an int in C

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

Whats the C way of parsing a string given as char into an int Robust and clear error handling is a plus instead of returning

Thumbnail for Posts

How to pass url arguments query string to a HTTP request on Angular

๐Ÿ“‚ Categories: Typescript
๐Ÿท๏ธ Tags: Http Angular

I would like to trigger HTTP request from an Angular component but I do not know how to add URL arguments query string to it

Thumbnail for Posts

How to post data to specific URL using WebClient in C

๐Ÿ“‚ Categories: C#
๐Ÿท๏ธ Tags: Post Webclient

I need to use HTTP Post with WebClient to post some data to a specific URL I have Now I know this can be accomplished with WebRequest but for some reasons I

Thumbnail for Posts

How to read values from the querystring with ASPNET Core

๐Ÿ“‚ Categories: C#

Im building one RESTful API using ASPNET Core MVC and I want to use querystring parameters to specify filtering and paging on a resource that returns a