نتایج جستجو برای: unique extension

تعداد نتایج: 403571  

Azadeh Noorollah Noorivandi

Identifying role of extension system in adoption of new technologies have important role to developing favorable extension systems. For supporting sustainable agriculture in Iran needs extension systems to be carefully thought and accurately implemented. The purpose of this is analyzing role of extension activities in adoption of sustainable agriculture. Based on the results the attending agric...

Journal: :Journal of Computer Science 2021

Analysis of one the fundamental parts Advanced Persistent Threats (APT) Attacks. The phases APTs, their framing with identification criminals. Type attack that normally requires resources only available to State-State hacking. importance Attribution in analysis APTS. unique and differentiating characteristics this type attacks compared traditional cyber-attacks. Development an extension for few...

پایان نامه :وزارت علوم، تحقیقات و فناوری - دانشگاه شاهد - دانشکده علوم انسانی 1392

در تحقیق حاضر تحت عنوان" نقش آموزش و ترویج کشاورزی بر روی دانش ونگرش کشاورزان در مناطق روستایی شهرستان بابل 1390.که این تحقیق دارای چهار سوال پژوهشی در دومحور دانش ونگرش مطرح شده است که سوالات در محوردانش شامل نقش آموزش و ترویج کشاورزی بر افزایش معلومات کشاورزان منطقه مورد نظردر استفاده صحیح از کود ها وسموم مختلف وسوال دیگر در مورد نقش آموزش و ترویج کشاورزی بر افزایش معلومات کشاورزان منطقه مورد...

Journal: :international journal of agricultural science, research and technology in extension and education systems 2015
s.i umar u.s mohammed s jibrin r. k usman h sallawu

the study examined the utilization of information and communication technologies by agricultural extension workers in niger state, nigeria. to achieve the study objective, 206 respondents were proportionately and randomly selected from the three agricultural zones in the state through multi-stage sampling technique. validated questionnaire with reliability coefficient of 0.81 was used to collec...

ژورنال: علوم آب و خاک 2008
ایروانی, هوشنگ, فلکی, ملیحه , شعبانعلی فمی, حسین , موحد محمدی, حمید ,

The continuous rapid development of telecommunications and computer-based information technology (IT) is probably one of the biggest factors of change in agricultural extension, which will facilitate and reinforce other changes. There are many possibilities for the potential applications of the technology in agricultural extension, about which attitudes of extension professionals is highly impo...

Journal: :Journal of Algebra and Its Applications 2023

In this work, we consider extensions of solvable Lie algebras with naturally graded filiform nilradicals. Note that there exist two [Formula: see text] and We find all one-dimensional nilradical text]. prove exists a unique non-split central extension maximal codimension. Moreover, whose codimension is equal to one are found compared these the nilradicals algebra

Journal: :Cambridge journal of mathematics 2022

We prove the existence and local uniqueness of asymptotically flat, static vacuum metrics with arbitrarily prescribed Bartnik boundary data that are close to induced on any star-shaped hypersurface or a general family perturbed hypersurfaces in Euclidean space. It confirms part extension conjecture for large classes data, metric obtained is geometrically unique neighborhood metric.

ژورنال: علوم آب و خاک 2005
حسن صدیقی, , مجید بگلریان, ,

Today, privatization of agricultural extension services is recognized as an appropriate approach to compensate for any weakness that the traditional extension system might have. The primary objective of this research was to study the attitude of the national top managers (including general managers, their deputies, and extension managers) of Jihad-e Keshavarzi Organizations (JKO), toward privat...

ژورنال: کیمیای هنر 2021

This research can be considered as one of the studies that seek to explore, in an argumentative way, subtle and solid philosophical concepts in the field of art. The paper provides an analysis of the concept of “extension” in music as one of the most thought-provoking philosophical concepts. The analysis is carried out by interpreting Ibn-Sina’s special conception of musical extension to answer...

Journal: :Informs Journal on Computing 2022

We present FrankWolfe.jl, an open-source implementation of several popular Frank–Wolfe and conditional gradients variants for first-order constrained optimization. The package is designed with flexibility high performance in mind, allowing easy extension relying on few assumptions regarding the user-provided functions. It supports Julia’s unique multiple dispatch feature, it interfaces smoothly...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->