Skip to content

Instantly share code, notes, and snippets.

View rfaile313's full-sized avatar

Rfaile313 rfaile313

View GitHub Profile
.display-posts-listing {
display: flex;
flex-direction: column;
}
.display-posts-listing li:nth-child(1) {
order: 2;
}
.display-posts-listing li:nth-child(2) {
/*front page font size*/
.lodestar-intro .entry-content {
font-size: 1.1rem;
}
/* Centering headings */
.entry-header .entry-title {
text-align: center;
}
/*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;
}
/*Change Menu Background*/
/*Theme calls for !important*/
.header-top {
background-color: #0066ff !important;
}
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
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
version(1);
project_name = "Hello World";
patterns = {
"*.c",
"*.cpp",
"*.ds",
"*.h",
"*.bat",
@echo off
if not exist build mkdir build
pushd build
gcc ..\source\main.c -o main.exe
popd
@echo off
pushd build
main.exe
popd
#include <stdio.h>
int main(void){
printf("Hello world!\n");
return 0;
}