Joseph Tingiris

There's theory in practice, though no practice in theory.


  • Home

  • Archives

  • Tags

  • Search

How to install the RedHat Software Collections Library PHP 7.2 on CentOS 7

Posted on 2020-01-07 | In howto , install , php 7 , centos 7 , |

This is a functional reference guide for Enterprise Linux, specifically CentOS 7, that attempts to provide a straightforward procedure for producing a highly functional, stable, and modern LAMP 7 stack (i.e. HOWTO).

Read more »

How to install the RedHat Software Collections Library PHP 7.1 on CentOS 7

Posted on 2017-11-01 | In howto , install , php 7 , centos 7 , |

This is a functional reference guide for Enterprise Linux, specifically CentOS 7, that attempts to provide a straightforward procedure for producing a highly functional, stable, and modern LAMP 7 stack (i.e. HOWTO).

Read more »

Neo(vim)

Posted on 2017-10-22 | In howto , install , neovim , centos 7 , |

Another holy war?

Read more »

Installing and building an existing project with npm and grunt on CentOS 7

Posted on 2017-10-17 | In centos 7 , npm , grunt , |

This is the basic process to install and build an existing GRUNT project with npm on CentoOS 7.

Read more »

GitHub Metadata: No GitHub API authentication could be found. Some fields may be missing or have incorrect data.

Posted on 2017-10-15 | In jekyll , github , metadata , |

Here’s a solution to fix issues like this …

$ bundle exec jekyll serve
Configuration file: /home/jtingiris/src/josephtingiris.github.io/_config.yml
            Source: /home/jtingiris/src/josephtingiris.github.io
       Destination: /home/jtingiris/src/josephtingiris.github.io/_site
 Incremental build: disabled. Enable with --incremental
      Generating... 
   GitHub Metadata: No GitHub API authentication could be found. Some fields may be missing or have incorrect data.
                    done in 16.628 seconds.
 Auto-regeneration: enabled for '/home/jtingiris/src/josephtingiris.github.io'
    Server address: http://127.0.0.1:4000
  Server running... press ctrl-c to stop.
  1. Create a GiHub personal acces token with only the public_repo scope selectd. Here’s the GitHub Guide

  2. Make sure to copy the token now. It wont be shown again. If you loose it then you’ll have to create a new one.

  3. Export the token as an environment variable, e.g. via .bashrc. i.e.
    export JEKYLL_GITHUB_TOKEN=330103c2f8b25f4a3301b5be3e0f56371a133301
    
  4. Verify the token is in your environment, i.e.
    echo $JEKYLL_GITHUB_TOKEN
    
  5. Alternatively, you can use it inline, e.g.
    JEKYLL_GITHUB_TOKEN=330103c2f8b25f4a3301b5be3e0f56371a133301 bundle exec jekyll serve
    

All said and done, jekyll should serve without warning.

$ bundle exec jekyll serve
Configuration file: /home/jtingiris/src/josephtingiris.github.io/_config.yml
            Source: /home/jtingiris/src/josephtingiris.github.io
       Destination: /home/jtingiris/src/josephtingiris.github.io/_site
 Incremental build: disabled. Enable with --incremental
      Generating... 
                    done in 20.059 seconds.
 Auto-regeneration: enabled for '/home/jtingiris/src/josephtingiris.github.io'
    Server address: http://127.0.0.1:4000
  Server running... press ctrl-c to stop.
Read more »

Highlight Test

Posted on 2017-07-19 | In jekyll , highlight , |

This is a highlight test.

Normal block

alert('Hello World!');
print 'helloworld'

Highlight block

alert( 'Hello, world!' );
print 'helloworld'
def foo
  puts 'foo'
end
def foo
  puts 'foo'
end
1
2
3
def foo
  puts 'foo'
end
#include <iostream>

using namespace std;

void foo(int arg1, int arg2)
{

}

int main()
{
  string str;
  foo(1, 2);
  cout << "Hello World" << endl;
  return 0;
}
Read more »

How to Download, Build, & Install Asterisk 13 on CentOS 7

Posted on 2016-12-15 | In howto , install , asterisk 13 , centos 7 , |

At the time this was written, Asterisk 13 is the current LTS (long term support) version.

Read more »

How to install RedHat Software Collections Library PHP 7 on CentOS 7

Posted on 2016-08-28 | In howto , install , php 7 , centos 7 , |

Ensure httpd is stopped and disabled.

Read more »

Emoji Test

Posted on 2015-09-19 | In jekyll , emoji , |

This is an emoji test. :smile: lol.

Read more »

How to fix KDE Plasma OpenGL on CentOS 7 running as a VMWare guest

Posted on 2015-02-23 | In howto , fix , vmware , centos 7 , kde , opengl , |

By default, CentOS 7 KDE Plasma Advanced Desktop Effects wont allow a Compositing Type of OpenGL. This is a bug; Attempting to enable OpenGL 1.2, 2.0, or 3.1 on a VMWare (workstation) guest causes KDE to crash. The Desktop Effect settings continously revert back to a Compositing Type of XRender.

Read more »

MathJax Test

Posted on 2014-02-16 | In jekyll , mathjax , |

One of the rewards of switching my website to Jekyll is the ability to support MathJax, which means I can write LaTeX-like equations that get nicely displayed in a web browser, like this one \( \sqrt{\frac{n!}{k!(n-k)!}} \) or this one \( x^2 + y^2 = r^2 \).

Read more »
Joseph Tingiris

Joseph Tingiris

11 posts
18 categories
45 tags
RSS
© 2012 - 2020 Joseph Tingiris