I hereby claim:
- I am Neilblaze on github.
- I am neilblaze (https://keybase.io/neilblaze) on keybase.
- I have a public key whose fingerprint is 9EAA 9CBD 3397 88D1 8491 DAF4 3F15 A990 ABBA A70E
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| // Demo ~ © Rachit Jain Bhaiya | |
| #include<bits/stdc++.h> | |
| using namespace std; | |
| #define gc getchar_unlocked | |
| #define fo(i,n) for(i=0;i<n;i++) | |
| #define Fo(i,k,n) for(i=k;k<n?i<n:i>n;k<n?i+=1:i-=1) | |
| #define ll long long | |
| #define si(x) scanf("%d",&x) | |
| #define sl(x) scanf("%lld",&x) |
| const nodemailer = require('nodemailer'); | |
| //Package that enables sending of emails in Javascript | |
| //After performing npm init, npm install nodemailer must be perfomed, in order to obtain all the modules | |
| let login_and_auth = nodemailer.createTransport({ | |
| service: 'gmail', | |
| //Any email service can be used here | |
| auth: { | |
| user: 'sender', | |
| pass: '******' |
| # pip install lorem_text | |
| # import the lorem module from lorem_text | |
| from lorem_text import lorem | |
| # Provide the number of paragrpahs you want | |
| paragraph_length = int(input("Enter the length of paragraph you want: ")) | |
| # Store it in a variable, lorem.paragraphs() is used to generate the paragraphs | |
| se = lorem.paragraphs(paragraph_length) |
| import hashlib | |
| import argparse | |
| def main(text, hashType): | |
| encoder = text.encode('utf_8') | |
| myHash = '' | |
| if hashType.lower() == 'md5': | |
| myHash = hashlib.md5(encoder).hexdigest() |
| require 'webrick' | |
| server = WEBrick::HTTPServer.new(:Port=>5000,:DocumentRoot=>Dir::home()) | |
| trap("INT"){ server.shutdown } | |
| server.start |
| const writeString = 'NEEL<3'; | |
| const colorSet = ['#2a6127', '#2a6127', '#7bc96f', '#c6e48b', '#ebedf0']; | |
| const hearColors = ['rgba(255, 0, 0, 1)', 'rgba(255, 0, 0, 0.5)', 'rgba(255, 0, 0, 0.2)', 'rgba(255, 0, 0, 0.7)'] | |
| let days = document.getElementsByClassName("day") | |
| for(day of days) { | |
| day.setAttribute("fill", colorSet[4]) | |
| } |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
| const cluster = require('cluster') | |
| const os = require('os') | |
| if (cluster.isMaster) { | |
| const cpus = os.cpus().length | |
| console.log(`Forking for ${cpus} CPUs`) | |
| for (let i = 0; i < cpus; i++) { | |
| cluster.fork() | |
| } |