Configure Git Server on CentOS 7
Server
$ yum install git-core
$ sudo useradd git
$ sudo passwd git
Configure Git Server on CentOS 7
Server
$ yum install git-core
$ sudo useradd git
$ sudo passwd git
These instructions will guide you through the process of setting up local, trusted websites on your own computer.
These instructions are intended to be used on macOS Sierra, but they have been known to work in El Capitan, Yosemite, Mavericks, and Mountain Lion.
NOTE: You may substitute the edit
command for nano
, vim
, or whatever the editor of your choice is. Personally, I forward the edit
command to Sublime Text:
alias edit="/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl"
#include<stdio.h> | |
int length; | |
int list[1000]; | |
void swapHalves(){ | |
int tempList[length]; | |
int mid = length/2; | |
for(int i = 0; i < length; i++) |
import java.util.*; | |
public class FilePathsToJsonTree { | |
public static void main(final String... args) { | |
List<String> filePaths = new ArrayList<>(); | |
filePaths.add("root/a/1.txt"); | |
filePaths.add("root/"); | |
filePaths.add("root/a/"); |
#define ListInitSize 5 | |
#define NullValue -99999 | |
#define SuccessValue 99999 | |
int listMaxSize; | |
int *list; | |
int length; | |
//Initialize List | |
void initializer_list(){ |
#define NULL_VALUE -99999 | |
#define SUCCESS_VALUE 99999 | |
struct nodeList | |
{ | |
int item ; //for store the value | |
struct node *next ; //indicate next node | |
} ; | |
struct nodeList *list ; |
#define NULL_VALUE -99999 | |
#define SUCCESS_VALUE 99999 | |
struct listNode | |
{ | |
int item ; //will be used to store value | |
struct node *next ; //will keep address of next node | |
struct node *prev ; //will keep address of previous node | |
} ; | |
struct listNode * list ; | |
struct listNode * tail ; |