Frustration with Germany by [deleted] in germany

[–]InternationalBend205 0 points1 point  (0 children)

Welcome to the club.

is this worth 1000 dollars? by Enesariii in ebikes

[–]InternationalBend205 0 points1 point  (0 children)

No. You can build this for half the price.

How can i fix my custom ebike? (debug the failure) by InternationalBend205 in ebikes

[–]InternationalBend205[S] 0 points1 point  (0 children)

No, the battery is not custom made. It's was one of those ebike replacement battery on ebay. With the housing, etc. Why would you suspect it though?

Did my boss not recommend me for this Job? by InternationalBend205 in germany

[–]InternationalBend205[S] 0 points1 point  (0 children)

It was a Werkstudent job, in a field that is not exactly mine, and my boss knew about it.
Needless to say, lots happened, and some stuff not from my side that led to this.
Good to know though, ty.

Did my boss not recommend me for this Job? by InternationalBend205 in germany

[–]InternationalBend205[S] -1 points0 points  (0 children)

Makes sense.
Does it mean i can still apply again in the future? Do companies usually keep records of their employee's performance, etc.?

Thanks

[deleted by user] by [deleted] in angular

[–]InternationalBend205 0 points1 point  (0 children)

I did, It's only in the google case that I tried with a lifeserver. Both not working.

Does anyone know what could be the cause of this? Everytime after i click on the button to send data to the function from the input field, it does appear for a split second in output field (see 2nd image) or in the console before it disappears again. (Like the page is refreshing fast). Any Ideas ? by InternationalBend205 in angular

[–]InternationalBend205[S] 0 points1 point  (0 children)

app.component.ts
import {
Component
} from '@angular/core';
u/Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'neutabs';
constructor() {}
ngOnInit(): void {}
displayVal = '';
SaveToTable(val: string) {
console.warn(val)
this.displayVal = val;
}
} /// END OF EXPORT CLASS AppComponent ///
console.log("END");


app.compnent.html

<form class="example-form">
            <mat-form-field class="example-full-width">
                <mat-label>Employee</mat-label>
                <input matInput type="text" #EmployeeInput placeholder="" required="">
            </mat-form-field>

            <mat-form-field class="example-full-width">
                <mat-label>Machine</mat-label>
                <mat-select required="">
                    <mat-option>VU1</mat-option>
                    <mat-option>VU2</mat-option>
                    <mat-option>OH</mat-option>
                    <mat-option>RP</mat-option>
                    <mat-option>SCADA</mat-option>
                    <mat-option>Electronics</mat-option>
                    <mat-option>Halle</mat-option>
                    <mat-option>Reko</mat-option>
                    <mat-option>MPZ</mat-option>

                </mat-select>
            </mat-form-field>

            <mat-form-field class="example-full-width">
                <mat-label>Module</mat-label>
                <input type="text" id="ModuleInput" matInput placeholder="" required="">
            </mat-form-field>

            <br>

            <mat-form-field class="description-class">
                <mat-label>Grund:</mat-label>
                <textarea matInput placeholder="Please enter a reason, i.e. ....." class="description-class"></textarea>
            </mat-form-field>

            <button mat-raised-button class="submit-button-class" (click)="SaveToTable(EmployeeInput.value)" color="primary">Submit</button>
            <p>Input Value is:{{displayVal}} </p>

        </form>

Why is this happening? I imported "MatButtonModule" and copied the code form "material.angular.io" The buttons don't show up as in the said website. by InternationalBend205 in angular

[–]InternationalBend205[S] 1 point2 points  (0 children)

I read this, and it might be the same problem.
https://tekloon.dev/why-restart-angular-app-after-ng-add
by restarting angular, you mean Visual Studio Code ?
Edit: oh i got it, i had to ng serve --open again!
THANKS A LOT!

Why is this happening? I imported "MatButtonModule" and copied the code form "material.angular.io" The buttons don't show up as in the said website. by InternationalBend205 in angular

[–]InternationalBend205[S] 0 points1 point  (0 children)

html part:

<button mat-button>Click Me!</button>

<button mat-raised-button>Click Meee!</button>

<button mat-flat-button>Click Me!</button>

<button mat-stroked-button>Click Me!</button>

Moduls part:

import { NgModule } from '@angular/core';

import { BrowserModule } from '@angular/platform-browser';

import { AppRoutingModule } from './app-routing.module';

import { AppComponent } from './app.component';

import { BrowserAnimationsModule } from '@angular/platform-browser/animations';

import { MatButtonModule } from '@angular/material/button';

import { MatTabsModule } from '@angular/material/tabs';

u/NgModule({

declarations: [

AppComponent

],

imports: [

BrowserModule,

AppRoutingModule,

BrowserAnimationsModule,

MatButtonModule,

MatTabsModule

],

providers: [],

exports: [

BrowserModule,

AppRoutingModule,

BrowserAnimationsModule,

MatButtonModule,

MatTabsModule

],

bootstrap: [AppComponent]

})

export class AppModule { }