Join us

ContentRecent posts and updates..
Story
@okanyenigun shared a post, 3 years, 11 months ago
Bridgestone

Design Patterns in Python: Facade Pattern

The word “Façade” means the front of the building in French. Similarly, the Facade design pattern is an interface between the client and the system. It hides the complexity of the system, isolates it from the client. It provides a higher level interface so that a client doesn’t have to deal with all the subsystems of the system individually. So that the client can use the system more easily. The Facade system is one of the structural design patterns.

Dev Swag
@ByteVibe shared a product

I test in production - Friday Deploy Edition - Programmer / Software Engineer / DevOps / Poster

#developer  #merchandise  #swag 

👨‍🚀 ByteVibe, a space out of space 👨‍🚀─✅ Museum-quality poster✅ Made on long-lasting semi-glossy (silk) paper✅ Durable colors✅ Vibrant colors✅ Shipped in sturdy packaging protecting the poster✅ Enviro...

Story
@okanyenigun shared a post, 3 years, 11 months ago
Bridgestone

Create a Chord Diagram in Python

Chord diagrams are eye catching, beautiful way to visualize inter-relationships between entities.

Each entity is represented by external nodes. Arcs show the relationship between nodes. The size of the arcs is determined by the strength of the relationship.

Story
@darcyjwood shared a post, 3 years, 11 months ago

Python, DynamoDB, and Cloud9 Walk into a Bar…

We’ll use Python and the Cloud9 IDE to create and add items to a DynamoDB table in just four simple steps!

Story
@arth_kumar11 shared a post, 3 years, 11 months ago
Author

Cookie Tracking and Stealing using Cross-Site Scripting

This article discusses how cookies move around the web and how they can be stolen.

1_700bKvYNzBQeqb8IqNxjRQ.jpeg
Story
@arth_kumar11 shared a post, 3 years, 11 months ago
Author

Explaining Port Scanning

A port scan is a common technique hackers use to discover open doors or weak points in a network. A port scan attack helps cyber criminals find open ports and figure out whether they are receiving or sending data. It can also reveal whether active security devices like firewalls are being used by an organization.

1_L-Xo0rPwxl854n3zDothmw.png
Story
@developergaurav-exe shared a post, 3 years, 11 months ago

How to do Web Scraping in Python? | Part 3 (Finale)

This will require you some knowledge of HTML and CSS so that you can easily play around with Tags and Elements.

Story
@arth_kumar11 shared a post, 3 years, 11 months ago
Author

Making a WiFi Scanner In Python

In this tutorial, we wrote a simple Wi-Fi scanner using the Scapy library that sniffs and decodes beacon frames which are transmitted every time by access points, they serve to announce the presence of a wireless network.

Story
@developergaurav-exe shared a post, 3 years, 11 months ago

How to do Web Scraping in Python? | Part 2

Importing packages in Python Notebook.

Photo by Alex Chumak on Unsplash
Story
@boldlink shared a post, 3 years, 11 months ago
AWS DevOps Consultancy, Boldlink

DevOps Tools in AWS

Amazon Elastic Container Service AWS CodePipeline AWS Lambda AWS API Gateway Agile Stacks DevOps Automation Platform

Today, let’s look at some of the DevOps tools provided by AWS to its customers to build and deploy software in the cloud. These tools help you build, test and deploy your source application promoting continuous integration and continuous delivery within AWS.AWS CodeCommitAWS CodeCommit is a highly s..

Cloud 5 - Copy.jpg
Story
@yokee-ss-hh shared a post, 3 years, 11 months ago
Backend developer, Clarivate

Data Classes 😈 in python (part-1)

Let’s start Data Classes 💃that uses dataclasses module

In a normal concrete class, we want to define a constructor and __repr__ to make the custom representation of the object when object is passed as parameter to print() function.