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
# Inspired by Epic Games C++ Coding Standard | |
# Based on https://dev.epicgames.com/documentation/en-us/unreal-engine/epic-cplusplus-coding-standard-for-unreal-engine | |
Language: Cpp | |
Standard: c++17 | |
# Indentation | |
IndentWidth: 4 | |
TabWidth: 4 | |
UseTab: Always |
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
# UE5 Clean Rebuild Script | |
# Place this script in your project root directory | |
# Run with: .\CleanAndRestart.ps1 -ProjectName {projectName} -UEVersion {version} | |
# Both parameters are optional | |
param( | |
[string]$ProjectName = "", | |
[string]$UEVersion = "5.6" # Adjust to your UE version | |
) |
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
{ | |
"theme": "Adaptive.sublime-theme", | |
"color_scheme": "Packages/Dracula Pro/Dracula Pro.tmTheme", | |
"ignored_packages": | |
[ | |
"Vintage", | |
], | |
"index_files": true, | |
"font_size": 14, |
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
# Ignore everything | |
/* | |
# Except for these folders | |
!/Source/ | |
!/Config/ | |
!/.gitattributes | |
!/.gitignore | |
!/README.md | |
!/*.uproject |
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
PS1="\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;34m\]\w\[\033[00m\]\[\033[01;32m\]\$(__git_ps1 \" (%s)\")\[\033[01;35m\] \$\[\033[00m\] " |
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
// Author: | |
// Title: | |
#ifdef GL_ES | |
precision mediump float; | |
#endif | |
#define PI 3.1415 | |
uniform vec2 u_resolution; |
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
/** | |
* Create a proper 3Commas signature (HMACSHA256) | |
* | |
* @param str string | |
* @param secret string | |
* @return {string} | |
*/ | |
export function sign(str, secret) { | |
return crypto.createHmac('sha256', secret).update(str).digest('hex'); | |
} |
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 { Observable } from 'rxjs'; | |
import { map } from 'rxjs/operators'; | |
import { | |
CallHandler, | |
ExecutionContext, | |
Inject, | |
Injectable, | |
NestInterceptor, | |
Optional, | |
} from '@nestjs/common'; |
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
app-page-carded { | |
h1 { | |
font-size: $big; | |
} | |
} |
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="articles-list"> | |
<!-- Our page carded component --> | |
<app-page-carded> | |
<ng-template #title> | |
<h1>Users List</h1> | |
</ng-template> | |
<ng-template #search> | |
<!-- Display a search box --> | |
<app-list-search [listForm]="listForm"></app-list-search> | |
<!-- Display a modal form containing our filters --> |
NewerOlder