Filter
Exclude
Time range
-
Near
PHP is available for multiple operating systems and platforms. Therefore, we recommend you consult the PHP documentation to find the environment similar to the one you will be using and follow the setup instructions accordingly. tutorialwithexample.com/php/… #tutorialwithexample #php
1
2
20
Sorting data in any database is an important operation in any database management system. The sort() function, in MongoDB, is used to sort the data in a collection. tutorialwithexample.com/mong… #tutorialwithexample #100DaysOfCode #Onlineclass #sql #mongodb #sorting
3
13
Indexes in SQL programming are special data structures used to easily and quickly locate the record in a given table of the database without being required to traverse through each and every record of the table. tutorialwithexample.com/mong… #tutorialwithexample #100DaysOfCode #SQL
1
2
26
Welcome to a tutorial on Error handling in Elixir. There are three error mechanisms in Elixir; errors, throws, and exits. tutorialwithexample.com/elix… #100DaysOfCode #tutorialwithexample #elixir #programming #developers
1
1
18
Elixir is a dynamically typed language, hence, all types in Elixir are inferred by the runtime. However, it comes with type specs, which are a notation used for .... tutorialwithexample.com/elix… #tutorialwithexample #elixirtypespecs #100daysofcode #100DaysOfCodeChallenge #Elixir
2
2
In Elixir, list comprehensions are likened to syntactic sugar for looping through enumerables. tutorialwithexample.com/elix… #tutorialwithexample #elixircomprehensions #100daysofcode #100DaysOfCodeChallenge #elixir
2
3
In Elixir, Protocols are a mechanism to achieve polymorphism. Any data type has been dispatched on a protocol, as long as it implements the protocol. tutorialwithexample.com/elix… #tutorialwithexample #elixirprotocols #100daysofcode #100DaysOfCodeChallenge #elixir
2
3
In Elixir, Structs are extensions built on top of maps that provide compile-time checks and default values. tutorialwithexample.com/elix… #tutorialwithexample #elixirstructs #100daysofcode #100DaysOfCodeChallenge #elixir
3
2
Lazy operations are supported by Streams as opposed to eager operations by enums. However, streams are in fact lazy, composable enumerables. It means that Streams do ... tutorialwithexample.com/elix… #tutorialwithexample #elixirstreams #100daysofcode #100DaysOfCodeChallenge #elixir
4
5
Loops in Elixir are written differently from imperative languages. Take a look at this example in an imperative language such as C. tutorialwithexample.com/elix… #tutorialwithexample #elixirloop #100daysofcode #100DaysOfCodeChallenge #elixir
3
2
Function is a set of statements organized together to perform a specific task. Programming functions are similar in action to functions in math. tutorialwithexample.com/elix… #tutorialwithexample #elixirfunction #100daysofcode #100DaysOfCodeChallenge #elixir #elixirlang
1
3
To facilitate software reuse, three directives (i.e alias, require, and import) are provided by Elixir. tutorialwithexample.com/elix… #tutorialwithexample #elixiralias #100daysofcode #100DaysOfCodeChallenge #elixir
2
1
Several functions are grouped into modules in Elixir. In the previous, you use different modules such as the String module, Bitwise module, Tuple module, and so on. tutorialwithexample.com/elix… #tutorialwithexample #elixirmodules #100daysofcode #100DaysOfCodeChallenge #elixir
4
2
Welcome to a tutorial on Elixir. Here you will learn about Maps in Elixir. In Elixir, Keyword lists are a convenient way to address content stored in lists by key. tutorialwithexample.com/elix… #tutorialwithexample #elixirmaps #100daysofcode #100DaysOfCodeChallenge #elixir
2
2
Char lists are commonly used when interfacing with Erlang, typically on old libraries that do not accept binaries as arguments. tutorialwithexample.com/elix… #tutorialwithexample #elixirchar #100daysofcode #100DaysOfCodeChallenge #elixir
4
1
Decision-making structures need programmers to specify one or more conditions to be evaluated or tested by the program, along with a statement or statements to be.. tutorialwithexample.com/elix… #tutorialwithexample #elixirDecisionMaking #100daysofcode #100DaysOfCodeChallenge #elixir
2
1
In a programming language, an operator is a symbol that informs the compiler to perform specific mathematical or logical manipulations. We have so many operators... tutorialwithexample.com/elix… #tutorialwithexample #elixiroperators #100daysofcode #100DaysOfCodeChallenge #elixir
2
2
Variable makes available a named storage that programs can manipulate. In Elixir, every variable has a specific type, that typically determines the size and layout of... tutorialwithexample.com/elix… #tutorialwithexample #elixirvariable #100daysofcode #100DaysOfCodeChallenge #elixir
1
2
Here you will learn about the 7 basic data types supported by the Elixir language, which are integers, floats, Booleans, atoms, strings, lists, and tuples. tutorialwithexample.com/elix… #tutorialwithexample #elixirdatatype #100daysofcode #100DaysOfCodeChallenge #elixir
1
2
Welcome to a tutorial on Basic Syntax on Elixir. Here you will learn a few basic codes such as the 'Hello World' program. tutorialwithexample.com/elix… #tutorialwithexample #elixirsyntax #100daysofcode #100DaysOfCodeChallenge #elixirlang
2
2