Coder Social home page Coder Social logo

Hi My name is Damilola Abiona

Frontend Developer/Penetration Tester

I'm Damilola Abiona, I am an Enthusiastic Frontend Developer with practical experience in progressive Web App Development.. I really enjoy learning languages and frameworks like Javascript and React. I also enjoy wireframing,UI,UX, and design in general my passion for writing secure and non vulnerable code led me into cybersecurity and I chose penetration testing a niche in web hacking.

  • 🌍  I'm based in Lagos
  • ✉️  You can contact me at [email protected]
  • 🧠  I'm learning Reactjs
  • 🤝  I'm open to collaborating on Open source projects.

Skills

JavaScript Git HTML5 React CSS3 Sass XD Figma

Socials

Badges

My GitHub Stats

DamilolaAbiona's GitHub stats

GitHub Commits Graph

Top Languages

Top Repositories








damilolaabiona's Projects

alx-pre_course icon alx-pre_course

I'm now a ALX Student, this is my first repository as a full-stack engineer

alx-zero_day icon alx-zero_day

I'm now a ALX Student, this is my first repository as a full-stack engineer

basic-arithmetic-calculator icon basic-arithmetic-calculator

Build a basic arithmetic calculator without a frontend The calculator should be able to perform basic operations like Addition, Subtraction, Multiplication, & Division

benchmark icon benchmark

OWASP Benchmark is a test suite designed to verify the speed and accuracy of software vulnerability detection tools. A fully runnable web app written in Java, it supports analysis by Static (SAST), Dynamic (DAST), and Runtime (IAST) tools that support Java. The idea is that since it is fully runnable and all the vulnerabilities are actually exploit

bmi-calculator icon bmi-calculator

Body mass index (BMI) is a measure of body fat based on height and weight that applies to adult men and women. This calculator is is designed to calculate your weight based on the value of input given by Users.

counterapp icon counterapp

A counter application built with HTML, CSS and Javascript

django-crud icon django-crud

Create a new GitHub repository with a README.md, and Python .gitignore file. Clone it to your machine/computer, that will create a new folder on your computer with your repository’s content. Create a new virtual environment in that folder named env and install django in it. Create a new django project. Use your Zuriboard Student ID as the name of the project. Create a new application using the django startapp command. The app should be called blog. Add the blog app to the main_projects INSTALLED_APPS. Replace the content of blog/models.py with the content of this starter file: https://github.com/TobeTek/Zuri/blob/main/starter-files/Django-CRUD/models.py . We should now have a Post model in blog/models.py. Create migrations for your new model using the makemigrations django command. Run all migrations using, migrate django command. To make our Post model accessible from the admin site, register the Post model in blog/admin.py Now for the views. In blog/views.py, create a new view/class PostListView, which inherits django’s generic ListView, it’s config/attributes should be: model = Post Create another view, PostCreateView, which inherits django’s generic CreateView, with attributes: model = Post fields = “__all__” success_url = reverse_lazy(“blog:all”) Create another view, PostDetailView, which inherits django’s generic DetailView, with attributes: model = Post Create another view PostUpdateView, which inherits django’s generic UpdateView, with attributes: model = Post fields = “__all__” success_url = reverse_lazy(“blog:all”) Create another view PostDeleteView, which inherits django’s generic UpdateView, with attributes: model = Post fields = “__all__” success_url = reverse_lazy(“blog:all”) Time to create templates. Create a new folder templates under the blog app. Copy all the files and folders from https://github.com/TobeTek/Zuri/tree/main/starter-files/Django-CRUD/templates to blog/templates folder. Create a file, blog/urls.py, if it doesn’t already exist. Replace the content of blog/urls.py with the content of https://github.com/TobeTek/Zuri/blob/main/starter-files/Django-CRUD/urls.py Go to your project_app/urls.py and add a new url pattern with the following content: path("blog/", include("blog.urls", namespace="blog")) Stage and Commit your Django project and push your changes to your GitHub repository. Do not add your database (db.sqlite) to version control (GitHub). Ensure your final code/submission is on the default branch of your GitHub repository.

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.