• Skip to main content
  • Skip to footer

BCWEEKES

Thoughts, Theory, and other such Ramblings

  • Thoughts
    • Creating Expertise
    • Focusing on Best
    • PhD Experience
      • USU ASTE 6470 Digital Tools for Learning
  • Speaking
  • About
  • Contact

Brandon

Tableau Wk 4 Lesson

Filed Under: Uncategorized

Podcast 1: Overcoming hurdles

Filed Under: Uncategorized

Some thoughts on Creating Expertise

Expertise is an interesting topic. One might visit my website and see that I frequently reference creating expertise, at the same time they find a variety of topics spoken about on this site. At one point, I was convinced if I wanted to become an expert I needed to focus on just one subject professionally. I have considered this for a long time and now feel differently about creating expertise.

Let’s look at Thomas Jefferson as a case study on expertise. Jefferson could be considered one of the most accomplished men in public life as well as the most versatile, jack of all trade if you will. The proverbial, “jack of all trades, master of none.” Yet Jefferson was considered an expert in many areas: architecture, civil engineering, geography, mathematics, ethnology, anthropology, mechanics, the sciences, and politics.

Thomas Edison makes another excellent case study on expertise. Edison developed a reputation as a skilled and creative inventor, having contributed innovations to printing telegraphs, facsimile telegraphs, automatic relays, stock tickers, and many other devices. In addition to being an innovator, his knowledge was deep in chemistry and business. His influence and innovative mind has influenced modern life for nearly a century after his death.

I hope that as people strive to become experts they will look at many aspects of their life and work to learn both broadly and deeply for in this they will find relationships and correlations with an opportunity for break throughs and profound knowledge.

Filed Under: Creating Expertise, Thoughts

Image hover effects

Filed Under: 100 Projects

Building Gutenberg Blocks with ACF

Register Block in functions.php

/**
 * Register Blocks
 * @link https://bcweekes.com
 *
 */
function be_register_blocks() {
	
	if( ! function_exists( 'acf_register_block_type' ) )
		return;

	acf_register_block_type( array(
		'name'			=> 'team-member',
		'title'			=> __( 'Team Member', 'clientname' ),
		'render_template'	=> '/block-team-member.php',
		'category'		=> 'formatting',
		'icon'			=> 'admin-users',
		'mode'			=> 'auto',
		'keywords'		=> array( 'profile', 'user', 'author' )
	));

}
add_action('acf/init', 'be_register_blocks' );

Advanced Custom Field Pro

PHP File

<?php
/**
 * Team Member block
 *
 * @package      TeamMember
 * @author       Brandon Weekes
 * @since        1.0.0
 * @license      GPL-2.0+
**/

$name = get_field( 'name' );
$title = get_field( 'title' );
$photo = get_field( 'photo' );
$description = get_field( 'description' );


echo '<div class="team-member">';
	echo '<div class="team-member--header">';
		echo '<div class="team-member-column-1">';
		if( !empty( $photo ) )
			echo wp_get_attachment_image( $photo['ID'], 'thumbnail', null, array( 'class' => 'team-member--avatar' ) );
				echo '</div>';
		echo '<div class="team-member-column-2">';
		if( !empty( $name ) )
			echo '<h4>' . esc_html( $name ) . '</h4>';
		if( !empty( $title ) )
			echo '<h6 class="alt">' . esc_html( $title ) . '</h6>';
		if( !empty( $description ) )
			echo '<p class="alt">' . esc_html( $description ) . '</p>';
		echo '</div>';
		echo '</div>';
echo '</div>';

Team Member Bio

CSS Code

/* CSS code snippet */

.team-member {
	background-color: #9AB977;
	margin-bottom: 75px;
	padding: 30px;
}

.team-member h4 {
	font-size: 3.2rem;
	margin-top: 0;
	margin-bottom: 10px;
	color: #fff;
}

.team-member h6 {
	color: #fff;
}

.team-member img {
	width: 200px;
}

.team-member--content {
	margin-bottom: 30px;
		font-size: 2.2rem;
		color: #fff;
}

.team-member-column-1 {
	width:25%;
	float: left;
}

.team-member-column-2 {
	width:75%;
	float: left;
}

Filed Under: 100 Projects

Buttons Animation

Animated Button
Animated Button

Filed Under: 100 Projects

Text CSS

Spinning Text

Keyframes Animation

Text move in left…

Filed Under: 100 Projects

Spinning Graphic

Filed Under: 100 Projects

  • Go to page 1
  • Go to page 2
  • Go to page 3
  • Go to page 4
  • Go to Next Page »

Footer

Twitter | Instagram | LinkedIn

#focusingonbest

#creatingexpertise

Copyright © 2023 · @BCWeekes