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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="script-1.js"></script> | |
<script src="script-2.js"></script> | |
<script src="script-3.js"></script> | |
</head> | |
<body> | |
</body> | |
</html> |
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
package com.example.quirk.servlets; | |
import javax.servlet.ServletException; | |
import javax.servlet.http.HttpServlet; | |
import javax.servlet.http.HttpServletRequest; | |
import javax.servlet.http.HttpServletResponse; | |
import java.io.IOException; | |
public class GetServlet extends HttpServlet { | |
@Override |
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
package com.example.quirk.servlets; | |
import javax.servlet.http.HttpServlet; | |
public class GetServlet extends HttpServlet { | |
} |
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
<dependencies> | |
<dependency> | |
<groupId>log4j</groupId> | |
<artifactId>log4j</artifactId> | |
<version>1.2.14</version> | |
</dependency> | |
<dependency> | |
<groupId>jaxen</groupId> | |
<artifactId>jaxen</artifactId> | |
<version>1.1.1</version> |
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
<project> | |
<groupId>com.example</groupId> | |
<artifactId>demo</artifactId> | |
<version>1.0</version> | |
</project> |
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
/* fix_fft.c - Fixed-point in-place Fast Fourier Transform */ | |
/* | |
All data are fixed-point short integers, in which -32768 | |
to +32768 represent -1.0 to +1.0 respectively. Integer | |
arithmetic is used for speed, instead of the more natural | |
floating-point. | |
For the forward FFT (time -> freq), fixed scaling is | |
performed to prevent arithmetic overflow, and to map a 0dB | |
sine/cosine wave (i.e. amplitude = 32767) to two -6dB freq |
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 { Fonts } from './../shared/Fonts'; | |
import { Component, OnInit, Input } from '@angular/core'; | |
@Component({ | |
selector: 'app-fontdetail', | |
templateUrl: './fontdetail.component.html', | |
styleUrls: ['./fontdetail.component.scss'] | |
}) | |
export class FontdetailComponent implements OnInit { | |
@Input() |
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
<div class="container" fxLayout="row" fxLayout.sm="column" fxLayout.xs="column" | |
fxLayoutAlign.gt-md="space-around center" fxLayoutGap="10px" fxLayoutGap.xs="0"> | |
<div fxFlex *ngIf="font"> | |
<mat-card class="selected-card"> | |
<mat-card-header> | |
<img class="header-image" mat-card-avatar src={{font.image}} alt={{font.name}}> | |
<mat-card-title> | |
<h3><strong>{{font.name | uppercase}}</strong></h3> | |
</mat-card-title> |
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
<div class="container" | |
fxLayout="column" | |
fxLayoutGap="10px"> | |
<div fxFlex> | |
<div> | |
<h3><strong>FONTS</strong></h3> | |
<hr> | |
</div> | |
</div> |
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 { FONTS } from './../shared/fontswithcomments'; | |
import { Component, OnInit } from '@angular/core'; | |
import {Fonts} from '../shared/Fonts'; | |
@Component({ | |
selector: 'app-menu', | |
templateUrl: './menu.component.html', | |
styleUrls: ['./menu.component.scss'] |
NewerOlder