search
Unleashing Tech Brilliance: Embrace Inclusivity, Ignite Diversity! Join our vibrant community, propelling women, minorities, and tech enthusiasts towards boundless possibilities. Together, we break barriers, shatter stereotypes, and champion empowerment. Dive into a world of support, inspiration, and cutting-edge insights, as we revolutionize tech - one diverse mind at a time!
Adriana Lamb
Hi, I'm
Adriana Lamb +
Welcome to my website
A Little About Me...
I am a an experienced full-stack developer specializing in cybersecurity, AWS cloud engineering, Angular, and big data development. My expertise is complemented by a drive for continuous improvement. Attending various seminars and boot camps, my focus is on honing skills and enhancing my capabilities in coding and software development.
Innovation That Flows
Full-Stack developer
I offer Full-Stack Development expertise, blending front-end finesse with back-end efficiency. Skilled in HTML, CSS, JavaScript, Python, Node.js, and Java, I create intuitive interfaces and robust back-end solutions for optimized user experiences.
Responsive Designs
I specialize in comprehensive Full-Stack Development, seamlessly integrating front-end finesse with back-end efficiency. With expertise in HTML, CSS, and JavaScript, I craft intuitive interfaces that elevate user experiences.
Mentorship
As your programming mentor, I'm here to supercharge your skills. Through dynamic lessons and exciting projects, I'll propel your coding journey forward. Let's unleash your full potential and create amazing things together!
"In a world of algorithms and lines of code, remember that YOU are the true source of innovation."
I approach my work as a full-stack developer with enthusiasm, curiosity, and a drive to achieve excellence. Over 5 rewarding years in technology consulting, I have been fortunate enough to serve clients around the world, advise startups, and play an instrumental role in some of the most cutting-edge digital innovation projects. With vast experience in cybersecurity, cloud engineering, front-end design, and big data solutions, I am thrilled to constantly be learning and honing my skills for the sake of delivering outstanding results for my clients. Technology is empowering me to make a real impact through inspired design decisions!
- Angular
- React
- Django
- Bootstrap
- JavaScript
- Node.js
- Typescript
Front-End Development
- Java
- Go
- SQL
- Spark
- Posgres
- DynamoDB
- C#
- C++
- Python
- Maven
- Gradle
Back-End Development
- AWS
- GoCD
- Jenkins
- Terraform
- Veracode
- Nexus
- Sonatype
- WinSCP
- Putty
- Linux
- Makefile
- Bash
DevOps
Let's Talk!
Have any project ideas? Looking to kickstart your career in tech? Schedule time with me to talk!
Tech spans beyond code, driving innovation in design, science, healthcare, and more.
Psst...I'm growing a community specifically focused on teaching YOU more about programming.
Featured
- Get link
- X
- Other Apps
Walkthrough Of Golang Structs
package Java_Example;
import java.util.ArrayList;
public class Student {
public String name;
public int age;
public String gender;
public ArrayList classes;
public Address addres;
public Student(String name, int age, String gender, ArrayList classes, Address addres) {
this.name = name;
this.age = age;
this.gender = gender;
this.classes = classes;
this.addres = addres;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return this.age;
}
public void setAge(int age) {
this.age = age;
}
public String getGender() {
return this.gender;
}
public void setGender(String gender) {
this.gender = gender;
}
public ArrayList getClasses() {
return this.classes;
}
public void setClasses(ArrayList classes) {
this.classes = classes;
}
public Address getAddres() {
return this.addres;
}
public void setAddres(Address addres) {
this.addres = addres;
}
}
package Java_Example;
public class Address{
public String street;
public int zipcode;
public String city;
public Address(String street, int zipcode, String city) {
this.street = street;
this.zipcode = zipcode;
this.city = city;
}
public String getStreet() {
return this.street;
}
public void setStreet(String street) {
this.street = street;
}
public int getZipcode() {
return this.zipcode;
}
public void setZipcode(int zipcode) {
this.zipcode = zipcode;
}
public String getCity() {
return this.city;
}
public void setCity(String city) {
this.city = city;
}
}
type Student struct {
Name string
Age int
Gender string
Classes []string
}
type Student struct {
Name string
Age int
Gender string
Classes []string
Address Address
}
type Address struct {
Street string
Zipcode int
City string
}
type Student struct {
Name string `json:"name"`
Age int `json:"age"`
Gender string `json:"gender"`
Classes []string `json:"classes"`
Address `json:"address"`
Misc
}
type Address struct {
Street string `json:"street"`
Zipcode int `json:"zipcode"`
City string `json:"city"`
}
Here, we add a function that creates a unified address string from the individual address parameters.
type StudentNested struct {
Name string `json:"name"`
Age int `json:"age"`
Gender string `json:"gender"`
Classes []string `json:"classes"`
Address struct {
Street string `json:"street"`
Zipcode int `json:"zipcode"`
City string `json:"city"`
} `json:"address"`
}
package main
import "fmt"
type Student struct {
Name string `json:"name"`
Age int `json:"age"`
Gender string `json:"gender"`
Classes []string `json:"classes"`
Address `json:"address"`
}
type Address struct {
Street string `json:"street"`
Zipcode int `json:"zipcode"`
City string `json:"city"`
}
type StudentNested struct {
Name string `json:"name"`
Age int `json:"age"`
Gender string `json:"gender"`
Classes []string `json:"classes"`
Address struct {
Street string `json:"street"`
Zipcode int `json:"zipcode"`
City string `json:"city"`
} `json:"address"`
}
func main() {
address := Address{
"random",
555675,
"City",
}
s1 := Student{
"Brian",
20,
"Male",
[]string{"Org Chem", "Calc"},
address,
}
s2 := StudentNested{
"Brian",
20,
"Male",
[]string{"Org Chem", "Calc"},
Address{
"random",
555675,
"City",
},
}
fmt.Println(s1.City)
fmt.Println(s2.Address.City)
}
type Student struct {
Name string `json:"name"`
Age int `json:"age"`
Gender string `json:"gender"`
Classes []string `json:"classes"`
Address `json:"address" tag:"AddressInfo"`
}
{
Name: "Brian",
Age: 20,
Gender: "Male",
Classes: ["Org Chem", "Calc"],
AddressInfo: {
Street: "random",
Zipcode: 555675,
City: City
}
}
- Get link
- X
- Other Apps
Comments
Post a Comment