Many of us got it wrong at the start.
Straight out of university, you venture into finding any job you can put your hands on.
Without thinking twice about its progression or if you’d really enjoy it more than other career paths.
Chasing company names, multinationals, salaries, and titles.
And after a decade and more, you realize you lost the appetite you had at the start, the drive, the motivation that kept you going.
You stay in the role because it’s comfortable.
Because you know how to do it with your eyes closed.
Because it has a great package.
Because this is what you know.
Because you don’t know what else to do.
But what if you don’t need to throw it all away?
It’s not about starting from scratch. It’s about selling your story to start a new one.
A new chapter.
A second book.
With a much better ending.
With more thrills.
More adventure.
More drive.
More fulfillment.
Fulfillment to the CORE of what you give.
This is your everyday life we’re talking about, after all.
Five days a week.
Why waste it away wishing on something else?
Don’t you want to fill that time with something that you love?
Something that lights you up.
Sparking that magic back in your eyes, same at the start of a relationship but keep the fire going.
If that’s you and you need help, hit me up!
#nailyourinterview #coaching #motivation #careeradvice #professionaldevelopment #interviews #jobseekers #growthacademy #mindset #success
Straight out of university, you venture into finding any job you can put your hands on.
Without thinking twice about its progression or if you’d really enjoy it more than other career paths.
Chasing company names, multinationals, salaries, and titles.
And after a decade and more, you realize you lost the appetite you had at the start, the drive, the motivation that kept you going.
You stay in the role because it’s comfortable.
Because you know how to do it with your eyes closed.
Because it has a great package.
Because this is what you know.
Because you don’t know what else to do.
But what if you don’t need to throw it all away?
It’s not about starting from scratch. It’s about selling your story to start a new one.
A new chapter.
A second book.
With a much better ending.
With more thrills.
More adventure.
More drive.
More fulfillment.
Fulfillment to the CORE of what you give.
This is your everyday life we’re talking about, after all.
Five days a week.
Why waste it away wishing on something else?
Don’t you want to fill that time with something that you love?
Something that lights you up.
Sparking that magic back in your eyes, same at the start of a relationship but keep the fire going.
If that’s you and you need help, hit me up!
#nailyourinterview #coaching #motivation #careeradvice #professionaldevelopment #interviews #jobseekers #growthacademy #mindset #success
👍1
Forwarded from SathyaReact
import React from "react";
import "./Contactus.css";
import {useForm} from "react-hook-form";
import {yupResolver} from "@hookform/resolvers/yup";
import * as Yup from "yup";
type UserSubmitForm = {
"firstname":string;
"lastname":string;
"email":string;
"message":string;
};
const Contactus = ()=>{
const validationSchema = Yup.object().shape({
"firstname" : Yup.string().required("firstname can't left blank"),
"lastname":Yup.string().required("lastname can't left blank").min(3,"minimum 3 characters are required").max(6,"maximum 6 characters are allowed"),
"email":Yup.string().required("can't left email").email("invalid email"),
"message":Yup.string().required("can't left address").min(6,"minimum should be 6 characters").max(40,"maximum 40 characters are allowed")
});
const {register,
reset,
handleSubmit,
formState : {errors}} = useForm<UserSubmitForm>({
resolver : yupResolver(validationSchema)
});
const onSubmit = (data:UserSubmitForm)=>{
console.log(data);
}
return(
<>
<div className="register-form">
<form onSubmit={handleSubmit(onSubmit)}>
<div className="form-group">
<label>First Name</label>
<input type="text"
{...register("firstname")}
className={
<div className="invalid-feedback">{errors.firstname?.message}</div>
</div>
<div className="form-group">
<label>Last Name</label>
<input type="text"
{...register("lastname")}
className={
<div className="invalid-feedback">{errors.lastname?.message}</div>
</div>
<div className="form-group">
<label>Email</label>
<input type="email"
{...register("email")}
className={
<div className="invalid-feedback">{errors.email?.message}</div>
</div>
<div className="form-group">
<label>Email</label>
<textarea
{...register("message")}
className={
<div className="invalid-feedback">{errors.message?.message}</div>
</div>
<div className="form-group">
<button type="submit" className="btn btn-success">Submit</button>
<button type="reset" onClick={()=>reset()} className="btn btn-danger">Reset</button>
</div>
</form>
</div>
</>
)
}
export default Contactus;
import "./Contactus.css";
import {useForm} from "react-hook-form";
import {yupResolver} from "@hookform/resolvers/yup";
import * as Yup from "yup";
type UserSubmitForm = {
"firstname":string;
"lastname":string;
"email":string;
"message":string;
};
const Contactus = ()=>{
const validationSchema = Yup.object().shape({
"firstname" : Yup.string().required("firstname can't left blank"),
"lastname":Yup.string().required("lastname can't left blank").min(3,"minimum 3 characters are required").max(6,"maximum 6 characters are allowed"),
"email":Yup.string().required("can't left email").email("invalid email"),
"message":Yup.string().required("can't left address").min(6,"minimum should be 6 characters").max(40,"maximum 40 characters are allowed")
});
const {register,
reset,
handleSubmit,
formState : {errors}} = useForm<UserSubmitForm>({
resolver : yupResolver(validationSchema)
});
const onSubmit = (data:UserSubmitForm)=>{
console.log(data);
}
return(
<>
<div className="register-form">
<form onSubmit={handleSubmit(onSubmit)}>
<div className="form-group">
<label>First Name</label>
<input type="text"
{...register("firstname")}
className={
form-control ${errors.firstname?'is-invalid':""}}></input><div className="invalid-feedback">{errors.firstname?.message}</div>
</div>
<div className="form-group">
<label>Last Name</label>
<input type="text"
{...register("lastname")}
className={
form-control ${errors.lastname?'is-invalid':""}}></input><div className="invalid-feedback">{errors.lastname?.message}</div>
</div>
<div className="form-group">
<label>Email</label>
<input type="email"
{...register("email")}
className={
form-control ${errors.email?'is-invalid':""}}></input><div className="invalid-feedback">{errors.email?.message}</div>
</div>
<div className="form-group">
<label>Email</label>
<textarea
{...register("message")}
className={
form-control ${errors.message?'is-invalid':""}}></textarea><div className="invalid-feedback">{errors.message?.message}</div>
</div>
<div className="form-group">
<button type="submit" className="btn btn-success">Submit</button>
<button type="reset" onClick={()=>reset()} className="btn btn-danger">Reset</button>
</div>
</form>
</div>
</>
)
}
export default Contactus;
👍1
Forwarded from SathyaReact
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.slim.min.js"></script>
<!-- Popper JS -->
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.slim.min.js"></script>
<!-- Popper JS -->
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/js/bootstrap.bundle.min.js"></script>
Forwarded from SathyaReact
import React from "react";
import {useForm} from "react-hook-form";
import {yupResolver} from "@hookform/resolvers/yup";
import * as Yup from "yup";
const Forms = ()=>{
const ValidationSchema = Yup.object().shape({
"firstname":Yup.string().required("firstname can't be left blank")
})
const {register,
reset,
handleSubmit,
formState:{errors}} = useForm({
resolver:yupResolver(ValidationSchema)
});
console.log(errors);
const onSubmit = (data)=>{
console.log(data);
};
return(
<>
<div style={{width:500,
margin:50}}>
<form onSubmit={handleSubmit(onSubmit)}>
<div className="form-group">
<label>First Name</label>
<input type="text"
{...register("firstname")}
className={
</div>
<div className="form-group">
<button type="submit" className="btn btn-success btn-sm">Submit</button>
<button type="reset" onClick={()=>reset()} className="btn btn-danger btn-sm">Reset</button>
</div>
</form>
</div>
</>
)
}
export default Forms;
import {useForm} from "react-hook-form";
import {yupResolver} from "@hookform/resolvers/yup";
import * as Yup from "yup";
const Forms = ()=>{
const ValidationSchema = Yup.object().shape({
"firstname":Yup.string().required("firstname can't be left blank")
})
const {register,
reset,
handleSubmit,
formState:{errors}} = useForm({
resolver:yupResolver(ValidationSchema)
});
console.log(errors);
const onSubmit = (data)=>{
console.log(data);
};
return(
<>
<div style={{width:500,
margin:50}}>
<form onSubmit={handleSubmit(onSubmit)}>
<div className="form-group">
<label>First Name</label>
<input type="text"
{...register("firstname")}
className={
form-control ${errors.firstname?'is-invalid':''}}></input> </div>
<div className="form-group">
<button type="submit" className="btn btn-success btn-sm">Submit</button>
<button type="reset" onClick={()=>reset()} className="btn btn-danger btn-sm">Reset</button>
</div>
</form>
</div>
</>
)
}
export default Forms;
Why most people won't grow despite learning?
They read 100s of books, 100s of videos, & feel they have learnt
Many times attending 100s of seminars & workshop, some go for free & some paid
Come back charged up & wait for things to happen with little actions
Can you imagine nothing changes as they will attend these programs again ?
One thing that I learnt from my mentors is getting insight
Going a step further this is what model will you apply
Information + Insights + Application + Experience = Wisdom
When you achieve this wisdom that is when you grow
One of the learning model below
Learn + Apply + Practice
How many of you have aha moment?
#education #learning #personaldevelopement
They read 100s of books, 100s of videos, & feel they have learnt
Many times attending 100s of seminars & workshop, some go for free & some paid
Come back charged up & wait for things to happen with little actions
Can you imagine nothing changes as they will attend these programs again ?
One thing that I learnt from my mentors is getting insight
Going a step further this is what model will you apply
Information + Insights + Application + Experience = Wisdom
When you achieve this wisdom that is when you grow
One of the learning model below
Learn + Apply + Practice
How many of you have aha moment?
#education #learning #personaldevelopement
# Database related properties
spring.datasource.drive-class-name-oracle.jdbc.driver.Oracle Driver
spring.datasource.url=jdbc:oracle:thin: @localhost:1521:xe
spring.datasource.username=ndb
spring.datasource.password=ndb
# Jpa properties/ HB related properties
spring.jpa.show-sql=true
spring.jpa.properties.hibernate.format-sql=true
spring.jpa.hibernate.ddl-auto-update
spring.jpa.database-platform=org.hibernate.dialect.MySQL8Dialect
spring.datasource.drive-class-name-oracle.jdbc.driver.Oracle Driver
spring.datasource.url=jdbc:oracle:thin: @localhost:1521:xe
spring.datasource.username=ndb
spring.datasource.password=ndb
# Jpa properties/ HB related properties
spring.jpa.show-sql=true
spring.jpa.properties.hibernate.format-sql=true
spring.jpa.hibernate.ddl-auto-update
spring.jpa.database-platform=org.hibernate.dialect.MySQL8Dialect