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
const zlib = require('zlib'); | |
const fs = require('fs'); | |
const { performance } = require('perf_hooks'); | |
const filePath = './output.fixture.json'; // Change this to your file | |
const outputPath = './compressed.br'; | |
// Weight for time and size in the calculation. Must be between 0 and 1. | |
const timeWeight = 0.5; // weight for time | |
const sizeWeight = 1 - timeWeight; // weight for size |
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
let vh = window.innerHeight * 0.01; | |
let vw = window.innerWidth * 0.01; | |
const setDimensions = (_vh, _vw) => { | |
const rs = _vh / _vw < 0.8 ? vh : vw; | |
document.documentElement.style.setProperty('--vh', `${_vh}px`); | |
document.documentElement.style.setProperty('--vw', `${_vw}px`); | |
document.documentElement.style.setProperty('--rs', `${rs}px`); | |
}; |
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
du -hs * | sort -hr |
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
const path = require('path'); | |
const ExtractTextPlugin = require('extract-text-webpack-plugin'); | |
const outputPath = path.join(__dirname, "dist") | |
const port = process.env.PORT || 3000; | |
module.exports = { | |
context: __dirname, | |
entry: './src/App.jsx', | |
output: { |
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
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) { | |
.blurred-container { | |
-webkit-backdrop-filter: blur(10px); | |
backdrop-filter: blur(10px); | |
} | |
} | |
/* slightly transparent fallback for Firefox (not supporting backdrop-filter) */ | |
@supports not ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) { | |
.blurred-container { |
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
$ git init |
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
$ yarn init | |
yarn init v1.22.4 | |
question name (react-project): enter-your-project-names | |
question version (1.0.0): //give semantic versioning number. | |
question description: // brief project description is very usefull for future manitaners | |
question entry point (index.js): // You can enter and pass here | |
question repository url (https://github.com/user/repo-name): // you can pass here | |
question author (Murat Çimen <[email protected]>): // enter your mail name and mail adress | |
question license (MIT): // if your project will be opensource, i recomend to read software licensing | |
question private: // open source or private money maker thing? |
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
<form [formGroup]="_FormGroup" (ngSubmit)="onSubmit()" novalidate> | |
<div [ngClass]="stylesConfig.field"> | |
<label [ngClass]="stylesConfig.label">Form Name</label> | |
<div class="control"> | |
<input [ngClass]="stylesConfig.formNameInput" type="text" placeholder="Form Name" formControlName="formName"> | |
</div> | |
</div> | |
<div [ngClass]="stylesConfig.field"> |
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
this._FormGroup = this.fb.group({ | |
formName: '', | |
decs: '', | |
questions: this.fb.array([this.fb.group({ // First level array here. After bracet again using FormGroup function for creating AbstractControl. | |
question: '', | |
questionType: '', | |
answers: this.fb.array([ // Second level array here. After bracet again using FormGroup function for creating AbstractControl. | |
this.fb.group({ value: ''}) | |
]) | |
})]) |
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
import { Component} from '@angular/core'; | |
import { FormBuilder, FormGroup, FormsModule, FormArray } from '@angular/forms'; // Import required forms modules | |
@Component({ | |
selector: 'form-creator-form' | |
templateUrl: './formCreatorForm.component.html' | |
}) | |
export class formCreatorComponent implements { |
NewerOlder