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
@Component({ | |
selector: 'app-blog-post', | |
templateUrl: './blog-post.component.html', // <ng-template appBlog></ng-template> | |
styleUrls: ['./blog-post.component.scss'] | |
}) | |
export class BlogPostComponent implements OnInit, OnDestroy, AfterViewInit { | |
// [...] ommitted for abbreviation | |
constructor( |
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
@Injectable({ | |
providedIn: 'root' | |
}) | |
export class PostsService { | |
private _posts: blogPost[] = []; | |
get Posts(): blogPost[] { | |
return this._posts; |
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
export default [ | |
Bp20190813SophosResetVPNComponent, | |
... | |
]; |
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
export type BlogCategory = 'N/A' | 'Administration' |'LaTeX'| 'Photographie' | 'Programming' | 'Project' | 'Link'; |
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
@Component({ | |
selector: 'app-blogPost', | |
template: ` | |
<div class="col"> | |
<h3>abstract Blog post</h3> | |
<p>this is the dummy page - you should see the actual post.</p> | |
</div> | |
` | |
}) |
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
% Rooty helix | |
% Author: Felix Lindemann | |
\documentclass{minimal} | |
\usepackage{tikz} | |
\usetikzlibrary{calc} | |
\begin{document} | |
\pagestyle{empty} | |
\pgfdeclarelayer{background} |
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
### 2019-08-13 ### | |
<# .SYNOPSIS | |
Reset of VPN-Tunnel per Powershel. | |
.DESCRIPTION | |
SOPHOS-API is used to Reset the IPSec VPN-Tunnel | |
.NOTES | |
Change the APi-Token from time to time in sophos. | |
API Token can be added at https:// + $IP + :4444/ --> Verwaltung --> Webdamin --> Restfull API --> Token | |
.COMPONENT |
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
{ | |
"status": false | |
} |
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
[ | |
{ | |
"_locked": "", | |
"_ref": "REF_IpsSitIpsecSiteASiteB", | |
"_type": "ipsec_connection/site_to_site", | |
"auto_pf_in": "REF_PacPacAnyFromLnSiteB", | |
"auto_pf_out": "REF_PacPacAnyFromSiteC", | |
"auto_pfrule": true, | |
"bind": false, | |
"comment": "", |
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
<prtg> | |
<error>1</error> | |
<text>Your error message</text> | |
</prtg> |
NewerOlder