This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The instructions on creating a GitHub page with an intro: | |
1. Create a GitHub account if you don't already have one. | |
2. Log in to your account and click on the plus icon in the top right corner of the page. From the dropdown menu, select "New repository." | |
3. Give your repository a name. | |
4. In the "Description" field, write a short introduction about yourself. | |
5. Select the "Public" option if you want your repository to be visible to everyone. If you prefer to keep it private, you can select that option instead. | |
6. Scroll down to the bottom of the page and click on the "Create repository" button. | |
7. Click on the "Settings" button in the top right corner of the page. | |
8. On the settings page, scroll down to the "GitHub Pages" section. Click on the "Choose a theme" button to select a theme for your page. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Application, Router } from "https://deno.land/x/oak/mod.ts"; | |
const router = new Router(); | |
router.get("/", (context : any) => { | |
context.response.body = "Hello world!"; | |
}); | |
//getUser |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let obj = {secType1 : undefined,secType2 : true,secType3 : undefined,secType4 : undefined} | |
obj[this.currentSleected] = true; | |
for(let [key,value] of Object.entries(obj)){ | |
if(obj[key] == undefined && key === 'secType1'){ | |
secType1.filter((value) => (value[this.currentSleectedropdownValue] == HUNT)} | |
} | |
if(obj[key] == undefined && key === 'secType2'){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_________HTML CODE_________ | |
<ul class="cards"> | |
<li class="cards__item"> | |
<div class="card"> | |
<div class="card__image card__image--fence"></div> | |
<div class="card__content"> | |
<div class="card__title">Name</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A place to keep you on your toes | |
1- six of one, half a dozen of the other | |
The alternatives are the same: “I can take the bus or the subway to get home; during rush hour, it's six of one, half a dozen of the other.” The phrase, which is sometimes inverted as “half a dozen of one, six of the other,” is merely two ways of expressing the number six. | |
2- Jump on the bandwagon | |
Join a growing movement in support of someone or something, often in an opportunist way, when that movement is seen to have become successful. | |
3- missing the juice | |
Cannot get the real meaning behind. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Nikhil Kumar built the AngularJs 2 app as a Free app. This SERVICE is provided by Nikhil Kumar at no cost and is intended for use as is. | |
This page is used to inform website visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. | |
If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. | |
The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at AngularJs 2 unless otherwise defined in this Privacy Policy. | |
Information Collection and Use |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>FlexBox: Row and Column</title> | |
<style> | |
/*flex containers*/ | |
.fx-flow-row { | |
display: flex; | |
flex-direction: row; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<scalastyle> | |
<name>Scalastyle standard configuration</name> | |
<check level="warning" class="org.scalastyle.file.FileLengthChecker" enabled="true"> | |
<parameters> | |
<parameter name="maxFileLength"><![CDATA[800]]></parameter> | |
</parameters> | |
</check> | |
<check level="warning" class="org.scalastyle.file.FileLineLengthChecker" enabled="true"> | |
<parameters> | |
<parameter name="maxLineLength"><![CDATA[160]]></parameter> |