Skip to content

Instantly share code, notes, and snippets.

View himanshurajora's full-sized avatar

Himanshu Jangid, हिमांशु जाँगिड़ himanshurajora

View GitHub Profile
@himanshurajora
himanshurajora / readme.md
Created November 17, 2022 15:42
Wasm-rust-windows-setup-workaround
mkdir \Tools
cd \Tools
git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
.\bootstrap-vcpkg.bat
.\vcpkg.exe install openssl:x64-windows-static

$env:OPENSSL_DIR = 'C:\Tools\vcpkg\installed\x64-windows-static'
$env:OPENSSL_STATIC = 'Yes'
@himanshurajora
himanshurajora / pinned-websites.md
Created November 1, 2022 19:07
Websites or Pages that are great
@himanshurajora
himanshurajora / gamedev-basic-level-1.md
Created October 30, 2022 16:37
Game Dev Basic - Level 1

Game Dev Basic - Level 1

Playing games is fun so as making them. These are the questions that will motivate you and guide you step by step for make your own games.

How to Submit the answers?

Create Github Gist in markdown format and share the link.

Feel Free to use Google and Other Resources and give the answers in your own words

Questions

@himanshurajora
himanshurajora / js-intermediate-level-1.md
Last active October 30, 2022 16:14
Javascript quiz (Intermediate Level - 1)

Javascript quiz (Intermediate Level - 1)

This is a document of Javascript basic questions. Answer these to improve your knowledge. The level of questions will increase as you grow.

How to Submit answers? (Choose any one method)

Method 1 : Make separate google docs, write answers and send the link to the group.

Method 2 : It’s better if you maintain a github repository for these questions and write answers in the form of markdown files (.md) with code and then share the link to the repo. Learn how to write .md here https://medium.com/@saumya.ranjan/how-to-write-a-readme-md-file-markdown-file-20cb7cbcd6f

@himanshurajora
himanshurajora / the-hundred-things-principle.md
Created June 19, 2022 13:21
The hundred things principle for improving your character and knowledge. Change the way you learn things. Become an explorer and explore the entire internet because there is much more than you think.

The Hundred Things Principle


Abstract

The aim of this document is to present the Hundred Things Principle. Humans accumulate and retain a lot of knowledge over the course of a lifetime. We are built by nature in such a way that our memory never runs out, at least it has not yet been confirmed in any research. The hundred things principle is based on the idea that what is the minimum number of things a new human being should learn each day to accomplish great achievement. This method has not yet been applied or experimented on any human being but now after this has been written, I hope some people will try it on themselves and share their feedback. All the facts and knowledge stated in this document do not have any scientific support and are only based on personal experiences. So, one should only take it as an opinion.

Related Definitions

Thing - A thing can be an object, task, knowledge, fact, field, discussion, technology or anything that adds up in our brain and fills brain storage. It may

@himanshurajora
himanshurajora / adding-markdown-editor.md
Created June 16, 2022 16:53
How to add markdown editor to react app

Hi Guys! Learn how to add markdown editor to your website

I have a new markdown editor for writing my blogs. It has the following features

  1. Ordered Lists
  2. Bullets
  3. Code
  4. Typography
  5. Table
  6. Various Text Styles
  7. HTML Support
/**
* A function to generate random number b/w two specified ranges
* @param {number} min1 Min number of range 1
* @param {number} max1 Max number of range 21
* @param {number} min2 Min number of range 2
* @param {number} max2 Max number of range 2
* @returns {number} return the targeted random number
*/
export const getRandomNumberInTwoRanges = (
min1: number,
@himanshurajora
himanshurajora / jqb1review.md
Last active June 4, 2022 20:05
Javascript quiz one review