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
.display-posts-listing { | |
display: flex; | |
flex-direction: column; | |
} | |
.display-posts-listing li:nth-child(1) { | |
order: 2; | |
} | |
.display-posts-listing li:nth-child(2) { |
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
/*front page font size*/ | |
.lodestar-intro .entry-content { | |
font-size: 1.1rem; | |
} | |
/* Centering headings */ | |
.entry-header .entry-title { | |
text-align: center; | |
} |
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
/*Change Site Title Font Color and Size*/ | |
.site-branding a { | |
color: #0066ff !important; | |
font-size: 60px !important; | |
} | |
/*Change Site Description Font Color and Size*/ | |
p.site-description{ | |
color: #0066ff; | |
font-size: 40px; | |
} |
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 |
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
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
@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
@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
#include <stdio.h> | |
int main(void){ | |
printf("Hello world!\n"); | |
return 0; | |
} |
OlderNewer