Skip to content

scodeadmin/speakcode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Speak Code

SpeakCode - Let's create something useful.

Do you speak code?

Developers reuse code as part of maintenance, new development, or upgrades. Automation can be a framework designed to deploy new releases; with minor edits to existing code. SRE (Software Reliability Engineers) use code to monitor web, application, and database activities.

Using an existing library of code, developers can develop new functions or features within the application. These changes are made for accessibility or a change in standards or needs of the business.

Examples of code that can be recycled or reused

Microservices (A distinctive method of developing software systems that focus on building single-function modules with well-defined interfaces and operations.).

/* HelloWorld.java
 */

public class HelloWorld
{
	public static void main(String[] args) {
		System.out.println("Hello World!");
	}
}

Web APIs (an application programming interface for either a web server or a web browser) and other web-related components often reuse code.

var xhr = new XMLHttpRequest();
xhr.open("GET", "https://reqres.in/api/products/3", true);
xhr.onload = function(){
    console.log(xhr.responseText);
};
xhr.send();

Object-oriented programming (OOP) organizes software design around data, or objects, rather than functions and logic

Modular programming is a design technique that emphasizes separating the functionality of a program into independent, interchangeable modules, such that each contains everything necessary to execute only one aspect of the desired functionality.

def greet(name):
    """
    This function greets to
    the person passed in as
    a parameter
    """
    print("Hello, " + name + ". Good morning!")
def my_func():
	x = 12
	print("Value inside function:",x)

x = 24
my_func()
print("Value outside function:",x)

Tips for building your code library

  • Choose a consistent method for storing and editing modified code. Github is an excellent example of retaining code ownership, history, and change.

  • If using a template, maintain the framework and save copies separately for changes.

  • Research templates and APIs for usability and accessibility.

  • Well-documented code and use case.

Challenges?

  • Limited knowledge or access to useable code.
  • New role or job with limited experience
  • Code base changes and a new language is used.

Developers can literally spend hours look through blogs, forums, and support for useable code.

Speak Code We are working on a special project that has been in the works for years. Decided to take a leap from notebook to screen. So we are working with people that speak the language of code. Our features and project list should be available soon.