GithubHelp home page GithubHelp logo

kaal-coder / hacktoberfest2023 Goto Github PK

View Code? Open in Web Editor NEW
148.0 3.0 506.0 160.83 MB

HacktobeFest 2023 is live. Make your 4 Pull Request here ! Add your own projects, UI/UX Design, Blogs or improve the projects in the repository. Make sure to add your own work.

JavaScript 6.75% HTML 6.25% CSS 3.83% Jupyter Notebook 75.51% EJS 0.15% C++ 1.53% Python 1.84% C 0.80% Java 1.97% SCSS 0.21% PHP 0.53% Kotlin 0.57% CMake 0.01% Makefile 0.01% Vue 0.03% TypeScript 0.01% C# 0.01% Ruby 0.02% Elixir 0.01% Dart 0.01%
hacktoberfest hacktoberfest-accepted begginer-friendly hacktoberfest2023 hacktoberfest2023-accepted hacktoberfest2023-approved

hacktoberfest2023's Introduction

Hi , I'm Kaushik Lakhani

Currently persuading my B.Tech in CSIT Branch at ITER, SOA UniversityπŸ«πŸŽ“ !

kaal-coder

  • πŸ”­ I’m currently working on myself, obviously.

  • 🌱 I’m currently learning javascript.

  • πŸ“„ Know about my experiences Here

  • πŸ’¬ Ask me about anything on tech.

  • πŸ“« You can reach me on [email protected]

Connect with me:

kaushik-lakhani-08012001 _k_a_a_l __k.a.a.l.__ https://www.facebook.com/people/kaushik-lakhani/100008225834590/

Coding Profile:

kaalcoder kaalcoder kaalcoder

Languages and Tools:

java C html5 css3 bootstrap javascript

gcp kubernetes postman canva figma

My GitHub stats:

kaal-coder

kaal-coder

hacktoberfest2023's People

Contributors

arunprasath13 avatar arushi105 avatar charan-s108 avatar deeppriyagupta avatar div-develops avatar divjot121 avatar flamehyperz avatar gaurav07076 avatar hjoshi012802 avatar itsmeshaurya avatar kaal-coder avatar kartik123-1 avatar lucashchang avatar nazim9945 avatar op-panda avatar padammantry04 avatar pranav-3005 avatar priyanshu1208 avatar rahul-oops avatar redvey avatar rohitsonvane88 avatar rraj45022 avatar rutujapimpalgaonkar avatar shubhdevv avatar shwetmala55 avatar sirilalithaadapa avatar sudhanshuprasad avatar surajwakka avatar tkrupesh14 avatar varunrmantri23 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

hacktoberfest2023's Issues

Stopwatch and Timer Combined project

I wish to contribute to this repo by adding my stopwatch and timer combined project developed in Html, css and javascript.

Please asssign this to me under HactoberFest 2023.

Python Script: JSON to CSV

Objective

Develop a Python script that converts JSON (JavaScript Object Notation) data to CSV (Comma Separated Values) format. This script will provide a convenient way to transform structured JSON data into a tabular format that can be easily opened and manipulated in spreadsheet software.

Features

  • Convert JSON to CSV: Implement functionality to read JSON data and export it as a CSV file.
  • Handle Nested JSON: Ensure that the script can handle nested JSON structures and appropriately flatten them for CSV representation.
  • Configurable Mapping: Allow users to specify custom mappings or select specific fields from the JSON data for inclusion in the CSV file.

Find Kth distinct character from start of given String.cpp

Given string str of size N containing all possible characters including integers. Print Kth distinct character from the starting of the given string. If K is more than a number of distinct characters, print -1.

Example:
Input: str = β€œprophet1999”, K = 4
Output: h
Explanation: First distinct character is β€˜p’.
Second distinct character is β€˜r’.
Third distinct character is β€˜o’.
Fourth distinct character is β€˜h’.
β€˜p’ is not the 4th character because it is already present before this point and not distinct.

TailwindCSS files

I want to add the beginner-friendly Tailwind CSS files for the community

Music Player-Frontend Project

Description

It is a UI for music player including features like:

  • Spinning images
  • Song details popup
  • Play and pause functionality
  • Switch songs
  • Progress Bar
  • Neon effect

Stacks Used

  • HTML
  • CSS
  • JavaScript

Update the README.md with hacktoberfest banner and brief introduction

Hello @kaal-coder , I would like to add a hacktoberfest banner along with a brief introduction to Hacktoberfest to better provide the context of hacktoberfest and also create a better user experience to contribute. I could also add a few emojis to engage the visitors of this repo.
I would love to update README.md as my hacktoberfest contribution if you like the idea : )
Thanks

Buy Maximum Stocks if i stocks can be bought on i-th day.cpp

In a stock market, there is a product with its infinite stocks. The stock prices are given for N days, where arr[i] denotes the price of the stock on the ith day. There is a rule that a customer can buy at most i stock on the ith day. If the customer has an amount of k amount of money initially, find out the maximum number of stocks a customer can buy.
For example, for 3 days the price of a stock is given as 7, 10, 4. You can buy 1 stock worth 7 rs on day 1, 2 stocks worth 10 rs each on day 2 and 3 stock worth 4 rs each on day 3.

Examples:
Input : price[] = { 10, 7, 19 },
k = 45.
Output: 4
A customer purchases 1 stock on day 1, 2 stocks on day 2 and 1 stock on day 3 for 10, 7 * 2 = 14 and 19 respectively. Hence, total amount is 10 + 14 + 19 = 43 and number of stocks purchased is 4.

Input : price[] = { 7, 10, 4 },
k = 100.
Output : 6

Copy set bits in a range.cpp

Given two numbers x and y, and a range [l, r] where 1 <= l, r <= 32. The task is consider set bits of y in range [l, r] and set these bits in x also.

Examples :
Input : x = 10, y = 13, l = 2, r = 3
Output : x = 14

Input : x = 8, y = 7, l = 1, r = 2
Output : x = 11

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.