Freelanceil y a 5 jours

Responsable maintenance freelance

senjob.com
Sénégal

Description du poste

Offre d'emploi Previous Next // Initialize tooltip component
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})

// Initialize popover component
$(function () {
$('[data-toggle="popover"]').popover()
}) .carousel-control .icon-prev {
margin-left: -65px !important;

}
.carousel-control .icon-next {
margin-right: -65px !important;
}

.carousel-control.left {
background-image: -webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.0001) 100%);
background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.0001) 100%);
background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.0001)));
background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.0001) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
background-repeat: repeat-x;
}

.carousel-control.right {
right: 0;
left: auto;
background-image: -webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.0001) 100%);
background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.0001)));
background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.0001) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
background-repeat: repeat-x;
} Responsable maintenance freelance function verif_post(forms)

{

if (forms.code.value=="")

{

alert('Merci de saisir le code avant de valider cette opération ');

forms.code.focus();

return false ;

}else return true ;

} Référence 161391 Localisation Dakar /
Sénégal Expiration 30 Avril 2026 Offre visitée 244 fois Catégories Maintenance, Entretien, Contrôle Industrie Automobile, Mecanique, Navale . Description de l'offre • Responsable Maintenance Freelance – Fermes urbaines (Dakar) • Localisation : Dakar – interventions sur 2 sites (Fayçal et autre Fabrik) • Type de contrat : Freelance / prestation de services À propos d’Edenly Edenly développe un réseau de fermes urbaines en Afrique produisant des légumes frais, locaux et prêts à consommer grâce à des technologies hydroponiques innovantes. Nos fermes (“Fabrik”) sont des environnements techniques intégrant : • systèmes de climatisation • irrigation automatisée • éclairage LED horticole • traitement de l’eau (osmose inverse) • capteurs et outils de monitoring Mission principale • Garantir le bon fonctionnement technique des fermes et assurer la continuité de production. • Objectif clé : zéro arrêt de production lié à un problème technique Missions 1. Maintenance préventive • Réaliser des visites régulières (1 journée par semaine) • Vérifier les équipements : • climatisation / froid • systèmes d’irrigation et pompes • éclairage LED • qualité de l’eau (RO, circuits) • Mettre en place et suivre un plan de maintenance 2. Maintenance curative • Diagnostiquer rapidement les pannes • Intervenir en cas d’urgence • Assurer la remise en fonctionnement dans les meilleurs délais 3. Suivi technique • Identifier les équipements critiques • Anticiper les besoins en pièces de rechange • Proposer des améliorations techniques simples 4. Support aux équipes • Former les opérateurs aux gestes de base • Donner des consignes simples pour éviter les pannes 5. Reporting • Compte rendu simple après chaque passage • Suivi des interventions et incidents (WhatsApp ou fichier partagé) Profil recherché Compétences techniques • Maintenance industrielle / électromécanique / froid • Bon niveau en : • électricité (basse tension) • systèmes hydrauliques (pompes, circuits d’eau) • climatisation / froid Expérience • Minimum 3 ans en maintenance technique • Expérience terrain indispensable Qualités personnelles • Autonomie et débrouillardise • Disponibilité en cas d’urgence (astreinte légère) • Sens pratique (capacité à résoudre rapidement les problèmes) • Fiabilité • Divers • Habite à proximité des fermes • Reste sur Dakar en permanence //
/* $("#container")
.attr('unselectable', 'on')
.css({
'user-select': 'none',
'MozUserSelect': 'none'
})
.on('selectstart', false)
.on('mousedown', false)
.bind("contextmenu",false)*/; Pour continuer, connectez-vous Connexion candidat Bienvenue. M erci de vous connecter pour accèder aux services de Senjob. conseiller-e--en-chaine-d’approvisionnement_e_161413.html Login ou Email Password ----- OU CONNECTEZ-VOUS AVEC ----- var googleUser = {};
var startApp = function() {
gapi.load('auth2', function(){
// Retrieve the singleton for the GoogleAuth library and set up the client.
auth2 = gapi.auth2.init({
client_id: '794395047709-sjpeehganfkskobq61gd6l55ved9je0b.apps.googleusercontent.com',
cookiepolicy: 'single_host_origin',
// Request scopes in addition to 'profile' and 'email'
//scope: 'additional_scope'
});
attachSignin(document.getElementById('customBtn'));
});
};

function attachSignin(element) {
console.log(element.id);
auth2.attachClickHandler(element, {},
function(googleUser) {
//document.getElementById('name').innerText = "Signed in: " +
// googleUser.getBasicProfile().getName();
// alert( googleUser.getBasicProfile().getName());
var profile = googleUser.getBasicProfile();

$("#Prenom").val(profile.getGivenName());
$("#Nom").val(profile.getFamilyName());
$("#mailgg").val(profile.getEmail());
$( "#ConnexionGG" ).submit();

// Assign handlers immediately after making the request,
// and remember the jqxhr object for this request
/*var jqxhr = $.post( "register_gg.php", {NomComplet: ""+profile.getName()+"", Prenom: ""+profile.getGivenName()+"", Nom: ""+profile.getFamilyName()+"", Email: ""+profile.getEmail()+"" }, function(data) {
alert( "success" );
alert(data);
document.getElementById('name').innerText = "Signed in: " + data;
})
.done(function() {
alert( "second success" );
})
.fail(function() {
alert( "error : de connexion, merci de ressayer ulterieurement" );
})
.always(function() {
alert( "finished" );
});

// Perform other work here ...

// Set another completion function for the request above
jqxhr.always(function() {
alert( "second finished" );
});*/

}, function(error) {
alert(JSON.stringify(error, undefined, 2));
});
} #customBtn {
display: inline-block;
/*background: #4285f4;*/
color: #FFF;
width: 50px;
/*border-radius: 5px;
border: thin solid #888;
box-shadow: 1px 1px 1px grey;*/
white-space: nowrap;
}
#customBtn:hover {
cursor: pointer;
}
span.label {
font-family: serif;
font-weight: normal;
}
span.icon {
//background: url('images_goog

Conseil Sécurité

Ne versez jamais d'argent pour obtenir un entretien. Taf4All ne vous contactera jamais pour vous demander des frais de dossier.