Open jdelamorena opened 1 year ago
thanks but i am not of legal working age. do u have internships ? @jdelamorena
Good morning, Lily, Thank you very much for your reply. I am amazed now! You are really good for being that young! Unfortunately, we do not have internships right now. But please, let me know when you are legally allowed to work. You have talent!
Also, please, let me know what you think of the way we contacted you. Was it nice or did it feel a little invasive? It was a friend of mine’s idea, and now I have to give him feedback :)
Thanks a lot!
@.***https://www.nbsitrecruitment.com/
@.***https://www.linkedin.com/company/nbs-it-recruitment/
De conformidad con lo establecido en el RGPD, NBS IT Recruitment garantiza la adopción de las medidas necesarias para asegurar el tratamiento confidencial de los datos de carácter personal. Así mismo le informamos de la posibilidad de ejercer los derechos de acceso, rectificación, cancelación y oposición enviando un e-mail a nuestro Delegado de Protección de @.***?subject=Proteccion%20de%20datos>. Puede encontrar más información en nuestra web. Este mensaje y todos los ficheros adjuntos que éste contiene son confidenciales y están destinados exclusivamente al uso individual de la persona a la que van dirigidos. Si Vd. ha recibido este mensaje por error, rogamos lo devuelva al remitente del correo electrónico.
In accordance with the provisions of the GDPR, NBS IT Recruitment guarantees the adoption of the necessary measures to ensure the confidential treatment of personal data. We also inform you of the possibility of exercising your rights of access, rectification, cancellation and opposition by sending an e-mail to our Data Protection @.***?subject=Data%20Protection>. More information can be found on our website. This message and all attached files are confidential and are intended solely for the individual use of the person to whom they are addressed. If you have received this message in error, please return it to the sender of the e-mail
De: lily @.> Enviado el: martes, 25 de julio de 2023 3:07 Para: lilylilylily123/enwrap-upload @.> CC: Javier de la Morena @.>; Mention @.> Asunto: Re: [lilylilylily123/enwrap-upload] NBS speaks your language. Senior Full Stack Golang Opportunity :) (Issue #1)
thanks but i am not of legal working age. do u have internships ? @jdelamorenahttps://github.com/jdelamorena
— Reply to this email directly, view it on GitHubhttps://github.com/lilylilylily123/enwrap-upload/issues/1#issuecomment-1648819160, or unsubscribehttps://github.com/notifications/unsubscribe-auth/BAIL3VZFDJMOZTUHRYRJW7TXR4L43ANCNFSM6AAAAAAYYJERDA. You are receiving this because you were mentioned.Message ID: @.**@.>>
@jdelamorena thanks man, im 14 so gimme 2 years
the way u contacted me was cool
package main
// we have a Senior Fullstack (Golang) opportunity for a big Retail corporation expanding its IT business. They are offering a very challenging project, EUR // 60-65K gross per year and hybrid model (8 days per month at their nice offices at the very center of Barcelona and the rest remotely)
import "fmt" import "strconv"
type Developer struct { Name string Surname string Salary_expectations int Github_user string Mail string Mobile string }
type Recruiter struct { Name string Surname string Company string Website string Mail string Mobile string }
type Offer struct { Position string Sector string Salary string Max_salary int Currency string Model string DaysAtOffice int City string }
func NewRecruiter(name string, surname string, company string, website string, mail string, mobile string) * Recruiter { return &Recruiter { Name: name, Surname: surname, Company: company, Website: website, Mail: mail, Mobile: mobile, } }
func NewDeveloper(name string, surname string, github_user string, salary_expectations int, mail string, mobile string) * Developer { return &Developer { Name: name, Surname: surname, Github_user: github_user, Salary_expectations: salary_expectations, Mail: mail, Mobile: mobile, } }
func NewOffer(position string, sector string, salary string, max_salary int, currency string, model string, daysAtOffice int, city string) * Offer { return &Offer { Sector: sector, Salary: salary, Max_salary: max_salary, Currency: currency, Model: model, DaysAtOffice: daysAtOffice, City: city, Position: position, } }
func main() { developer: = NewDeveloper("", "", "lilylilylily123", 65, "", "") recruiter: = NewRecruiter("Javier", "De La Morena", "NBS", "https://itrecruitmentnbs.com", "jdelamorena@nbsitrecruitment.com", "+34634550524") offer: = NewOffer("Senior Fullstack (Golang)", "Retail", "60-65K gross", 70, "EU", "Hybrid", 8, "Barcelona")
}