Skip to content
View SuryaElite's full-sized avatar
👨‍💻
Bored with what I know. Chasing what I don't.
👨‍💻
Bored with what I know. Chasing what I don't.

Organizations

@sedhati

Block or report SuryaElite

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. ssl_expiry_checker ssl_expiry_checker Public

    Check SSL Expiry of Domain and Notify Via Email

    PHP

  2. ssl-check-api ssl-check-api Public

    Forked from ilteriskeskin/ssl-check-api

    This api returns the ssl expiration date of the hostname.

    Python

  3. suryaelite.github.io suryaelite.github.io Public

  4. Devops Best Practices Checklist Devops Best Practices Checklist
    1
    #### Find the original here article here: [Devops Best Practices](https://wade.be/development/2017/11/05/devops-best-practices.html)
    2
    
                  
    3
    DevOps started out as "[Agile Systems Administration](https://newrelic.com/blog/nerd-life/devops-name)". In 2008, at the Agile Conference in Toronto, [Andrew Shafer](https://twitter.com/littleidea) posted an offer to moderate an ad hoc "Birds of a Feather" meeting to discuss the topic of ["Agile Infrastructure"](https://naradacode.com/2020/02/01/devops-history/). Only one person showed up to discuss the topic: Patrick Debois. Their discussions and sharing of ideas with others advanced the concept of "agile systems administration". In that same year, Debois and Shafer formed an Agile Systems Administrator group on Google, with limited success. Patrick Debois did a presentation called ["Infrastructure and Operations"](https://web.archive.org/web/20210205152003/http://www.jedi.be/presentations/agile-infrastructure-agile-2008.pdf) addressing issues around involving more of the company in the same disciplines as programmers.
    4
    
                  
    5
    In 2009, [Patrick Debois](https://twitter.com/patrickdebois) created "DevOpsDays" conference to help to bring it to light. However, it wouldn't begin to [trend until about 2010](https://trends.google.co.uk/trends/explore?date=all&q=devops), when people would begin to describe it as a [standalone discipline](http://www.somic.org/2010/03/02/the-rise-of-devops/).
  5. Merge all the CSV to a Large CSV fil... Merge all the CSV to a Large CSV file in a Folder.
    1
    # This program will merge all the csv files to a single large file. Headers should be same.
    2
    # sampleFile.csv = Provide a file that contains the header of csv.
    3
    
                  
    4
    { head -n1 sampleFile.csv; for f in *.csv; do tail -n+2 "$f"; done; } > largeFile.csv
  6. computer-science computer-science Public

    Forked from ossu/computer-science

    🎓 Path to a free self-taught education in Computer Science!