当前位置: 首页 > 软件库 > Web应用开发 > >

awesome-first-timers

Place to contribute if you are a first timer
授权协议 Readme
开发语言 JavaScript
所属分类 Web应用开发
软件类型 开源软件
地区 不详
投 递 者 丁翊歌
操作系统 未知
开源组织
适用人群 未知
 软件概览

awesome-first-timers

This is a place to contribute if you are a first timer. Contains people present in the world of open source, check out some of the amazing users here

Details

Hi there, if you are reading this then probably you are new to open source and looking for some issues to contribute to.
You can start by contributing to this awesome list, follow these simple steps to make your first successful PR.

Steps:

  1. Installation of required tools:
  • git
  • any IDE of your choice (for ex. sublime text and atom)

Installing git:

Contributing to this repository:

  1. Star this repository
  2. Fork this repository
  3. Open 2018 create a new markdown file with your username and enter details in the following format
# Introduction ��
**Name ��**:  "Your Name here"
**Place ��** : "Your Place here"  
**Bio ��**: "Enter about Yourself" 
**GitHub ��**: [".."](Your github profile url)  

![Awesome](https://awesome.re/badge.svg)
 
  • make sure to give 2 whitespaces after each line.
  1. Commit changes with a meaningful commit message like "Added "Your Name to users.md".
  2. Create a pull request.
  3. Sit back and relax while your pull request is reviewed and merged.

Using git to contribute to this repository

  1. Star this repository

  2. Fork this repository

  3. Clone this repository by clicking on green clone or download button and then copying the link given there.
    Open your terminal(linux/mac) or git bash(windows) and write

    git clone https://github.com/Anupam-dagar/awesome-first-timers.git
    Image of clone button
    Image of clone button

  4. Change your directory.cd awesome-first-timers

  5. Open 2018 ,create a new markdown file with your username and enter details in the following format

 # Introduction ��
**Name ��**:  "Your Name here"
**Place ��** : "Your Place here"  
**Bio ��**: "Enter about Yourself" 
**GitHub ��**: [".."](Your github profile url)  

![Awesome](https://awesome.re/badge.svg)
  • make sure to give 2 whitespaces after each line.
  1. Commit changes with a meaningful commit message like "Added "myself/your username".
    git add -A
    git commit -m "Commit message here" (include double quotes)
  2. Push to repository
    git push origin master
  3. Create a pull request.Image of clone buttonImage of clone button
  4. Sit back and relax while your pull request is reviewed and merged.
 相关资料
  • 返回序列的第一个元素。 语法 (Syntax) 以下是语法。 (first seq1) Parameters - 'seq1'是元素的序列列表。 Return Value - Return Value序列的第一个元素。 例子 (Example) 以下是Clojure中的第一个例子。 (ns clojure.examples.example (:gen-class)) ;; This pro

  • 此函数返回列表中的第一项。 语法 (Syntax) 以下是语法。 (first lst) Parameters - 'lst'是项目列表。 Return Value - 列表中的第一个值。 例子 (Example) 以下是Clojure中的第一个例子。 (ns clojure.examples.example (:gen-class)) (defn example [] (print

  • 此属性返回列表中的第一个元素。 语法 (Syntax) List.first 例子 (Example) void main() { var lst = new List(); lst.add(12); lst.add(13); print("The first element of the list is: ${lst.first}"); } 它将产生以下

  • An optimized version of Sequence#first that returns another StringLikeSequence (or just the first character, if count is undefined). Examples Lazy('foo').first() // => 'f' Lazy('fo').fi

  • An optimized version of Sequence#first, which creates an ArrayLikeSequence so that the result still provides random access. Examples Lazy([1, 2, 3]).first(2) // instanceof Lazy.ArrayLikeSequence

  • Creates a new sequence comprising the first N elements from this sequence, OR (if N is undefined) simply returns the first element of this sequence. Signature Sequence.first = function(count) { /*...*