Skip to content

Instantly share code, notes, and snippets.

Teaching Outline, Colossians 2.6 - 2.23

1. Introduction

Chapter 1 summary

Paul begins by expressing thanksgiving and prayer for the Colossian believers, highlighting their faith, love, and hope in Christ. He then focuses on the preeminence of Christ, describing Him as the image of the invisible God, the creator and sustainer of all things, and the head of the church. Paul emphasizes Christ's role in reconciliation, both cosmic and personal, through His death on the cross, bringing believers into a new relationship with God. He underscores his own ministry and suffering for the sake of the gospel, revealing the mystery of Christ among the Gentiles. Paul concludes by stressing his goal of presenting every believer mature in Christ, laboring and striving with Christ's power working in him.

Purpose of the letter

The purpose of Paul writing Colossians is to affirm the supremacy and sufficiency of Christ amidst challenges from false teachings, and to encourage believers to mature in their faith and

Rx.Observable.pipe(
map(input => service1.appendChild(input.data, input.child)),
map(input => service2.formatTree(input))
)
.subscribe(consumableTreeWithAppendedChildren => console.log(`${consumableTreeWithAppendedChildren}`))
var _global = typeof window === 'object' && window.window === window
? window : typeof self === 'object' && self.self === self
? self : typeof global === 'object' && global.global === global
? global
: this
var saveAs = _global.saveAs || (
// probably in some web worker
(typeof window !== 'object' || window !== _global)
? function saveAs () { /* noop */ }
import { Injectable, OnDestroy, APP_INITIALIZER } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { Subscription } from 'rxjs';
export interface IConfig {
production: boolean;
baseUrl: string;
authUrl: string;
samlEndpoint: string;
}
class Emitter {
constructor(){
this.events = new Map();
}
subscribe(event, callback) {
this.events.set(event, callback);
}
unsubscribe(event) {
const App = () => {
const [x, setX] = useState(0)
const [y, setY] = useState(0)
const handler = useRSF(e => {
setX(e.x)
setY(e.y)
})
useEffect(() => {
window.addEventListner('mousemove', handler)
return () => {
import React, { useState, useEffect } from 'react';
import './App.css';
const uri = 'ws://localhost:3030/chat';
const socket = new WebSocket(uri)
function App() {
const [msg, setMsg] = useState('');
const [messages, setMessages] = useState([]);
const element = (
<div className="title"> Big Title Here </div>
)
//or maybe a slightly more elegant
const divClassName = "title";
const content = "Big Title Here";
const element = (
<div className={divClassName}> {content} </div>
)
const props = {
className: 'title',
children: 'React Bit'
}
const element = (
<div {...props} />
)
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { CustomerListComponent } from './customer-list/customer-list.component';
const routes: Routes = [
{
path: '',
component: CustomerListComponent