This file was generated automatically based on this two sources:
- /etc/nginx/mime.types
- http://www.garykessler.net/library/file_sigs.html
This is a JSON object by following structure:
[string ext] : {
signs: [sign]
| import { Test, TestingModule } from '@nestjs/testing' | |
| import { INestApplication, LoggerService } from '@nestjs/common' | |
| import * as request from 'supertest' | |
| import { AppModule } from './../src/app.module' | |
| class TestLogger implements LoggerService { | |
| log(message: string) {} | |
| error(message: string, trace: string) {} | |
| warn(message: string) {} | |
| debug(message: string) {} |
| import { Test, TestingModule } from '@nestjs/testing' | |
| import { INestApplication, LoggerService } from '@nestjs/common' | |
| import * as request from 'supertest' | |
| import { AppModule } from './../src/app.module' | |
| class TestLogger implements LoggerService { | |
| log(message: string) {} | |
| error(message: string, trace: string) {} | |
| warn(message: string) {} | |
| debug(message: string) {} |
This file was generated automatically based on this two sources:
This is a JSON object by following structure:
[string ext] : {
signs: [sign]
| # derived from http://scikit-learn.org/stable/auto_examples/applications/topics_extraction_with_nmf_lda.html | |
| # explanations are located there : https://www.linkedin.com/pulse/dissociating-training-predicting-latent-dirichlet-lucien-tardres | |
| from sklearn.feature_extraction.text import CountVectorizer | |
| from sklearn.decomposition import LatentDirichletAllocation | |
| import pickle | |
| n_features = 50 | |
| n_topics = 2 |
Magic numbers are the first bits of a file which uniquely identify the type of file. This makes programming easier because complicated file structures need not be searched in order to identify the file type.
For example, a jpeg file starts with ffd8 ffe0 0010 4a46 4946 0001 0101 0047 ......JFIF.....G ffd8 shows that it's a JPEG file, and ffe0 identify a JFIF type structure. There is an ascii encoding of "JFIF" which comes after a length code, but that is not necessary in order to identify the file. The first 4 bytes do that uniquely.
This gives an ongoing list of file-type magic numbers.
| # updated 2017-07-16 | |
| https://github.com/nojhan/liquidprompt | |
| # ----------------------------------------------------------------- # | |
| REFERENCES | |
| # ----------------------------------------------------------------- # | |
| http://ndpsoftware.com/git-cheatsheet.html | |
| # ----------------------------------------------------------------- # |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"