Code Monkey home page Code Monkey logo

speakcode's Introduction

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.

speakcode's People

Contributors

cawrites avatar scodeadmin avatar

Stargazers

 avatar

Watchers

 avatar

Forkers

cawrites

speakcode's Issues

Update Code Sample

Readme.md file has unformatted code that appears in the text. This code should be snippets, not plain text. Correct and label correctly. Check the preview of markdown for formatting.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.