نتایج جستجو برای: new principles for turkey

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

ژورنال: The Iranian Journal of Botany 2019

Hirtellina kurdica (Merxm. & Rech.f.) Dittrich ،   (Asteraceae) به عنوان گزارش جدیدی برای فلور ترکیه شرح داده می‌شود. شرح گونه به همراه تصاویر گیاه، اکن و دانه گرده و هم‌چنین نقشه پراکندگی جغرافیایی آن ارایه می‌گردد.

Journal: :Journal of Information Processing and Management 2001

Journal: :international journal of health policy and management 2015
george alleyne

this paper comments on the principles that informed rwanda’s successful efforts to adapt its health system to population needs, and more specifically to reduce health inequities. the point is made that these may be universally applicable for countries as they deal with the challenges of post-2015 health agenda.

Journal: :international journal of architecture and urban development 2012
afra gharibpour

this paper seeks to investigate a new definition for architecture by unifying the three vitruvian principles of firmitas, utilities, and venustas via a phenomenological approach in the interpretation and analysis of their role in defining architecture. the paper is composed in two main sections. the first section investigates the nature of architecture based on the mentioned principles, where a...

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

during 2010-2011 a faunistic survey was carried out for collection and identification of edaphic mesostigmatic mites (acari: mesostigmata) in jiroft and suburb. mites were extracted from soil samples by berlese funnel. the mites were cleared in nesbit fluid and were mounted in hoyer medium on microscopic slides. in this study 43 spices from 26 genera and 16 families were collected and identifie...

2017
Juan C. Vasquez Koray Tahiroglu Johan Kildal

One of the reasons of why some musical instruments more successfully continue their evolution and actively take part in the history of music is partially attributed to the existing compositions made specifically for them, pieces that remain and are still played over a long period of time. This is something we know, performing these compositions keeps the characteristics of the instruments alive...

2012
Hans Leeuw

This short paper follows an earlier NIME paper [1] describing the invention and construction of the Electrumpet. Revisions and playing experience are both part of the current paper. The Electrumpet can be heard in the performance given by Hans Leeuw and Diemo Schwarz at this NIME conference.

2015
Jerônimo Barbosa Joseph Malloch Marcelo M. Wanderley Stéphane Huot

Evaluation has been suggested to be one of the main trends in current NIME research. However, the meaning of the term for the community may not be as clear as it seems. In order to explore this issue, we have analyzed all papers and posters published in the proceedings of the NIME conference from 2012 to 2014. For each publication that explicitly mentioned the term “evaluation”, we looked for: ...

2013
Oliver Hödl Geraldine Fitzpatrick

Many new interfaces for musical expression are hand or gesture controlled. For guitarists especially, this opens new ways to control sound effects while playing live. At the same time it is a challenge regarding the conception and design of such hand-controlled effects as guitarists usually use both hands for playing. In this paper we elaborate this particular design space to support future dev...

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

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

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"; } -->