View git_anfänger_BMU_Verlag.bash
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 pull |
View git_anfänger_BMU_Verlag.perl
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 push |
View gitblog_anfänger_BMU_Verlag.sql
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 commit -m "Added new file" |
View gitblog_anfänger_BMU_Verlag.csharp
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 add <filename> |
View gitblog_anfänger_BMU_Verlag.bush
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 clone <repository-url> |
View angular_1_4.ts
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, OnInit } from '@angular/core'; | |
@Component({ | |
selector: 'app-counter', | |
templateUrl: './counter.component.html', | |
styleUrls: ['./counter.component.scss'] | |
}) | |
export class CounterComponent implements OnInit { |
View angular_1_3.html
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
<div class="counter__container"> | |
<div class="counter__container-inner"> | |
<h4>Counter</h4> | |
<div class="button-group"> | |
<button (click)="decrement()">-</button> | |
<button (click)="clearCounter()">0</button> | |
<button (click)="increment()">+</button> | |
</div> | |
<h5>Counter: {{counter}}</h5> | |
</div> |
View angular_1_2.scss
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
.counter__container { | |
background-color: #F0F0F0; | |
min-width: 100px; | |
margin-bottom: 20px; | |
.counter__container-inner { | |
padding: 20px; | |
text-align: center; | |
.button-group { |
View angular_1_1.html
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
<div class="counter__container"> | |
<div class="counter__container-inner"> | |
<h4>Counter</h4> | |
<div class="button-group"> | |
<button>-</button> | |
<button>0</button> | |
<button>+</button> | |
</div> | |
<h5>Counter: </h5> | |
</div> |
View PHP_en_15_4_2.php
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
<?php | |
$sql ="SELECT c_title, c_description, c_headline, c_content FROM os_content WHERE c_id = 3;"; | |
try | |
{ | |
$dbh = new PDO ("mysql:dbname=onlineshopDB; host=localhost", "user1", "abc"); | |
$return = $dbh->query($sql); | |
$result = $return->fetchAll(PDO::FETCH_ASSOC); | |
$meta_title = $result[0]['c_title']; |
NewerOlder