americanexpress.io Open in urlscan Pro
185.199.111.153  Malicious Activity! Public Scan

Submitted URL: http://www.americanexpress.io/
Effective URL: https://americanexpress.io/
Submission: On August 20 via api from NL — Scanned from NL

Form analysis 0 forms found in the DOM

Text Content

AMERICAN EXPRESS TECHNOLOGY

 * Careers
 * GitHub
 * APIs
 * Subscribe


DON'T <HELLOWORLD /> WITHOUT IT.

# Static values used in the program.
.section .rodata
   hello:     .string "Hello World!!\n"  # Static, global, read-only string.
   lenHello:  .int 15                    # sizeof(hello)
# Program code
.section .text
.globl _start
.type _start, @function
_start:                  # Simple function to print 'Hello World!!' to the screen.
   movl  $hello, %esi    # Push our string address to first parameter.
   movl  lenHello, %edx  # Set the length of message to print.
   movl  $1, %eax        # __NR_write
   movl  $1, %edi        # stdout
   syscall               # Call the system to write to screen.
   movl  $60, %eax       # __NR_sysexit
   xorl  %edi, %edi      # Return code 0
   syscall               # Exit the program with success.

#include <stdio.h>

void hello(const char *name)
{
	printf("Hello %s!!\n", name);
}

int main(int argc, const char *const *argv)
{
	hello("World");

	return 0;
}

#include <string>
#include <iostream>

using namespace std;

void hello(const string &name)
{
	cout << "Hello " << name << "!!" << endl;
}

int main(int argc, const char *const *argv)
{
	hello("World");

	return 0;
}

package main

import (
	"fmt"
)

func helloWorld(name string) string {
	m := "Hello " + name
	return m
}

func main() {
	fmt.Println(helloWorld("World"))
}

import java.util.function.Consumer;

public class HelloWorld {

    public static void main(String[] args){
        final Consumer<String> hello = name -> System.out.println("Hello " + name + "!!");
        hello.accept("World");
    }
}

const Hello = ({ name, ...rest }) => (
  <div {...rest}>
    {`Hello ${name}`}
  </div>
);

const HelloWorld = props => <Hello {...props} name="World" />;

const App = () => <HelloWorld />;

ReactDOM.render(<App />, document.getElementById('main'));

fun main(args: Array<String>) = println("Hello ${args[0]}")

''' Hello World '''

def hello_world(name):
    ''' Return string of Hello + name '''
    msg = "Hello {0}!".format(name)
    return msg

if __name__ == '__main__':
    print hello_world("World")

fn main() {
    hello_world("World")
}

fn hello_world(name: &str) -> () {
   println!("Hello {}!!", name)
}

import Foundation

func hello(_ name: String) -> String {
  let m = "Hello \(name)!"
  return m
}

print(hello("World"))

--------------------------------------------------------------------------------


FEATURED REPOS


IGUAZU

An asynchronous data flow solution for React/Redux applications.

Access GitHub


NODES

GraphQL for the JVM: An Introduction to Nodes.

Access GitHub
View All Repos on GitHub


FEATURED ARTICLES


ADVANCED KOTLIN - PART 2 - USE-SITE TARGETS

A deep-dive on use-site targets in Kotlin.

Published Dec 3, 2019 • 18 mins
 * Kotlin
 * Android


CHOOSING GO AT AMERICAN EXPRESS

A look into how American Express decided to use Go for some of its most critical
applications.

Published Nov 25, 2019 • 11 mins
 * Golang
 * Go


ADVANCED KOTLIN - PART 1 - DELEGATES

A deep-dive on delegates in Kotlin.

Published Jul 1, 2019 • 14 mins
 * Kotlin
 * Clean Code
 * Android
 * Design Patterns


SUPER-POWERED SEARCH VIA COUCHBASE

Learn how to super-charge your Couchbase queries with native FTS.

Published Jun 18, 2019 • 6 mins
 * Couchbase
 * Full Text Search
 * Search
 * Natural Language Processing


INTRO TO REACT HOOKS

React Hooks are live in production. Learn what you need to know to get started
using and testing them today.

Published Feb 6, 2019 • 14 mins
 * React
 * Hooks
 * JavaScript
 * Testing


USING GIT BISECT TO FIND BUGS

Git bisect is an easy way to perform a binary search over the commits in your
project to figure out exactly when something broke.

Published Jan 2, 2019 • 7 mins
 * Git
 * Debugging
 * Version Control


ON THE IMPORTANCE OF COMMIT MESSAGES

A little time now can save a lot down the road.

Published Dec 10, 2018 • 6 mins
 * Git
 * Version Control
 * Process
 * Code Review


SPREAD LOVE: A LOOK INTO JAVASCRIPT'S REST AND SPREAD SYNTAX

Learn how the new JavaScript rest and spread syntax can simplify your code and
reduce visual clutter.

Published Aug 13, 2018 • 10 mins
 * JavaScript
 * React
 * REST

View All Blog Posts

--------------------------------------------------------------------------------

This American Express content is hosted by GitHub. Please note, your activity on
this page is subject to GitHub's current terms of use, as well as its privacy
and data security practices and policies. Please note, GitHub is not affiliated
with American Express, and its practices and policies may be different from
those of American Express.
© 2019 American Express - All rights reserved