atlas news
  IslandTropicaMan
30  december     10h02
How to getting input from user using c
IslandT    If you want to get input from user in a terminal using c#, below is the program:- Once the user has inputted something and pressed the enter key, the...
    09h39
In how many different positions 3 characters can get arranged from a group of 4 characters
IslandT    If you want to arrange 3 characters from a group of 4 characters, how many different positions can you arrange them, in this scenario, the order of...
18  august     12h49
How to use case sensitive version of comparison in power shell
IslandT    If you want to compare words with case sensitive version of Power Shell then used the -ceq operator -ceq for example,
28  april     13h01
Create multiple assignments in PowerShell
IslandT    The below code will create multiple assignments in PowerShell a, b, c 1, 2, 3
04  march     04h25
How to compile and run c program in visual studio code
IslandT    Visual Studio Code is an IDE that allows programmer to create many types of programming language, c, c , c sharp and many more. In this post I am...
02  february     02h04
How to print numbers from a range in Kotlin
IslandT    The below Kotlin program will print numbers from 1 till 10 in each new line. fun main() (1..10).forEach(::println) The kotlin outcome is as follows...
01  october     02h54
How to output words on a Power Shell screen?
IslandT    In order to output words on the PowerShell screen all you need to do is to type in below cmdlet follows with the words inside the . Write-Output...
24  january     09h34
How to search multiple lines with Python?
IslandT    Often you will want to search for words or phrase in the entire paragraph and here is the python regular expression code which will do that. pattern...
11  july     05h13
Extract Twitter username with python
IslandT    Below simple code will extract the Twitter username from text using python re module. import re # Extract the username without pattern re.compile(r’(...
14  march     03h49
Python Example Group telephone number using the re module
IslandT    Below Python example will use the re module to group the telephone number without the - sign and the period .’. Let’s say the phone number has been...
1786878371