##Images -http://jaymantri.com/ -https://unsplash.com/
This file contains 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
from english_words import get_english_words_set | |
import click | |
import matplotlib.pyplot as plt | |
from itertools import product | |
class Sorcerer: | |
def generate_corpus(self, count): | |
corpus = {} |
This file contains 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
class DateRange { | |
constructor(start, end) { | |
this.start = start | |
this.end = end | |
} | |
} | |
let date1= new Date(2021, 4, 1, 10, 10, 10) | |
let date2= new Date(2021, 4, 2, 10, 10, 10) | |
let date3= new Date(2021, 4, 3, 10, 10, 10) |
This file contains 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
<!-- Code En Anglais --> | |
<div class="mkdf-icon-list-holder"> | |
<div class="mkdf-il-icon-holder"> | |
<span aria-hidden="true" class="mkdf-icon-font-elegant icon_clock_alt " style="color: #f1b847;font-size: 18px"></span> | |
</div> | |
<p class="mkdf-il-text" style="color: #b5b5b5; font-size: 15px; padding-left: 28px;">Mon – Fri 8am – 4pm</p> | |
</div> | |
<div class="mkdf-icon-list-holder"> | |
<div class="mkdf-il-icon-holder"> |
This file contains 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
<!doctype html> | |
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office"> | |
<head> | |
<!-- NAME: 1 COLUMN --> | |
<!--[if gte mso 15]> | |
<xml> | |
<o:OfficeDocumentSettings> | |
<o:AllowPNG/> | |
<o:PixelsPerInch>96</o:PixelsPerInch> | |
</o:OfficeDocumentSettings> |
This file contains 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
-- Creating the basic table structure | |
CREATE TABLE `Bateaux` ( | |
`noBateau` int NOT NULL AUTO_INCREMENT, | |
`nom` varchar(50) NOT NULL , | |
`type` varchar(50) NOT NULL , | |
PRIMARY KEY ( | |
`noBateau` | |
) | |
); |
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 1.
This file contains 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
Hanlon's Razor,(1) "Never attribute to malice that which is adequately explained by carelessness." (related: fundamental attribution error — " the tendency for people to place an undue emphasis on internal characteristics of the agent (character or intention), rather than external factors, in explaining another person's behavior in a given situation.") | |
Occam's Razor,(1) "Among competing hypotheses, the one with the fewest assumptions should be selected." (related: conjunction fallacy, overfitting, "when you hear hoofbeats, think of horses not zebras.") | |
Cognitive Biases,(1) "Tendencies to think in certain ways that can lead to systematic deviations from a standard of rationality or good judgments." | |
Arguing from First Principles,(1) "A basic, foundational, self-evident proposition or assumption that cannot be deduced from any other proposition or assumption." (related: dimensionality reduction; orthogonality; "Reasonable minds can disagree" if underlying premises differ.) | |
Proximate vs Root Cause,(1) "An event w |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
composer install | |
bower install | |
php artisan migrate | |
npm i --production | |
gulp --production | |
php artisan route:cache |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset='utf-8' /> | |
<title>Add a raster tile source</title> | |
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' /> | |
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.44.1/mapbox-gl.js'></script> | |
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.44.1/mapbox-gl.css' rel='stylesheet' /> | |
<style> | |
body { margin:0; padding:0; } |
NewerOlder