Download and install right version of ghostscript. In my case my PHP was x86 architecture, so I download Ghostscript 9.14 for Windows (32 bit)
.
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 { Component, HostListener } from '@angular/core'; | |
import { FormGroup, FormControl, Validators, FormBuilder } from '@angular/forms'; | |
declare function StartupNameGenerator(name): any; | |
@Component({ | |
selector: 'app-root', | |
templateUrl: './app.component.html', | |
styleUrls: ['./app.component.scss'] | |
}) | |
export class AppComponent { |
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
#header { | |
position: relative; | |
padding: 5px; | |
height:30vh; | |
text-align: center; | |
display: flex; | |
flex-direction: column; | |
justify-content: space-between; | |
align-items: center; |
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 id="header"> | |
<div class="item"></div> | |
<h1>The Startup Name Generator</h1> | |
<div class="item logo"> | |
<img class="logo-img" src="assets/img/mahawiki.png" alt=""> | |
</div> | |
</div> | |
<div class="container"> | |
<div class="row my-5"> | |
<div class="col-md-12"> |
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
const appRoutes: Routes = [ | |
{ | |
path: 'home', | |
component: HomeComponent, | |
data: { title: 'Home ' } | |
}, | |
{ | |
path: 'contact', | |
component: ContactComponent, | |
data: { title: 'Home ' } |
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
model = Sequential([ | |
Dense(5, input_shape=(3,), activation='relu'), | |
Dense(2, activation='relu'), | |
]) |
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
model = Sequential([ | |
Dense(5, input_shape=(3,), activation='relu'), | |
Dense(2, activation='sigmoid'), | |
]) |
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
from keras.models import Sequential | |
from keras.layers import Dense, Activation | |
model = Sequential([ | |
Dense(32, input_shape=(10,), activation='relu'), | |
Dense(2, activation='softmax'), | |
]) |
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
<script src="https://www.gstatic.com/firebasejs/4.1.3/firebase.js"></script> | |
<script> | |
// Initialize Firebase | |
var config = { | |
// YOUR CONFIG goes here - https://firebase.google.com/docs/web/setup#add_firebase_to_your_app | |
}; | |
var firebaseApp = firebase.initializeApp(config); | |
var rootRef = firebase.database().ref(); | |
// Get a reference to the /users/ada node | |
var adaRef = firebase.database().ref("users/ada"); |
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
#!/usr/bin/perl | |
#*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* | |
# | |
# //////////////////////////////////// | |
# dOcToR N!nja | |
# //////////////////////////////////// | |
# | |
# Title : PHPmyadmin Finder | |
# Category : Remote |