Models | Examples |
---|---|
Display ads | Yahoo! |
Search ads |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
// Commented-out options have their default values. | |
"include": ["src/**/*"], | |
"exclude": ["node_modules/*"], | |
// "files": [], // A list of relative or absolute file paths to include. | |
// "extends": "", // A string containing a path to another configuration file to inherit from. | |
// "references": [], // An array of objects `{"path": "./to/dirOrConfig"}` that specifies projects to reference. | |
// "compileOnSave": false, // Signals to the IDE to generate all files for a given tsconfig.json upon saving. | |
"compilerOptions": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data<-read.table("competition.csv", | |
sep=";", | |
header=TRUE, | |
dec=",") | |
# Ajoute la colonne de poids individuel | |
data$PoidsInd <- data$Poids/data$DensiteSp | |
# On sépare les deux espèces |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Q11 | |
MustardAnswer <- c(1, 1) | |
SeigleAnswer <- c(1, 1) | |
splittedBySpecies <- split( data , f = data$Espece ) | |
for (species in splittedBySpecies) { | |
splittedBySpeciesAndDensity <- split (splittedBySpecies, f = splittedBySpecies$DensiteTot) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### prerequisites | |
sudo yum groupinstall "Development Tools" | |
git --version | |
gcc --version | |
bash --version | |
python --version # (system) | |
sudo yum install -y openssl-devel readline-devel zlib-devel | |
sudo yum update | |
### install `pyenv` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/x-template" id="dropdown-template"> | |
<div class="dropdown" v-show="show" v-bind:class="originClass" transition="dropdown"> | |
<slot>No dropdown content!</slot> | |
</div> | |
</script> | |
<script type="text/x-template" id="datagrid-template"> | |
<table id="{{ id }}" class="table-striped datagrid"> | |
<thead> | |
<tr> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ACCESS REQUIRED | |
[email protected] | |
2017-12-10 17:56:54.929 DEBUG 15864 --- [nio-8080-exec-6] o.s.web.servlet.DispatcherServlet : DispatcherServlet with name 'dispatcherServlet' processing PUT request for [/api/op/movements/end/62] | |
2017-12-10 17:56:54.931 DEBUG 15864 --- [nio-8080-exec-6] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /api/op/movements/end/62 | |
2017-12-10 17:56:54.932 DEBUG 15864 --- [nio-8080-exec-6] s.w.s.m.m.a.RequestMappingHandlerMapping : Returning handler method [public void mainApplication.controllers.OperatorAPI.MovementAPIOperator.end(int) throws mainApplication.exceptions.UnauthorizedException,mainApplication.exceptions.IncorrectStateException,mainApplication.exceptions.NonExistantAccountException,mainApplication.exceptions.NonExistantTicketException,mainApplication.exceptions.NonExistantVehiculeException,mainApplication.exceptions.DispatchIsNull,mainApplication.exceptions.OperatorIsNull,mainApplication.exceptions.IncorrectOperator] | |
2017-12-10 17:56 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Render an exception into an HTTP response. | |
* | |
* @param \Illuminate\Http\Request $request | |
* @param \Exception $e | |
* @return \Illuminate\Http\Response | |
*/ | |
public function render($request, Exception $e) | |
{ | |
if ($this->isHttpException($e)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Latency Comparison Numbers | |
-------------------------- | |
L1 cache reference 0.5 ns | |
Branch mispredict 5 ns | |
L2 cache reference 7 ns 14x L1 cache | |
Mutex lock/unlock 25 ns | |
Main memory reference 100 ns 20x L2 cache, 200x L1 cache | |
Compress 1K bytes with Zippy 3,000 ns | |
Send 1K bytes over 1 Gbps network 10,000 ns 0.01 ms | |
Read 4K randomly from SSD* 150,000 ns 0.15 ms |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
NewerOlder