Interface as Type
Implementing Interface
Demo1:
See the Pen TypeScriptInterfaceDemo1 by kenanhancer (@kenanhancer) on CodePen.
Continue readingSee the Pen TypeScriptInterfaceDemo1 by kenanhancer (@kenanhancer) on CodePen.
Continue readingThis post is just a reminder for me. So in order to find more details about dotnet CLI, follow the below link
https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet
dotnet new console -o console-demo1
dotnet new webapi -o webapi-todo-demo1
-o or –output is location to place for new generated project.
dotnet new console -o enum_demo4
-d is output directory for new generated class files.
javac -d ./target/classes src/main/java/com/extuni/enum_demo4/App.java
javac -d ./target/classes
./src/main/java/com/extuni/enum_demo4/App.java
./src/main/java/com/extuni/enum_demo4/Greeting.java
./src/main/java/com/extuni/enum_demo4/Helper.java
javac -d ./target/classes ./src/main/**/*.java
Trying to compile ./src folder completely will throw exception due to junit.jar file dependency. So, it should be specified using -cp option which means –classpath as below.
javac -d ./target/classes -cp /Users/kenanhancer/.m2/repository/junit/junit/4.11/junit-4.11.jar ./src/**/*.java
Continue reading You can find more details in https://maven.apache.org/guides/getting-started/maven-in-five-minutes.html
mvn archetype:generate
-DgroupId={project-package-name}
-DartifactId={project-name}
-DarchetypeArtifactId={maven-template-name}
-DinteractiveMode=false
-DarchetypeVersion=1.4
mvn archetype:generate
-DgroupId=com.extuni.enum_demo4
-DartifactId=enum_demo4
-DarchetypeArtifactId=maven-archetype-quickstart
-DinteractiveMode=false
-DarchetypeVersion=1.4
See the Pen CssLayout-Position-Demo10 by kenanhancer (@kenanhancer) on CodePen.
if value of position property is absolute or fixed, then that element is removed from dom, so next element of that element which is specified as absolute or fixed will replace of that element. It will overlap.
See the Pen CssLayout-Position-Demo9 by kenanhancer (@kenanhancer) on CodePen.
Continue reading