نتایج جستجو برای: unity of reason

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

پایان نامه :مدرسه عالی شهید مطهری 1389

چکیده: طرح نظریه های گونه گون در تعیین نسبت عقل و وحی در اندیشه فیلسوف بر جسته ای همچون ابو نصر فارابی، موسس فلسفه اسلامی، در مقایسه با دیگر اندیشمندان، موجب ابهام، تداخل و تعارض آراء گردیده و ضرورت پژوهشی عمیق توأم با تبیین نظریه صحیح (یگانگی عقل و وحی از نظر فارابی) و اشکالات سایر نظریات را که شمّه ای از موضوع این رساله است، هویدا می گرداند. بر این پایه، نگارنده این رساله کوشیده است نخست با ت...

Journal: :دراسات الادب المعاصر 0
زینة عرفت پور عضو هیئة التدریس بأکادیمیه العلوم الإنسانیة و الدراسات الثقافیة، قسم اللغة العربیة(أستاذة مساعدة). محمد خسروی چیتگر طالب ماجستیر فی قسم اللغة العربیة بأکادیمیة العلوم الإنسانیة و الدراسات الثقافیة.

in the modern era, under the  influence of the western literary criticism has been highly spoken  about organic  unity in arabic ode but many  researchers and critics is established incomplete concept of organic unity in their minds and think it means the ode become confined  to an personal experience or a feeling and while they study it in the poetry they are amaze between logical unity and th...

1996
John P. McDermott David M. Goldschlag

Storage jamming can degrade real-world activities that share stored data. Storage jamming is not prevented by access controls or cryptographic techniques. Verification to rule out storage jamming logic is impractical for shrink-wrapped software or low-cost custom applications. Detection mechanisms do offer more promise. In this paper, we model storage jamming and a detection mechanism, using Un...

,

Background: Despite the irreplaceable role of cyberspace in the behaviors of modern society and the importance of observing ethics in it, so far no research has been presented to build a model of practical ethics in this space. The present study examines how ethical laws are enacted in cyberspace. Conclusion: By descriptive analysis of the concept of ethics in cyberspace, the perception is tha...

ژورنال: مطالعات عرفانی 2010
ابراهیمی دینانی, آرزو , جلالی پنداری, یدالله ,

The unity of existence is one of the most important and complex mystical subjects on which many scholars, especially after Ibn ‘Arabi have always pondered. At a lower level, the Unity of Witness, -Wahdat-i Shohūd-, a spiritual station in which mystic under the spell of Divine love and rapture see nothing save God was presented, which can be identified with the Station of Combination- Maqām-i Ja...

2002
I. S. W. B. Prasetya T. E. J. Vos A. Azurat S. D. Swierstra

UNITY is a simple programming logic to reason about distributed systems. It is especially attractive because of its elegant axiomatical style. Since its power is limited, people introduce variants to extends it with various new functionalities. However, in the axiomatical style it is easy to make a mistake: a seemingly very logical new inference rule may turn out to be unsound. Formal verificat...

Journal: :ادیان و عرفان 0
جعفر شانظری دانشیار گروه فلسفه و کلام اسلامی دانشگاه اصفهان مجید یاریان دانشجوی دکتری حکمت متعالیه دانشگاه اصفهان

mulla sadra shirazi by his fundamentals like fundamentality of existence, existential gradation and the unity of being, believes that love equals being and explains how the love moves in all particles in the universe. he maintains that love is divine nature of human existence and it is full of wisdom and expediency sees. although the description of love by the theory of fundamentality of existe...

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

the ability to speak two languages in the world is a remarkable achievement. there is a good reason to believe that bilingualism is the norm for the majority of people in the world because 70% of the earth’s population are supposed to be bilingual or multilingual. various investigations have shown that the native language impacts foreign word recognition, and this influence is adapted by the de...

ژورنال: رویش روانشناسی 2018

Unity-oriented psychology is a new school in the field of psychological sciences in the Iran. This relies on the philosophy of pantheism, converging psychological principles with this philosophical view, and Iranian- Islamic values. A qualitative inquiry of the effectiveness of Unity - oriented interventions may be beneficial. Hence, this research aimed to analyze the views of mothers of childr...

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

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

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