- https://cloud.google.com/anthos/gke/docs/on-prem/reference/cheatsheet
- https://medium.com/flant-com/kubectl-commands-and-tips-7b33de0c5476
- https://prefetch.net/blog/2019/10/16/the-beginners-guide-to-creating-kubernetes-manifests/
- https://kubernetes.io/docs/user-guide/kubectl-cheatsheet/
- https://learnk8s.io/blog/kubectl-productivity/
- https://medium.com/faun/kubectl-commands-cheatsheet-43ce8f13adfb
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
extract () { | |
if [ -f "$1" ] | |
then | |
case "$1" in | |
(*.tar.bz2) tar -jxvf "$1" ;; | |
(*.tar.gz) tar -zxvf "$1" ;; | |
(*.bz2) bunzip2 "$1" ;; | |
(*.dmg) hdiutil mount "$1" ;; | |
(*.gz) gunzip "$1" ;; | |
(*.tar) tar -xvf "$1" ;; |
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
#include <raylib.h> | |
int main(void) | |
{ | |
// Initialization | |
//-------------------------------------------------------------------------------------- | |
const int screenWidth = 800; | |
const int screenHeight = 450; | |
InitWindow(screenWidth, screenHeight, "raylib [core] example - basic window"); |
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
/********************************************************************************************** | |
* | |
* raylib 32x32 game/demo competition | |
* | |
* Competition consist in developing a videogame in a 32x32 pixels screen size. | |
* | |
* RULES: | |
* | |
* 1) Use only raylib (and included libraries), no external libraries allowed | |
* 2) The submission should consist of just one source file |
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
#include <stdio.h> | |
int main(void){ | |
printf("Hello world!\n"); | |
return 0; | |
} |
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
@echo off | |
pushd build | |
main.exe | |
popd |
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
@echo off | |
if not exist build mkdir build | |
pushd build | |
gcc ..\source\main.c -o main.exe | |
popd |
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
version(1); | |
project_name = "Hello World"; | |
patterns = { | |
"*.c", | |
"*.cpp", | |
"*.ds", | |
"*.h", | |
"*.bat", |
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
Ratelimit test for: https://Jezahna.com/xmlrpc.php | |
<Response [200]> OK | |
<Response [200]> OK | |
<Response [200]> OK | |
<Response [200]> OK | |
<Response [200]> OK | |
<Response [200]> OK | |
<Response [200]> OK | |
<Response [200]> OK | |
<Response [200]> OK |
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-05-06 06:41:12:595 WPAnalytics session started | |
2019-05-06 06:41:12:618 =========================================================================== | |
2019-05-06 06:41:12:618 Launching WordPress for iOS 12.2 (12.2.0.3)... | |
2019-05-06 06:41:12:620 Crash count: 0 | |
2019-05-06 06:41:12:620 Debug mode: Production | |
2019-05-06 06:41:12:620 Extra debug: NO | |
2019-05-06 06:41:12:630 Device model: iPhone 6 Plus (iPhone7,1) | |
2019-05-06 06:41:12:635 OS: iOS, 12.2 | |
2019-05-06 06:41:12:636 Language: en-CH | |
2019-05-06 06:41:12:636 UDID: 5BF49022-5381-469F-B919-6EBAEE8FD8C8 |
NewerOlder