Skip to content

Instantly share code, notes, and snippets.

View nikhilknoldus's full-sized avatar
:octocat:
Learning, Upgrading, Guiding.

Nikhil nikhilknoldus

:octocat:
Learning, Upgrading, Guiding.
View GitHub Profile
@nikhilknoldus
nikhilknoldus / gist:355b55dbadf4a368a16afe07747c01df
Created April 20, 2023 20:56
Instructions to create a github profile page.
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.
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
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'){
_________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>
@nikhilknoldus
nikhilknoldus / Samantha Says Phrase
Last active December 6, 2018 15:55
A place to keep you on your toes 👣
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.
@nikhilknoldus
nikhilknoldus / gist:174ddbb16992461597c000789a681481
Created August 17, 2018 06:09
Privacy Policy AngularJs 2 Mobile Application
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
@nikhilknoldus
nikhilknoldus / flex_flow_row_column
Created August 1, 2017 10:13
Flex Properties: Flow: row & column examples
<!DOCTYPE html>
<html>
<head>
<title>FlexBox: Row and Column</title>
<style>
/*flex containers*/
.fx-flow-row {
display: flex;
flex-direction: row;
<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>