Find Jobs
Hire Freelancers

PHP Laravel Full Stack (Javascript is bonus)

$15-25 AUD / hour

Cerrado
Publicado hace alrededor de 8 años

$15-25 AUD / hour

Want to join a cloud based production company? We're a tech startup company currently under expansion. Our website solution is new and very desirable to the market. Check us out at [login to view URL] You will need to have: Minimum of 4 years OOP PHP experience Minimum of 2 year Laravel experience Knowledge of how to use Bootstrap Knowledge of how to use GIT and bitbucket some knowledge of Angular is desirable Working environment: You will be working in a team environment with 3 other back end devs and 2 front end Full time work if successful in the luxury of your own home, however, you will need to work to our development team's hours of operation which is from 9am to 5pm GMT+1 You get holiday times off and you can request for additional work time or time off We have 1 team video conference once per week and team slack meeting everyday. When you apply please answer these questions to the best of your ability. Your answers will be reviewed and you'll be invited via messages for a skype interview if you are successful: 1. What will be the values of $a and $b after the code below is executed? Explain your answer. $a = '1'; $b = &$a; $b = "2$b"; 2. If you are about to implement real time messaging and notifications section using Laravel, what is the approach you would choose? How would you do that? 3. If you are about to develop multiple websites with shared business logic but different designs how would you do that? 4. We are implementing a new web application. It is not decided yet what database will we use for it, but you need to progress with controllers. What would you do? What programming pattern would you use? 5. Have you ever used Continuous Integration? What tool? 6. What are the best practices you are using in order to deliver bug free code? 7. How would you solve handling multiple background actions without affecting user browsing speed, e.g. sending e-mail, fetching and parsing data from external sources? 8. Imagine some views are using the same data, how and what would you implement to share it between these? Good luck and we look forward to your answers!
ID del proyecto: 10360050

Información sobre el proyecto

35 propuestas
Proyecto remoto
Activo hace 8 años

¿Buscas ganar dinero?

Beneficios de presentar ofertas en Freelancer

Fija tu plazo y presupuesto
Cobra por tu trabajo
Describe tu propuesta
Es gratis registrarse y presentar ofertas en los trabajos
35 freelancers están ofertando un promedio de $22 AUD /hora por este trabajo
Avatar del usuario
Let's discuss more about project to finalize the proper scope with estimated cost and time so ping me over the freelancer chat. I am myself developer so you will directly work with me. No mediators. No managers. No subcontractors. Please check my my recent work for the technical expertise along with reviews & feedback on my profile page.
$25 AUD en 40 días
5,0 (167 comentarios)
9,3
9,3
Avatar del usuario
Dear Sir, I have read Project Description & are you looking for a monthly fixed cost per dedicated developer? What would be the monthly fixed cost? I see your questions but I can have my main lead developer to answer, who will be working with you, if you select us. So, please initiate the chat and I will have my lead developer answer all the questions. Look forward to hearing from you. Regards, YK LEADconcept
$27 AUD en 40 días
5,0 (97 comentarios)
9,0
9,0
Avatar del usuario
Hello, and thanks for the opportunity to bid on your project. https://www.freelancer.com/u/TenStar718.html Answer: 1. $a=21, $b=21 2. gcm or web socket 3. change template 4. MVC 5. SVN or github using studio 6. research : code = 8:2 7. ajax 8. model I assure, I will do my best to work with you on your project to present the best possible outcome for you and your customers. I will also do my best to correct any area of work where quality comes into question, I want to have pride in my service to your company and the final product provided. While I am happy to make adjustments and alterations as your project progresses please understand that I am a dedicated freelancer and any work that is substantially different from the project description may need the awarded fee to be re-negotiated. Feel free to contact me if you have any questions, and please review my 5 star profile. I look forward to working together in partnership on your project and into the future. Regards
$25 AUD en 40 días
5,0 (240 comentarios)
8,7
8,7
Avatar del usuario
Hi I work towards providing reliable, relevant and robust IT solutions at most competitive prices to my customers. I ensure 100% customer satisfaction so lets start Thanks
$15 AUD en 40 días
4,9 (466 comentarios)
8,2
8,2
Avatar del usuario
Hi, I have 10+ years of experience, are you still considering people for this position? Thank you.....
$22 AUD en 40 días
4,9 (71 comentarios)
7,5
7,5
Avatar del usuario
Hello, i am new at freelancer so i can work low price and good quality ! i can do your work Quickly :) i am good in PHP and Design. I have 4 year Exp in web Development & designing . :) I can afford all kinds of jobs that suits me according to my skills. So I suggest you to give me an opportunity to do your job. Thank you Regards Gamdur Singh
$15 AUD en 40 días
4,9 (174 comentarios)
7,2
7,2
Avatar del usuario
1) $a = '21'; $b = '21'; The variable $B is indicating the memory address of $A. So the value of $A does change by the value of $B when change the value of $B. 2) I will implement asynchronous websockets on Laravel. It does base LONG-POLLING protocal. 3) We can use sub-domain for each business logic. 4) must implement the "Repository Pattern". 5) SVN or Git 6) Unit test 7) CronTab or Supervisor on Linux 8) I am usally implement GCS(Google Cloud Storage). I can meet up all your requirements. If you give me opportunity to work with you, I'll prove I am a perfect candidate for your job. Looking forward to discuss further. Thanks.
$15 AUD en 40 días
4,9 (52 comentarios)
7,1
7,1
Avatar del usuario
Hello sir, I have good knowledge in OOP/LARAVEL/PHP/BOOTSTRAP and little bit about Angular.js. As you have mentioned in your project description and I have developed a real time messaging system . I am very confident about your project that I am able to this job. Please talk to me and give me a chance. Thanks
$15 AUD en 40 días
4,8 (103 comentarios)
7,4
7,4
Avatar del usuario
Hello, I understood the initial scope of this project. Although i want to discuss further this job in order to prepare the final concept for this project. After Complete discussion over the call or in chat, i will prepare following things for you - Technical Project Proposal - Flow chart for this Project - Execution plan (Step by step procedure with explanation how and at what that we are going to execute a particular task)
$25 AUD en 40 días
4,8 (53 comentarios)
7,0
7,0
Avatar del usuario
I want to discuss this project with you further, let me know the best suitable time for you to schedule the meeting, Feel free to message me at any time, i used to be online 14 hrs in a day on this website so probably you will get a quick response from my end.
$25 AUD en 40 días
5,0 (26 comentarios)
6,9
6,9
Avatar del usuario
Hi, My answers as follows 1. Both $a and $b will be equal to the string "21" after the above code is executed. Here’s why: The statement $b = &$a; sets $b equal to a reference to $a (as opposed to setting $b to the then-current value of $a). Thereafter, as long as $b remains a reference to $a, anything done to $a will affect $b and vice versa. So when we subsequently execute the statement $b = "2$b", $b is set equal to the string "2" followed by the then-current value of $b (which is the same as $a) which is 1, so this results in $b being set equal to the string "21" (i.e., the concatenation of "2" and "1"). And, since $b is a reference to $a, this has the same affect on the value of $a, so both end up equal to "21". I will answer balance question at the time of initial chat Lets talk Paul
$22 AUD en 40 días
4,7 (40 comentarios)
6,1
6,1
Avatar del usuario
I have more than 10 years of an experience in web technologies (JavaScript, HTML5, CSS3, jQuery and other) please contact me and I will answer any of your questions
$25 AUD en 40 días
4,6 (4 comentarios)
4,7
4,7
Avatar del usuario
Greetings! I decided to forward my application directly to your careers department, due to the horrible text formatting that this platform provides. I hope we can discuss this position further. Until then, please disregard my bid and view it merely as a reach of hands. Best regards, Michael Cavaleri.
$22 AUD en 40 días
0,0 (0 comentarios)
0,8
0,8
Avatar del usuario
Hi my name is David I am a Software Engineer from Silicon Valley, I am really interested in your project please let me know if can I help you in your project.
$26 AUD en 40 días
0,0 (0 comentarios)
0,0
0,0
Avatar del usuario
Hello, I am very excited about the position you have available in your company and I know that you need someone who is enthusiastic and task oriented, and I am uniquely qualified for the job. Through my education, I have gained excellent insights into the web development and strengthened my programming and analytical skills. Here are some of my skills: -LAMP stack experience, with an emphasis on PHP and MySQL, -Strong understanding of MVC design principles and object-oriented programming, -Expert in MVC frameworks: Laravel, Zend, CI, Cake, Yii2 and etc. -Expert-level ability with HTML5, CSS3, JS, AJAX, Jquery, Bootstrap, React.js JSON and etc. - Proficiency at defining, implementing and integrating APIs (REST, XML-RPC) -Strong experience in WordPress -Experience with source control (SVN) and bug tracking systems In me, you’ll find someone who is unusually dedicated, self-motivated, and who possesses the detail-orientation and technical skills to excel in a fast-paced environment. I would greatly appreciate the opportunity to be included on your interviewing schedule. Thank you very much for your consideration. Sincerely, Ara
$15 AUD en 25 días
0,0 (0 comentarios)
0,0
0,0
Avatar del usuario
Hi, I am high skilled Laravel developer experienced in Laravel able to do teamwork. Regards, Slavko Answers: 1. $a = '1'; // var $a is string $b = &$a; // var $b is reference to var $a $b = "2$b"; // $b is changed to string "21" 2. Depending of project, but probably will search some existing package. 3. I'd create separate public directory for each website and code that support that configuration. 4. If we already have controllers I'd choose MVC. 5. No. 6. TDD/BDD && Version Control 7. With queue / cron jobs. 8. By creating partial view that contain shared data and call it in views.
$24 AUD en 40 días
0,0 (0 comentarios)
0,0
0,0
Avatar del usuario
Hi there, Please find the answers of your queries below; 1. What will be the values of $a and $b after the code below is executed? Explain your answer. $a = '1'; $b = &$a; $b = "2$b"; Answer: $a: 2, $b:1 2. If you are about to implement real time messaging and notifications section using Laravel, what is the approach you would choose? How would you do that? Answer: Larasocial is a simple social networking platform that is built on Laravel. As an open source project with a rich code foundation, Larasocial can be integrated for extending instant communication using features such as send/ receive friend request, chat, private messaging, group messaging etc. It is an open source platform that can be used by a Laravel web developers to extend the functionalities of the application. 3. If you are about to develop multiple websites with shared business logic but different designs how would you do that? Answer: We are simply made Web services for communicating business logics with views so that multiple websites can be used same business logics. 4. We are implementing a new web application. It is not decided yet what database will we use for it, but you need to progress with controllers. What would you do? What programming pattern would you use? Answer: PHP + Mysql Database Using PDO Have you ever used Continuous Integration? What tool? Answer: for development we use Netbeans,Ecllipse for Database we use : Mysql Work Bench 1. What are the best practices you are using
$20 AUD en 40 días
0,0 (0 comentarios)
0,0
0,0

Sobre este cliente

Bandera de AUSTRALIA
Melbourne, Australia
4,9
13
Miembro desde dic 6, 2014

Verificación del cliente

¡Gracias! Te hemos enviado un enlace para reclamar tu crédito gratuito.
Algo salió mal al enviar tu correo electrónico. Por favor, intenta de nuevo.
Usuarios registrados Total de empleos publicados
Freelancer ® is a registered Trademark of Freelancer Technology Pty Limited (ACN 142 189 759)
Copyright © 2024 Freelancer Technology Pty Limited (ACN 142 189 759)
Cargando visualización previa
Permiso concedido para Geolocalización.
Tu sesión de acceso ha expirado y has sido desconectado. Por favor, inica sesión nuevamente.