Author: admin

  •  metasploit-framework

    The Metasploit Framework is released under a BSD-style license.Metasploit can do all sorts of things.The first thing you’ll want to do is start msfconsole, but after that, you’ll probably be best served by reading Metasploit Unleashed, the great community resources, or the wiki.Bug tracking and development information can be found at:GitHub – rapid7/metasploit-framework: Metasploit FrameworkAPI…

  • rails

    Rails is a web-application framework that includes everything needed to create databasebacked web applications according to the Model-View-Controller (MVC) pattern.Understanding the MVC pattern is key to understanding Rails.MVC divides your application into three layers, each with a specific responsibility.

  •  Discourse

    Discourse is the 100% open source discussion platform built for the next decade of the Internet.Use it as a mailing list, discussion forum, long-form chat room, and more!Discourse is a from-scratch reboot, an attempt to reimagine what a modern Internet discussion platform should be today, in a world of ubiquitous smartphones, tablets, Facebook, and Twitter.

  • Jekyll

    Jekyll is a blog-aware, static site generator in Ruby.Jekyll does what you tell it to do — no more, no less.It doesn’t try to outsmart users by making bold assumptions, nor does it burden them with needless complexity and configuration.Put simply, Jekyll gets out of your way and allows you to concentrate on what truly…

  • Strong_migrations

      Strong Migrations detects potentially dangerous operations in migrations, prevents them from running by default, and provides instructions on safer ways to do what you want.Catch unsafe migrations at dev time.This software is very important for detecting dangerous softwares.

  • devdocs

    DevDocs is a web app aimed at providing you with quick access to the reference manual of just about every front-end language and library.It lists all the APIs of a given selected language and their official documentation in an easily browsable and viewable format, without the needless menus and tacky attempted styling that official sites…

  • Creating a Twitter or Reddit bot using RoR

    Sure! Here is an example of how you can build a Twitter bot using Ruby on Rails: First, you will need to set up a new Rails application. You can do this by running the following command in your terminal: Next, you will need to create a Twitter account for your bot and obtain API keys and…

  • Creating an object-oriented quiz game using RoR

    To create an object-oriented quiz game using Ruby, you will need to do the following: Define the quiz game class:  Start by creating a class for the quiz game. This class should have a constructor method that initializes the quiz game with a list of questions and answers. You can also add methods to the…

  • Build a simple product catalogue and shopping cart using RoR

    To build a simple product catalog and shopping cart using Ruby on Rails, you will need to do the following: Install Ruby and Rails:  Make sure you have Ruby and Rails installed on your system. You can check if you already have Ruby installed by running the command ruby -v in your terminal. If you…