Giter Club home page Giter Club logo

posts's Introduction

Posts πŸ“

Blogging seems easy with github 🀩

A Headless CMS (Github theme) using Hugo, Github Issues and Github Actions.

github-actions-png github-actions-png

-------------------------------------------------------------

Features πŸ“Έ

Add Blog Posts ✏

This is very simple process, You only need to create an issue using create-a-post issue template.

Screenshot from 2021-12-06 00-14-49

Screenshot from 2021-12-06 00-14-53

Edit Blog Posts πŸ“Ž

Screenshot from 2021-12-06 00-16-56

Remove Blog Posts ❌

Just simply close that issue, See how easy is it πŸ™ƒ

Screenshot from 2021-12-06 00-19-02

Preview Blog Posts 🎬

Screenshot from 2021-12-06 00-17-04

Organize Blog Posts πŸ“š

You could either pin your posts to the home page or simple push that all posts page.

You only need to set pin: true/false in the issue template.

Screenshot from 2021-12-06 00-27-43

-------------------------------------------------------------

Configuration πŸ› 

If you want to add this CMS in your repo , Do below steps ⬇

1.Clone this repo πŸ“₯

git clone https://github.com/Aryamanz29/posts.git

2.Change config.toml ✏

Just replace YOUR_GITHUB_USERNAME = Your github username YOUR_REPO_NAME = Repository name

baseURL = "https://YOUR_GITHUB_USERNAME.github.io/YOUR_REPO_NAME"
languageCode = "en-us"
title = "Aryaman's blog"
theme = "github-style"

[params]
  author = "YOUR_NAME"
  description = "Blogs by Aryamanz29 πŸ‘¨β€πŸ’», Built with Github Actions πŸš€"
  github = "Aryamanz29"
  #facebook = ""
  twitter = "AryamanZ29"
  linkedin = "aryamanz29"
  instagram = "aryaman_z29"
  email = "[email protected]"
  url = "https://aryamanz29.github.io/"
  lastmod = true
  userStatusEmoji = "🌠"
  favicon = "/posts/images/github.png"
  location = "India"
  
[frontmatter]
  lastmod = ["lastmod", ":fileModTime", ":default"]

3. Change workflow files πŸ“‹

  • create-issue-posts.yml Line 36:
hugo -D -b https://YOUR_GITHUB_USERNAME.github.io/YOUR_REPO_NAME/ -t github-style
  • remove-issue-posts.yml Line 31:
hugo -D -b https://YOUR_GITHUB_USERNAME.github.io/YOUR_REPO_NAME/ -t github-style
  1. And don't forgot to add this hugo theme and run local dev server to check everthing working as expected.
cd themes/
rm -rf github-style/
git clone https://github.com/MeiK2333/github-style.git
cd ..
hugo serve

-------------------------------------------------------------

posts's People

Contributors

aryamanz29 avatar

Stargazers

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

Watchers

 avatar

posts's Issues

post created through template

pin: true

post created through template post created through templates

post created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through template

Git and Github fundamentals

Imagine you are working on a project and you add some code to it that breaks the project and you want to roll back to that point that before the change was made.
Git facilitates that by acting as a Version Control System.

Issues faced by early developers before git

  • Developers had to submit their codes to the central server without having copies of their own
  • Any changes made to the source code were unknown to the other developers
  • There was no communication between any of the developers

How git changed the scenario

  • Every developer has an entire copy of the code on their local systems
  • Any changes made to the source code can be tracked by others
  • There is regular communication between the developers

What is git?

Git is a version control system used for tracking changes in computer files. It is generally used for source code management in software development:

  • Git is used to track changes in the source code
  • The distributed version control tool is used for source code management
  • It allows multiple developers to work together
  • It supports non-linear development through its thousands of parallel branches

About Version Control:

What is β€œversion control”, and why should you care? Version control is a system that records changes to a file or set of files over time so that you can recall specific versions later. For the examples in this book, you will use software source code as the files being version controlled, though, in reality, you can do this with nearly any type of file on a computer.

Some template Workflows:

image

image

image

Deploying to netlify πŸš€

pin: false
summary: Learn how to deploy sites to netlify

Deploying Site on Netlify

Netlify is an all-in-one platform for automating modern web projects.It has continuous integration, and deployment pipeline with a single workflow.

It Provides Atomic Deploy and inhibit Mixed content

Atomic Deploy - Atomic Deployment is essentially a script that allows your web application to be updated from Git so that it continuously runs, while the code updates in the background, ensuring zero downtime on your server during the entire process.

Mixed Content - This specific error occurs when both HTTP and HTTPS assets are being loaded from a particular web page, which was requested to be fetched as HTTPS.

There are two ways to Deploy Site on Netlify

  1. Creating deploys by connecting a Git repository for continuous deployment
  2. Publishing a site folder with drag and drop

First Step

Create your account on Netlify
https://www.netlify.com/

Create account

First way

Using Git Repository

On Dashboard go to Team Overview --> New site from Git
Follow Three easy steps now to get your site on Netlify.

Steps

  1. Connect to git provider (for eg Github or GitLab or Bitbucket ).
    It will ask for authorization --> Enable that
  2. Pick a Repository
  3. Keep the default Site settings and Deploy!

Link for the site will be displayed as soon as you complete the above steps
Kudos! you have deployed your first site.

Perks of Using Git Repo Method
Provides Continous Deployment ie. any changes pushed to Git Repo will be automatically deployed to site ensuring zero downtime on the server.

Second way

Using Drag and Drop

Drag and Drop
On Dashboard
Go to Sites
Under the search site panel you will see a blank space saying
Drag abd Drop your site folder here

Click on it and select the folder from local files
Kudos! the site is deployed --> Link will be displayed on Dashboard itself.

Tip : Prefer 1st way instead 2nd because continous deployment is an ultimate feature. Hence it's good to have a Github Repo for your site but not necessary for just simple deploying

Domain name

Domain settings
Once the site is deployed using any of the two ways!
Go to Domain Settings
By default we are provided with netlify as a subdomain.
We can have a custom domain under as a paid perk.

We can change the name of Website for complete free
Under custom names select ...(3 dots) and edit the name of your website. for eg my_first_website.netlify.app.

What is Markdown Language?

pin: false
summary: Learn about markdown

Learn About Markdown Language πŸš€

Markdown is a lightweight markup language. It is used to create formatted text using simple text editor.

Github supports Markdown and thats why we are going to create this documentation in .md file.

  • Content:
    • Basic syntax.
    • Advanced syntax.

-----------------------------------------------------

Basic Syntax :

  • HEADERS (H1 to H6)

#  h1 tag
##  h2 tag
###  h3 tag

Output

h1 tag

h2 tag

h3 tag

-----------------------------------------------------

  • EMPHASIS

*This is italic*
_This is also italic_
**This is bold**
__This is also bold__

Output

This is italic

This is also italic

This is bold

This is also bold
-----------------------------------------------------

  • BLOCKQUOTES

> this is a single block quote.
>> this is a nested block quote.

Output

this is a single block quote.

this is a nested block quote.

-----------------------------------------------------

  • LIST

  • Ordered List :

 1. First item
 2. Second item
 

Output

  1. First item
  2. Second item
  • Unordered List :

 - First item
  - Second item

Output

  • First item
    • Second item

-----------------------------------------------------

  • HORIZONTAL RULE

---

Output


-----------------------------------------------------

  • Code

  `This is a code`

Output

This is a code

More Examples :

Highlighted C Codes:

  ```c
  Printf("Hello World!");

Output

Printf("Hello World!");

Highlighted HTML Codes:

  ```html
  <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>

</body>
</html>

Output

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
</head>
<body>

</body>
</html>

-----------------------------------------------------

  • LINK

Normal link Syntax:
[title](https://www.example.com)

Example:
[Github](https://www.github.com)

Emails Syntax:
<email id>

Example:
<[email protected]>

Output :

Github

[email protected]

-----------------------------------------------------

  • IMAGES

Syntax:
![image name](image address)

Example:
![github-octocat](https://user-images.githubusercontent.com/87390353/139872522-9706b6aa-06cf-480f-b26d-0b7e0aaa7214.png)

Output :

github-octocat

-----------------------------------------------------

Advanced Syntax :

  • EMOJI

Syntax:  :short code:
Example : :laughing:

Output :

πŸ˜†

-----------------------------------------------------

  • FOOTNOTE

Here's a sentence with a footnote. [^1]

[^1]: It is the footnote.

Here's a sentence with a footnote. 1

-----------------------------------------------------

  • STRIKE THROUGH

Syntax:
~~Sentence~~

Example:
~~You are a bad student.~~

Output :

This sentence is incorrect

-----------------------------------------------------

Reference:

Github Markdown

Keep Learning !

Footnotes

  1. It is the footnote. ↩

Final test

pin: false

MY BLOG SUMMARY

MY BLOG CONTENT

yes sirrrrrrr new post changed yay

yes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yay

yes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post changed yayyes sirrrrrrr new post ch

OpenWisp'22 Release Sprint πŸš€

pin: true
summary: OpenWisp'22 Release Sprint

o-sprint

From last one week, Me and other fellow contributors were participating in OpenWisp'22 release sprint, Today It finally came to an end. It was a very new experience for me because I got the opportunity to learn about how actually maintainers of big open-source project reviews contributors PR's and what they're actually wanted from contributors to do before they request review from maintainers. I'll mention some valuable points which I've noted during this sprint, and they are very useful for new contributors.

  • Read documentation πŸ“ƒ Before diving into an issue section, I would always suggest everyone to read documentation first, In OpenWisp you found every project is well documented. Not only you're going to understand how the project is working (technical aspect), but you'll also get an idea about motivation of the project i.e. why it started, what real world problem it tries to solve, What it's going to achieve in future etc.

  • Code is not always right ❎ Many new contributors will always think of solving issues only in terms of code and want their PR to get merged into the project asap, but this is not a good practice when it comes to contributing to a big organization. Project maintainers said, "We humans are generally more likely inclined towards text that talks about changes we made rather than looking actual code/implementation every time". This means, let say If today I created a PR for implementing feature Y, and I just simply write code without having a good commit message (not having clear explanation about my changes) then it might not be creating any concern today but in future these small things will raise some serious issues, and then we can't able to figure out its solution.

  • Test driven development πŸ›  Google says, "Test-driven development is a software development process relying on software requirements being converted to test cases before software is fully developed, and tracking all software development by repeatedly testing the software against all test cases." So whenever you're solving bugs don't forget to write tests for that and remember if you remove your patch from code that particular test case must fail & the test case must be specific to your patch.

  • Double Check Double Check πŸ•΅ Do you remember your high school exams? You also re-check everything before submission, Same practice we are applying here while submitting PR's for maintainers & do always remember to double-check your work and try to checks for different cases, That's not only saves your time but also maintainers as well.

  • Be patient πŸ™‚ Always remember, open-source contribution is a game of checking your level of patience. Do your work and make sure you follow above mention steps, thoroughly read project contributing guidelines, then just leave your PR for maintainers review (You may also ping them on their IRC channel if you want).

Maintainers are also wanted to check your work and suggest you changes if required, but you need to be patient for that, or You may start looking for some other issues during that time gap, At last I would say just don't sit idle, If you really want to contribute and learn new things from the community. πŸ˜„

My links of PR's that got reviewed and merged during sprint mention below πŸ‘‡

Keep learning, Stay healthy πŸ™ƒ

post created through template

pin: false

post created through template post created through template

post created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through templatepost created through template

Install Node.js on Linux

pin: false
summary: Node.js on Linux

Using NodeSource

Refer to the NodeSource documentation for more
information on the available versions.

Node.js v14.x:

# Using Ubuntu
curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt-get install -y nodejs

# Using Debian, as root
curl -fsSL https://deb.nodesource.com/setup_14.x | bash -
apt-get install -y nodejs

Upgrade npm

npm install -g npm

final checking

final checkingfinal checkingfinal checkingfinal checkingfinal checkingfinal checkingfinal checkingfinal checkingfinal checkingfinal checking

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.