Skip to content

Instantly share code, notes, and snippets.

View SalocinDotTEN's full-sized avatar
✝️
www.salocinten.info | Coding for Jesus!

Salocin.TEN SalocinDotTEN

✝️
www.salocinten.info | Coding for Jesus!
View GitHub Profile

Ephesians 3:16-19 NIV “I pray that out of his glorious riches he may strengthen you with power through his Spirit in your inner being, so that Christ may dwell in your hearts through faith.

And I pray that you, being rooted and established in love, may have power, together with all the Lord’s holy people, to grasp how wide and long and high and deep is the love of Christ...

and to KNOW this love that surpasses knowledge—that you may be filled to the measure of all the fullness of God.”

Eidó: (Greek) To perceive with the outward senses.

Ginosko: (Greek) To come to know by experience.

@SalocinDotTEN
SalocinDotTEN / otawa 2020.md
Created March 11, 2024 03:11
Reflecting on our Journey-otawa 2020

Reflecting on our Journey

In our life journey, we need to pause occasionally in order to rest in God’s grace and to ponder about life. Without pause and reflection, our journey may become tiring and even boring.

Henri Nouwen in his book ‘Here and Now’ writes:

“It is remarkable how much of our life is lived without reflection on its meaning. It is not surprising that so many people are busy but bored! They have many things to do and always running to get them done but beneath the hectic activity they often wonder if anything is truly happening. A life that is not reflected upon eventually loses its meaning and becomes boring.”

Reflecting on our lives as we live them allows us to ask - What does it mean? What is God trying to tell us? How are we called to live in the midst of all this? Without such questions our lives become numb and flat.

Everyone seems to have Christian dating advice. Sometimes the advice is conflicting, confusing, and downright stressful.

“Don’t spend too much time alone with them” vs. “Make sure you spend lots of quality time together.”

“Date for no more than two years” vs. “You have to date for at least two years.”

“Date different people before getting serious” vs. “Only date people you see as a potential spouse.”

“Don’t be too clingy” vs. “Make sure they know you’re interested” vs. “Relax!”

GOD IS NOT AGAINST ME! BUT HE'S IN IT WITH ME! WORKING THROUGH ME! FIGHTING FOR ME!!

Life can be challenging, and we often find ourselves struggling to overcome obstacles and achieve our goals. During these times, it's easy to feel like we are alone in our struggles and that God is not on our side. However, this couldn't be further from the truth. In fact, the reality is that God is not against us but rather is working alongside us, fighting for us and guiding us through our journey.

God's presence in our lives is a constant reminder that we are never alone. He is always with us, even during our darkest moments, and provides us with the strength, guidance, and support we need to overcome our challenges. He is not just an observer, but an active participant in our lives, helping us to grow and become the best versions of ourselves.

Furthermore, God's power is not limited to just watching us from afar. He is working through us, providing us with the wisdom and the strength to face our challenges head-on. W

@SalocinDotTEN
SalocinDotTEN / Christian Careers Day 2021 Talk.md
Last active March 11, 2024 02:50
Christian Careers Day 2022 Talk — Don’t Waste Your Life

DON’T WASTE YOUR LIFE

3 TYPES OF INDIVIDUALS

EVERYONE IS FEARFUL OF DEATH AND A WASTED LIFE

AND YET NONE OF US KNOW WHAT LIFE IS REALLY ABOUT

ECCLESIASTES HAS SOMETHING TO SAY

@SalocinDotTEN
SalocinDotTEN / Quote.txt
Created November 5, 2023 02:17
Jared Chan Quote GCF iBridge 2020
The illiterate of the 21st century is someone who can't unlearn and relearn - Jared Chan (2020)
@SalocinDotTEN
SalocinDotTEN / cpuUsage.php
Created February 12, 2019 17:03
* CPU Usage PHP function open sourced by Salocin.TEN * Programming knowledge of PHP is essential for the usage of this. * Originally made for a corporate database migration project. * This function only works on Linux based systems and it works to detect the CPU usage in percentage. * Future implementation will see a configuration to adapt to m…
<?php
/**
* CPU Usage PHP function open sourced by Salocin.TEN
* Programming knowledge of PHP is essential for the usage of this.
* Originally made for a corporate database migration project.
* This function only works on Linux based systems and it works to detect the CPU usage in percentage.
* Future implementation will see a configuration to adapt to multiple CPU systems.
* Adapted from a very awesome no rights reserved Bash script at http://colby.id.au/node/39
*
<?php
$colours = array('#FDA...', '#83B...', '#53A...', '#BE3...', '#A24...');
echo $colours[$integerParam % count($colours) - 1];
?>
@SalocinDotTEN
SalocinDotTEN / colourBasedOnInteger.php
Created October 22, 2018 09:16
Get a colour code based on inputted integer.
<?php
$colours = array('#FDA...', '#83B...', '#53A...', '#BE3...', '#A24...');
echo $colours[$integerParam % count($colours) - 1];
//Expected output is the corresponding HEX colour based on the inputted $integerParam.
//Advantage is that the array can be added or shortened and it will work.
//Redacted colour code due to company restrictions.
?>
@SalocinDotTEN
SalocinDotTEN / acronymgenerator.py
Created July 17, 2017 01:52
Mnemonic generator post micro service AWS Lambda code. Result should come back as JSON.
#It requires some packages. Please pip install them first.
import string
import requests
import re
import urllib
from bs4 import BeautifulSoup
def main(event,context):
#Put into the words parameter the acronym with each letter separated by a single space.