Coder Social home page Coder Social logo

sid-am-ahd935 / aliahns Goto Github PK

View Code? Open in Web Editor NEW
7.0 7.0 24.0 42.01 MB

This repository is under GDSC Aliah for their participants to get a good grasp of open source and how to work among others. In this repository there will be only beginner level contributions so as to get the participants started.

Python 11.83% C++ 47.29% Java 6.92% HTML 6.20% JavaScript 6.89% CSS 5.42% Jupyter Notebook 15.27% Cython 0.19%
hacktoberfest hacktoberfest2022

aliahns's Introduction

Hi there, I am AMAN. I program stuff

Learning to grow and growing to learn...

About Me

  • Engineering Undergrad '24
  • GDSC Lead at Aliah University
  • Technical Content Writer at Codedamn
  • 2x Hacktoberfest Contributor & 1x Hacktoberfest Maintainer
  • HSoC contributor
Aman's github stats

aliahns's People

Contributors

a-r-m-028 avatar aliul21 avatar aryansyedece42 avatar asifstar135 avatar asmallick1999 avatar avirukbasak avatar dishantzaveri avatar faiyazullah786 avatar hahahamid avatar haris-bit avatar joydeepmallick avatar madscientist46290 avatar mohsinking2002 avatar nandini2806 avatar nnrepos avatar parwez07 avatar pratham16121 avatar premjeet1804 avatar rahul-jain-1 avatar recksoldier avatar ritampaul avatar ritwikganguly avatar shivu2002a avatar sid-am-ahd935 avatar vilasrhegde avatar wasif0787 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

aliahns's Issues

Python Password Generator Script

Code is below:

import random

print('Welcome to Your Password Generator')

chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%^&*()_+0123456789'

number = input('Amount of Passwords to Generate: ')
number = int(number)

length = input('Input your password length: ')
length = int(length)

print('\nHere are your passwords:')

for pwd in range(number):
password = ''
for c in range(length):
password += random.choice(chars)
print(password)

Add new features to C++/libmatrix

Overload operator [ ]

Enables following syntax

matrix<int> m(5, 5);
m[2][3] = 11;

Constructor for 2D std::initializer_list

Enables following syntax

matrix<int> m2 {
    { 0, 2, 3, 4 },
    { 7, 1, 5, 6 },
    { 6, 5, 2, 7 },
    { 4, 3, 2, 3 }
};

Disable default constructor

Makes sure a matrix always has its attributes (dimensions and data) defined.

This eliminates need to check a matrix for a nullptr attribute.

matrix<int> m;    // error

Excess features

  1. Reference counter for smart memory management.
  2. Overload = and add copy constructor.

cpp: basic mร—n matrix template library

Features

  • creating a zero matrix of given size
  • creating a unit matrix of given size
  • get
  • set
  • equals
  • addition
  • subtraction
  • scalar multiplication
  • matrix multiplication
  • power
  • overloaded operators
  • determinant
  • transpose
  • cofactor
  • adjoint
  • inverse
  • print

VARIOUS PATTERNS IN C++

Hey I want to contribute in your repo (c++ section) with some interesting patterns which is really amazing.
Please tell me shall I go ahead with it or not?

Update README.md

Add a workflow to automatically update all the contributors lists inside the main README.md file. Also enhance some elements of the README.md.

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.