11 Aralık 2024 Çarşamba

Examples of Technological Chaos

-When a country goes to war, it means that all sectors in that country are disrupted. In the early 1970s, we learned that Turkey had entered the war via radio, which was a new development. Not to mention cultural corruption, which continued in stasis for about 10 years after the Cyprus Peace Operation. Remembered The Korean War and the GAP became evident in the encounter with television, and Turkey's interest in the south increased with the GAP. There was still a cultural pause, although not as much as in radio. If the disruption had not occurred, the currently active working class would have difficulty distinguishing between radio and television broadcasting.


-The inflation rate increased. It increased like this 20-25 years ago. However, instead of interpreting today's situations, terms from 20-25 years ago began to be used again and again, as if there had never been a decline.


-There was a disruption with the arrival of the Millennium concept and afterwards. If the crisis had not occurred, there would have been a generation that would have said that they would not notice the difference between the internet and television and radio.


-Computer owners and hosting service providers benefit from the mistakes made by users. The more mistakes they can make, the more tested the computer will be. There should be no opportunity for error, otherwise we should call the computer a very advanced calculator.


-The craze for making money online has been greatly exaggerated. So much so that even when you log in to a normal website, money is started to be asked for constant access to this site. (This should be used more as "be careful, you can save your money") For example, in internet cafes in a foreign country, only electricity is paid. Internet costs are covered by the ads that appear at the bottom of the browser every time you open it.


 -If we could have postponed it for about 10 years, for a longer period of time, the continuous construction, peace operations are still causing disruption these days. If there had been no disruption, there would have been a generation that could not distinguish between radio and television and internet and local software. I think AI has been restructuring for about 20 years. Artificial intelligence programs and robotic software will soon be popular.


-In my city, the number of internet cafes 20 years ago is the same as the number of internet cafes today (the number of internet cafes has doubled and tripled). There is still uncertainty.


-When politicians say artificial intelligence, we need to understand that you should not work to the point of exhaustion and leave it to artificial intelligence. Otherwise, you should not work for artificial intelligence already.


-Soon there will be no one writing standard code. It will come in ready-made blocks. Instead of programs that work very slowly the first time and run fast in the second and subsequent times, we will create large software that runs on strange processors with very large memory (error types will change).


Edit by: dudukadinshoppingdistrict@gmail.com

You can also send the articles to dudukadinshoppingdistrict@gmail.com that you deem important.

27 Haziran 2024 Perşembe

Memory Game

One busy day, 15 minutes before the end of working hours, someone came up at a bank. I quickly went to the bank, and as the bank door was opening, the security guard with the phone in his hand said to me: "Look, he made a game." While I was quickly taking the order for transactions, I said: "We'll do it, am I going to hurt you?". I wrote this game one year after this dialogue. Of course, I still have no idea what that security guard meant for what purpose... The software can be copied, it can be shown as an example. It can be changed as long as it is not referenced. (After changing,if you can say wow I got this from here...) You can request the advanced software otherwise inform aganis from the e-mail at the end of the page.

 <html> 
<head meta charset="utf-8">
 <title>Hafiza Oyunu</title>
 <script> 
 var kusresimleri; 
 var BTNPREFIX = 'btn'; 
 var secim = -1; 
 const resimleri=["SAHIN","AKBABA","SERCE","KERKENEZ","KARGA",
"BALIKCIL","ATMACA","DOGAN","PUHU","BAYKUS",
"AGACKAKAN","CIGIRTKAN","KARTAL","TAVUK",
"GUGUK","HOROZ","PAPAGAN","SAKA","MUHABBET",
"ARIKUSU","DEVEKUSU","CALIKUSU","BULBUL",
"LEYLEK","PELIKAN","SAKSAGAN","KIRLANGIC",
"CIVGIN","ORDEK","SIGIRCIK","CIVGIN","TAVUS",
"TINAMU","KASUARI","EMU","KIVI","KAZ","SAKARCA",
"SUNA","ANGIT","CIKRIKCIN","CAMURCUN","FIYU",
"KILKUYRUK","PATEKESI","ELMABAS","PATKA",
"PUFLA","ALTIN","TARAK","MEGAPOT","MALEO",
"CACALAKA","GUAN","HOKKO","KOLIN","TORKO",
"KEKLIK","ARGUS","SULUN","BILDIRCIN"];

//create resimleri array

  const boskutular=["0","1","2","3","4","5","6","7","8","9",
  "10","11","12","13","17","23","25","26",
  "29","30","31","32","33","36","38","39",
  "42","44","46","49","51","52","53","54",
  "55","57","59","60","61","62","64","65",
  "68","69","70","71","72","75","76","77",
  "78","81","82","83","84","85","86","87",
  "88","89","90","91","96","97","103","104",
  "109","110","114","116","117","123","125",
  "127","129","130","131","137","139","140",
"142","143","144","145","146","147","148",
"149","150","151","152","153","154","155" ];

//creat bos kutular array  

function diziOlustur(buyukluk) {
buyukluk = parseInt(buyukluk);
//describe buyukluk 
var len = 62;
len=parseInt(len); 
//describe len lenght
console.log(buyukluk);
kusresimleri = new Array(len);
//create new memory array
for (var i = 0; i < len / 2; i++){
kusresimleri[i] = i;
kusresimleri[(len / 2) + i] = i;
    }
//create array lenght
console.log(kusresimleri);
kusresimleri=karistir(kusresimleri);
console.log(kusresimleri);
//return random value
}
function cevir(idx){
idx = parseInt(idx);
// describe idx
console.log(idx);
//rememorized
if (secim < 0) {
var btn1 = document.getElementById(BTNPREFIX + idx);
//create button that value less than zero
secim = idx;
//create value on secim
btn1.innerText = kusresimleri[idx]+" "+resimleri[kusresimleri[idx]];
//wrote on button
} else {
btn1 = document.getElementById(BTNPREFIX + secim );
//take value on button
var btn2 = document.getElementById(BTNPREFIX + idx );
//take button value
btn2.innerText = kusresimleri[idx]+" "+resimleri[kusresimleri[idx]];
//wrote on button
if (kusresimleri[idx] == kusresimleri[secim]) {
// is taked value,idetical value
btn1.parentElement.removeChild(btn1);
btn2.parentElement.removeChild(btn2);
//erase buttons same value
} else {
//not, rewrite buttons' timeout
setTimeout(function () {
btn1.innerText = "___X___";
btn2.innerText = "___X___";
}, 2222)
//than change buttons text
}
secim = -1;
//repeat procces
}
}
function karistir(array) {
//call back array
var c = array.length, t, r;
//define t,r,c
while (0 !== c) {
//count end to first
r = Math.floor(Math.random() * c);
// selection index by random, less than value c
c -= 1;
t = array[c];
array[c] = array[r];
array[r] = t;
// swap with index
}
return array
}
//call back array
function bosdolu(say){
say = parseInt(say);
for (var k=0; k < 94 ; k++){
var sayi=boskutular[k];
sayi=parseInt(sayi);
var sayilar=0;
if(sayi == say){
break;
}else{
sayilar=sayi;
}  
}
say=sayilar;
return say;
}
//check on beginning matrises that empty value
function hazirla(buyukluk) {
buyukluk = parseInt(buyukluk);
document.clear();
document.body.innerHTML = '<h3>Kutulari cifter cifter acin!<<br&tg;Ayni anlamlar silinir.<br>Cift acilmis kutunun kapanmasi yaklasik 2 saniyedir.<br>Ayni kutuya ardarda iki defa basarsaniz oyun biter.</h3>';
diziOlustur(buyukluk);
//create dizi that buyukluk value
var eleman = document.getElementsByTagName('body')[0];
var tablo = document.createElement('table');
    tablo.style.width = '100%';
    tablo.setAttribute('border', '0');
    var tabloelemani = document.createElement('tbody');
//create tables factor
var xc = buyukluk;
var yc = buyukluk + 1;
// Single x Double = Double
var p = 0;
var m = 0;
for (var x = 0; x < xc ; x++) {
var sutun = document.createElement('tr');
// 1 colon
for (var y = 0; y << yc ; y++){
var z=((x*13)+y);
// define matris that long z
var yazilankus=bosdolu(z);
// check on is there yazilankus
yazilankus=parseInt(yazilankus);
if(yazilankus==0){
var satir = document.createElement('td');
satir.appendChild(document.createTextNode('\u0020'));
satir.innerHTML = '<button type="button" id="" ><br><br><h3>________</h3><br></button>';
sutun.appendChild(satir);
p++;
}else{
var satir = document.createElement('td');
satir.appendChild(document.createTextNode('\u0020'));
satir.innerHTML = '<button type="button" id="' + BTNPREFIX + m + '" onclick="cevir(' + m + ');"><br><br><h3>____X____</h3><br></button>';
sutun.appendChild(satir);
p++;
m++;
}
// loop yazilankus
}
tabloelemani.appendChild(sutun);
//add line on tbdy
}
tablo.appendChild(tabloelemani);
//add colon on tbl
eleman.appendChild(tablo);
// add table on body object
//added
}
</script>
</head>
<body>
<script>
     hazirla(12);
</script>
</body>
</html>
you can also send a suggession that you deem important to dudukadinshoppingdistrict@gmail.com

18 Ekim 2023 Çarşamba

In Service Bitcoin

  Bitcoin and other crypto currencies are (unlike euro) not a legal currency. Therefore there is no obligation to accept bitcoin as a form of payment. It is merely a question that concerns the seller, whether he wants to accept it as a payment or not.* 
  Virtual currencies emerged as the most popular financial phenomenon of the recent years by their claim to be an alternative payment instrument and their distributed ledger technology. Virtual currencies are mostly compared to commodity money, field money and e-money in the context of three main functions of money and carry as many similarities as differences. Today, there are hundreds of virtual currencies built on the technology used by Bitcoin, which is the first example of virtual currencies. 
  As virtual currencies are not regulated by law, they pose many risks expecially for the users. Despite all the risks, by the benefits they provide as compared to other payment instruments, the virtual currencies are prefered more everday. Since the distributed ledger technology and mining, which form their infrastructure, are new concepts in the market; they attracted high attention and have been discussed to be used in financial markets. There are projects regarding the alternative use of distributed ledger technology. Despite this fact, the legal regulation of virtual currencies are still preliminary.** 
 - In -this- case of owning bitcoin for over a year, the sale of it's free from taxes but registered on.The amount of profit is irrelevant and you're not obligated to mention it in your tax declaration. Exception's: using it as a source of income. In this case the deadline will be extended to ten years. By the way newer delated. 
 - In case of selling the bitcoin within 12 months after buying it, profits up to 600€ are free from taxes but registered on. More than 600€ will be taxed or defeated. This rule applies not only to bitcoins but for every crypto circulation within a year.*** 

 *https://www.winheller.com/bankrecht-finanzrecht/bitcointrading/bitcoinundsteuer.html
**Betül ÜZER Uzmanlık Yeterlik Tezi Türkiye Cumhuriyet Merkez Bankası Ödeme Sistemleri Genel Müdürlüğü Ankara, Eylül 2017
***https://taxfix.de/steuertipps/bitcoin-und-steuer/
Article Writer : Melike ÇOBAN
Edit:dudukadinshoppingdistrict@gmail.com
You can also send the articles to dudukadinshoppingdistrict@gmail.com that you deem important.

13 Ağustos 2023 Pazar

Dudu Kadın

   Who can read the heroic deeds of brave men without a feeling of respect and admiration?

   Today, there are many places called Dudu Kadın's Street, Dudu Kadın's Bazaar, Dudu Kadın's Farm in Akşehir. So, who is this Dudu Kadın?

   Dudu Kadın, real name Tuti Kadın, was born as the daughter of Alaeddin Ağazade Mehmet Ağa from Akşehir. Again, She married Mustafa Bey from Akşehir. At that time, a beautiful sarcophagus was built on his grave.

  Dudu Kadın or Tuti; She was a great Turkish woman who had her name engraved on Akşehir's undead sign. She was Turkish folk heroine, who became known for fighting against Entente States forces. She never be recapture at the during of the World War of 1914–1918.She was known as a benevolent and charitable person. She made large donations to the building on the site of today's Akşehir Tuberculosis Dispensary, which was started to be used during the difficult times of the War of Independence and later served as Akşehir Municipal Hospital.According to Turkish folklore, she had been living in a neighborhood of Akşehir called Akşehir Tuberculosis Dispensary that was close to an important fortification defending the city. Akşehir Tuberculosis Dispensary wasn't captured by the Entente States army for this reason building was dressing station.In World War I and in War Independence, carried the injured to the here. Even one slaved injured soldier that was Franceman. Tuti was uttared, She wasn't like this stuation. Different a immigrants doctor was looked to slaved injured Franceman. When a hand-to-hand fight ended She was singled out for her heroism and would become a symbol of bravery.

   She died in 1928 and was buried in the Nasreddin Hodja Cemetery.So today The tomb of the Tuti Woman is in the Nasreddin Hodja Cemetery. (Progetory of Tuti Woman in Akşehir Library).

Edit by: dudukadinshoppingdistrict@gmail.com

You can olso send article dudukadinshoppingdistrict@gmail.com that you deem important.

2 Mayıs 2023 Salı

Simple Html Calculator

<html><head>
<script language="javascript">
<!-- START OF SCRIPT -->
<!-- HOW TO INSTALL 7 FUNCTION CALCULATOR: FOR S.D.B.              -->
   <!-- 1.  Paste the coding into the HEAD of your HTML document          -->
   <!-- 2.  Put last coding into the BODY section of document             -->
  <!--     newEdit:dudukadinshoppingdistrict@gmail.com        -->
<!-- Newedit Explanation:There tree function have been added this script  -->
<!-- Newedit Explanation: functions have been added and rebuilt this script  -->
<!-- Newedit Explanation:There is no D.B's  System functions    -->
<!-- Newedit Explanation:Original script can be change and rebuilt  -->
<!-- Newedit Explanation: added this script  -->
<!-- Begin the script  and adding values -->

function ftoplam()
{
a=eval(form.a.value);
b=eval(form.b.value);
anstoplam=a+b;
form.toplam.value = anstoplam;
}

<!-- second function -->

function ffark()
{
a=eval(form.a.value);
b=eval(form.b.value);
ansfark=a-b;
form.fark.value = ansfark;
}

<!-- function  -->

function fcarpim()
{
a=eval(form.a.value);
b=eval(form.b.value);
anscarpim=(a*b);
form.carpim.value = anscarpim;
}

<!-- function -->

function fbolum()
{
a=eval(form.a.value);
b=eval(form.b.value);
ansbolum=(a/b);
form.bolum.value = ansbolum;
}

<!-- function add one number and  plus -->

function fayuzde()
{
a=eval(form.a.value);
b=eval(form.b.value);
ansayuzde=a+((b/100)*a);
form.ayuzde.value = ansayuzde;
}

<!-- function -->

function fyuzde()
{
a=eval(form.a.value);
b=eval(form.b.value);
ansyuzde=((b/100)*a);
form.yuzde.value = ansyuzde;
}

<!-- must be more than two yuzde function-->

function feyuzde()
{
a=eval(form.a.value);
b=eval(form.b.value);
anseyuzde=(a*100)/(100+b);
form.eyuzde.value = anseyuzde;
kaydireyuzde();
}

<!-- second form for shift memory -->

function kaydireyuzde()
{
 formum.kaydireyuzde6.value=formum.kaydireyuzde5.value;
 formum.kaydireyuzde5.value=formum.kaydireyuzde4.value;
 formum.kaydireyuzde4.value=formum.kaydireyuzde3.value;
 formum.kaydireyuzde3.value=formum.kaydireyuzde2.value;
 formum.kaydireyuzde2.value=formum.kaydireyuzde1.value;
 formum.kaydireyuzde1.value=formum.kaydireyuzde0.value;
 formum.kaydireyuzde0.value=formum.kaydireyuzde.value;
 formum.kaydireyuzde.value=form.eyuzde.value;
}

<!-- together function -->

function fhesapla()
{
 a=eval(form.a.value);
 b=eval(form.b.value);
 var pvalue=document.getElementById("pvalue").value;
var pvalue0=document.getElementById("pvalue0").value;
      var presult= "";         
       if (pvalue >1 && pvalue < 40)
        {         
          for (i=1;i < pvalue; i++) 
             { 
                       k=i*(0.1);
                       presult += k+"<br\>";        
              }         
         } 
          else 
         {                 
            presult = "<br\>Lütfen 1-40 arasında bir sayı giriniz";
          } 
document.getElementById("pt_result").innerHTML=presult;
 anstoplam=a+b;
 ansfark=a-b;
 anscarpim=(a*b);
 ansbolum=(a/b);
 ansayuzde=a+((b/100)*a);
 ansyuzde=((b/100)*a);
 anseyuzde=(a*100)/(100+b);
 form.eyuzde.value = anseyuzde;
 form.yuzde.value = ansyuzde;
 form.ayuzde.value = ansayuzde;
 form.bolum.value = ansbolum;
 form.carpim.value = anscarpim;
 form.fark.value = ansfark;
 form.toplam.value = anstoplam;
 kaydireyuzde();
}
</SCRIPT>

</HEAD>
<BODY bgcolor="grey">

<!-- shift speed -->


<hr>
<marquee behavior="scroll" direction="left" scrollamount="3" Onmouseover="this.stop()" onmouseout="this.start()"> H D Y </marquee>
</hr>

<!-- yellow must be -->

 <marquee direction="left" width="" height="10" bgcolor="yellow" Onmouseover="this.stop()" onmouseout="this.start()">
 </marquee>


<!-- first form -->

<FORM name="form">
<input type="number"  size=5 value=100 name="a" id="pvalue">ISLEM
<input type="number" size=10 value=18 name="b" id="pvalue0">
<input type="button" value="    Hesapla    " onClick="fhesapla(this.form)">
<table><tbody>

<tr><td><h5> ISLEM + =></h5><input type="button" value= " ... TOPLAM ... " onClick="ftoplam(this.form)"><input type="number" value=0 name="toplam" size=5></td><td></td><td></td><td>
</td></tr>

<tr><td><h5> ISLEM - =></h5> <input type="button" value="  .....  FARK  ..... " onClick="ffark(this.form)" ><input type="number" value=0 name="fark" size=5></td><td></td><td></td><td>
</td></tr>

<tr><td><h5> ISLEM * =></h5> <input type="button" value="  ... CARPIM  ... " onClick="fcarpim(this.form)" ><input type="number" value=0 name="carpim" size=5></td><td></td><td></td><td>
</td></tr>

<tr><td><h5> ISLEM / =></h5> <input type="button" value=" ..... BOLUM ..... " onClick="fbolum(this.form)" ><input type="number" value=0 name="bolum" size=5></td><td></td><td></td><td>
</td></tr>

<tr><td><h5> ISLEM ++% =></h5> <input type="button" value=" . EKLEYUZDE . " onClick="fayuzde(this.form)"><input type="number" value=0 name="ayuzde" size=5></td><td></td><td></td><td></td></tr>

<tr><td><h5> ISLEM  %  =></h5> <input type="button" value=" .... YUZDESI .... " onClick="fyuzde(this.form)" ><input type="number" value=0 name="yuzde" size=5></td><td></td><td></td><td>
</td></tr>

<tr><td><h5> ISLEM % - - =></h5> <input type="button" value=" YUZDELICIKAR " onClick="feyuzde(this.form)" ><input type="number" value=0 name="eyuzde" size=5></td><td></td><td></td><td>
</td></tr>
</FORM >

<!-- second form -->

<FORM name="formum">
<tr><td>shift0=
<input type="number" value=0 name="kaydireyuzde" size=5></td><td></td><td>
</td></tr>
<tr><td>shift1=
<input type="number" value=0 name="kaydireyuzde0" size=5></td><td></td><td>
</td></tr>
<tr><td>shift2=
<input type="number" value=0 name="kaydireyuzde1" size=5></td><td></td><td>
</td></tr>
<tr><td>shift3=
<input type="number" value=0 name="kaydireyuzde2" size=5></td><td></td><td>
</td></tr>
<tr><td>shift4=
<input type="number" value=0 name="kaydireyuzde3" size=5></td><td></td><td>
</td></tr>
<tr><td>shift5=
<input type="number" value=0 name="kaydireyuzde4" size=5></td><td></td><td>
</td></tr>
<tr><td>shift6=
<input type="number" value=0 name="kaydireyuzde5" size=5></td><td></td><td>
</td></tr>
<tr><td>shift7=
<input type="number" value=0 name="kaydireyuzde6" size=5></td><td></td><td>
</td></tr>
</form>
</tbody></table>
<!-- END OF SCRIPT -->
<div class="pt_code">
<div id="pt_result">Sonuç buraya gelecek.</div>
 </body>
</html>
head>
H D Y
PROCEDURE
ISLEM + =>
ISLEM - =>
ISLEM * =>
ISLEM / =>
ISLEM ++% =>
ISLEM % =>
ISLEM % - - =>
shift0=
shift1=
shift2=
shift3=
shift4=
shift5=
shift6=
shift7=
ANSWER MUST BE HERE.

13 Mart 2023 Pazartesi

All About the Matlab


\n Programming language the Matlab is language. Image processing, control, statistics, optimization, fuzzy logic, neural networks, numerical genetic algorithms. You can create large projects very quickly with sub-programs that you can create yourself. Not to mention its subroutines with its own functions, formulas, ready-made data structures...so you can create structures that make decisions.


\n Matlab has started to be used mostly in the field of artificial intelligence. What I want to talk about is more about fuzzy logic... although there is not much difference between the two. Combined control structures work very fast, the results of finite operations with structures that can run each other are quickly found (a technology company is one of the first to notice this speed) that we count as errors or -it can be react- two Notes can produce positive results, I can finally mention that my first attempt to open msn mail (Hotmail) the first address of my attempt, machine opened my mail adress (logarithm table was memorized in primary school and I had to use this address for a long time because I did not have time when opened it and I had to use it for a long time because I gave it to the a office) in another country is a result of the control structures that can be developed.


\n Do not try to find application area of Matlab program. When you want to start, remember the phrase in Star Wars "a long, long time ago" , follow the traffic rules when crossing the street ... do not put pets in your mouth ...What will happen after you start matlab: you will start creating matrices for yourself out of nowhere.You will begin to be able to replace sentences, not phrases. You will have a different perspective from those who turn to other programming languages. What else do I see... in three times ... I see three paths ... and three different... Anyway, back to our topic.


\n Beware, don't talk about matlab, especially to mathematicians. Have someone with you - whatever that means - as you begin your programming or training


Source: Matlab Yapay Zeka ve Mühendislik Uygulamaları 5. Baskı Prof Dr. Cemalettin KUBAT


Edit by: dudukadinshoppingdistrict@gmail.com


You can also send the articles to dudukadinshoppingdistrict@gmail.com that you deem important

Examples of Technological Chaos

- When a country goes to war, it means that all sectors in that country are disrupted. In the early 1970s, we learned that Turkey had entere...