10293
Community of 🇪🇹 Ethiopian developers Codenight Channel - @CodeNight_Info Codenight Forum - @CodeNightforum Codenight Newsletter - https://open.substack.com/pub/codenight If you have questions or suggestions message @CodeNightBot
Hi im new here im from Tanzania 🇹🇿 i need to someone help how to create a software 🙂 🙏 🙏
Читать полностью…
What is happening with this laptop ? Anybody had same issus befor ?
Читать полностью…
@linat416 did and he build simple library something maybe
Читать полностью…
https://youtube.com/shorts/c63qBdenLAg?si=vcAkLCTdmjyO0f1M
Читать полностью…
It is because ur hotspot is 5GHz and the pc that you are trying to connect is 2.4 GHz so u can go to settings on the hotspot and switch to the old 2.4 GHz option
Читать полностью…
google has updated their policy make sure to use App password for your password instead of gmail password
Читать полностью…
Are we really comparing tailwind with bootstrap? 😭
Читать полностью…
Job Title: Senior Flutter Developer
Company: Alpha Tech
Salary: 25,000 ETB
Description:
We are currently in search of a proficient Flutter and GraphQL developer to undertake freelance tasks related to the integration of our mobile application. The successful candidate will be responsible for seamlessly merging our existing GraphQL server with the mobile app, utilizing the Flutter framework. If you possess a fervor for mobile development and possess a comprehensive understanding of React and GraphQL, we invite you to explore this opportunity with us!
Requirements:
- have a good knowledge on Flutter GraphQl API
- At least 2 years of experience in Flutter development with in-depth knowledge.
- Experience with Git and version control systems.
- Strong familiarity with Node.js and other Backend technologies.
- Good understanding of RESTful and GraphQL APIs.
- Excellent problem-solving skills and attention to detail.
Approved by Maroset
Share: Ethiopian Remote Jobs
https://youtube.com/shorts/tFyYAMOocRU?si=0REHT9WaFIUvtDIG
Читать полностью…
Can anyone help me to integrate chapa payment gateway in flutter
Читать полностью…
Can you use CSS only to target elements under a certain height? Say 50px for example?
Читать полностью…
its seems like we are not understanding so Google it
Читать полностью…
I know that but what is the device you are hosting the hotspot
Читать полностью…
Hey guys if there is a Kotlin and swift developer please contact me @touchbu3 and we will deal with salary
Читать полностью…
const nodemailer = require("nodemailer");
module.exports = async (email, subject, text) => {
try {
const transporter = nodemailer.createTransport({
host: process.env.HOST,
service: process.env.SERVICE,
port: Number(process.env.EMAIL_PORT),
secure: Boolean(process.env.SECURE),
auth: {
user: process.env.USER,
pass: process.env.PASS,
},
});
await transporter.sendMail({
from: process.env.USER,
to: email,
subject: subject,
text: text,
});
} catch (error) {
return error;
}
};
.env file content
HOST=stmp.gmail.com
SERVICE=gmail
EMAIL_PORT=587
SECURE=true
USER=someone@gmail.com
PASS= get this in the 2 step authentication from google when you register nodemailer as a service provider