Technically Home

Technically Web3 — Overview

A one-of-a-kind community of tech enthusiasts with a common goal. To make the world a better place.

Photo by <a href="https://unsplash.com/@mauromora?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">mauro  mora</a> on <a href="https://unsplash.com/photos/timelapse-photo-of-people-passing-the-street-31-pOduwZGE?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">Unsplash</a>

The innovation this community has is sure to transform society!

With revolutionary ideas the Technically Web3 community is sure to pave the way for the next generation of the web.

Our philosophy differs from most, this isn’t a company but a community. The authority belongs to the people. The contributors, the customers, the community leaders and members are the ones with control. There is nothing proprietary, everything is publicly available and open source. Everything written is publicly shared under GPLv3.

The community proposes ideas the contributors can build without need for investors. However investors are still a valued part of the community its the contributors who earn the stake in the projects they build. Investors can buy stakes from the contributors which encourages continuous growth.

Technically the Latest

Technically Web3 is not confined to the past—we are passionate about the cutting edge technologies shaping our world today.

// Hook in add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' ); // Our hooked in function - $fields is passed via the filter! function custom_override_checkout_fields( $fields ) { error_log(print_r($fields, true)); $fields['billing']['billing_city']['placeholder'] = "Something Different"; $fields['billing']['billing_city']['label'] = "Something Else"; return $fields; }