Edited, memorised or added to reading queue

on 25-Mar-2019 (Mon)

Do you want BuboFlash to help you learning these things? Click here to log in or create user.

LAS SERVIDUMBRES.
#Derecho-Romano #servidumbre

CLASIFICACIÓN DE LAS SERVIDUMBRES..

  1. Servidumbres prediales. Derecho constituido sobre un inmueble, en beneficio de otro inmueble, y pueden subdividirse en:
    1. Rústicas. Constituidas bajo fundos no edificados.
    2. Urbanas. Construidas bajo fundos edificados.
  2. Servidumbres personales. Derechos reales constituidos sobre una cosa en beneficio de persona determinada y pueden subdividirse a su vez en:
    1. Usufructo. Derecho de usar la cosa ajena y percibir sus frutos
    2. Uso. Derecho de usar la cosa ajena conforme a las necesidades del usuario
    3. Habitación. Derechos de habitar una casa ajena.
    4. Operae servorum. Derecho de aprovechar el trabajo de los esclavos ajenos.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

LAS SERVIDUMBRES.
de propiedad. Necesariamente se traducen en dos obligaciones del titular de éste: Obligación de no hacer ciertos actos en su propiedad. Obligación de dejar hacer ciertos actos en su propiedad. <span>CLASIFICACIÓN. Servidumbres prediales. Derecho constituido sobre un inmueble, en beneficio de otro inmueble, y pueden subdividirse en: Rústicas. Constituidas bajo fundos no edificados. Urbanas. Construidas bajo fundos edificados. Servidumbres personales. Derechos reales constituidos sobre una cosa en beneficio de persona determinada y pueden subdividirse a su vez en: Usufructo. Derecho de usar la cosa ajena y percibir sus frutos Uso. Derecho de usar la cosa ajena conforme a las necesidades del usuario Habitación. Derechos de habitar una casa ajena. Operae servorum. Derecho de aprovechar el trabajo de los esclavos ajenos. EXTINCIÓN SERVIDUMBRES PREDIALES. Destrucción de uno de los fundos, o deterioros de tal naturaleza, que lo hagan inepto para el servicio que prestaba. El no uso en forma absoluta, ni po




Let’s say you have a pair of securities X and Y that have some underlying economic link, for example two companies that manufacture the same product like Pepsi and Coca Cola.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

Pairs Trading using Data-Driven Techniques: Simple Trading Strategies Part 3
ample of a strategy based on mathematical analysis. We’ll demonstrate how to leverage data to create and automate a pairs trading strategy. Download Ipython Notebook here . Underlying Principle <span>Let’s say you have a pair of securities X and Y that have some underlying economic link, for example two companies that manufacture the same product like Pepsi and Coca Cola. You expect the ratio or difference in prices (also called the spread) of these two to remain constant with time. However, from time to time, there might be a divergence in the spread be




Flashcard 3952806595852

Question
You expect the ratio or difference in prices (also called the spread)
Answer
[default - edit me]

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill
Pairs Trading using Data-Driven Techniques: Simple Trading Strategies Part 3
derlying Principle Let’s say you have a pair of securities X and Y that have some underlying economic link, for example two companies that manufacture the same product like Pepsi and Coca Cola. <span>You expect the ratio or difference in prices (also called the spread) of these two to remain constant with time. However, from time to time, there might be a divergence in the spread between these two pairs caused by temporary supply/demand changes, large







Flashcard 3952818392332

Tags
#git
Question
Create an empty Git repository.
Answer
git init

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 3952821275916

Tags
#git
Question
Check what files Git will add to your new repository
Answer
git status

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 3952825208076

Tags
#git
Question

Command will add folder to the index

A single command will add everything in your current directory and its subdirectories:

This will "stage" all files to be added to version control, preparing them to be committed in your first commit.

Answer
  • git add [directory name #1] [directory name #2] < ... >
  • git add .

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 3952832285964

Tags
#git
Question
<p>Commit all the files that have been added, with commit message</p>
Answer
git commit -m "Initial commit"

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 3952834645260

Tags
#git
Question
Adding a remote with example name origin
Answer
git remote add origin https:///owner/repository.git

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 3952836480268

Tags
#git
Question
Clone repository
Answer

cd [folder]

git clone https://github.com/username/projectname.git


statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 3952838315276

Tags
#git
Question
Clone repository to specific folder
Answer
git clone https://github.com/username/projectname.git MyFolder

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 3952841723148

Tags
#git
Question
Clone repository to the current folder
Answer
git clone https://github.com/username/projectname.git .

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 3952844082444

Tags
#git
Question
Clone through ssh
Answer
git clone git@github.com:username/projectname.git

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 3952846441740

Tags
#git
Question
Create empty repository on the remote server. (Code to run on the remote server)
Answer
git init --bare /path/to/repo.git

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 3952848801036

Tags
#git
Question
Create empty repository. (Command to run on local machine)
Answer
git remote add origin ssh://username@server:/path/to/repo.git

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 3952851160332

Tags
#git
Question
Transfer local repository to remote location.
Answer

git push --set-upstream origin master

or

git push -u origin master


statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 3952853519628

Tags
#git
Question
Set username and email - globalne ustawienia
Answer
  • git config --global user.name "Your Name"
  • git config --global user.email mail@example.com

This will store the setting in your user's .gitconfig file: e.g. $HOME/.gitconfig or for Windows, %USERPROFILE%\.gitconfig


statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 3952858238220

Tags
#git
Question
User name and email only for current repository
Answer
  • cd /path/to/my/repo
  • git config user.name "Your Login At Work"
  • git config user.email mail_at_work@example.com

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 3952860597516

Tags
#git
Question
Remove global identity
Answer
  • git config --global --remove-section user.name
  • git config --global --remove-section user.email

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 3952862956812

Tags
#git
Question
To force git to look for your identity only within a repository's settings, not in the global config:
Answer
git config --global user.useConfigOnly true

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs