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
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-failsafe-plugin</artifactId> | |
| <version>2.22.2</version> | |
| <configuration> | |
| <includes> | |
| <include>**/*IT.java</include> | |
| </includes> | |
| <parallel>none</parallel> | |
| </configuration> |
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
| # Levantar un servidor HTTP usando Python desde la linea de comandos | |
| $ python -m SimpleHTTPServer # Python2.7 | |
| $ python -m http.server # Python3 | |
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
| import { MatSnackBar } from '@angular/material'; | |
| import { Injectable } from '@angular/core'; | |
| import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor, HttpResponse } from '@angular/common/http'; | |
| import { Observable, EMPTY } from 'rxjs'; | |
| import { tap, catchError, retry } from 'rxjs/operators'; | |
| import { environment } from 'src/environments/environment'; | |
| @Injectable({ | |
| providedIn: 'root' | |
| }) |
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
| { | |
| "env": { | |
| "node": true, | |
| "es6": true | |
| }, | |
| "ecmaFeatures": { | |
| "arrowFunctions": true, | |
| "blockBindings": true, | |
| "classes": true, | |
| "defaultParameters": true, |
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
| defmodule M do | |
| def main do | |
| #string_stuff() | |
| #comparing_suff() | |
| #if_stuff() | |
| #tuple_stuff() | |
| #list_stuff() | |
| #map_stuff() | |
| #patternmatching_stuff() | |
| #anonymousfun_stuff() |
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
| if __name__ == '__main__': | |
| import sys | |
| import mp4 | |
| import argparse | |
| def write_file(path, content): | |
| with open(path, 'wb') as f: | |
| f.write(content) | |
| def addr(sval): |