Neler Yeni

Rastgele Anime Sözü Üreteci (Yazılım) 🧑‍💻

HmzaY

80+ Gold
Katılım
23 Temmuz 2022
Mesajlar
5,270
Dahası  
Reaksiyon skoru
2,313
Konum
Nazarick
İsim
Hamza Y
İlgilendiği Kategoriler
Little Bit Everything
İşte size Colab ile Kullanabileceğiniz Anime Sözü üreteci:

image.png

Mesaj otomatik birleştirildi:

 

Ekler

  • AnimeQuoteGenerator.rar
    1.2 KB · Hit: 50
Son düzenleme:

HmzaY

80+ Gold
Katılım
23 Temmuz 2022
Mesajlar
5,270
Dahası  
Reaksiyon skoru
2,313
Konum
Nazarick
İsim
Hamza Y
İlgilendiği Kategoriler
Little Bit Everything
  • Konu Sahibi Konu Sahibi
  • #2
Translate ekledim.
 

HmzaY

80+ Gold
Katılım
23 Temmuz 2022
Mesajlar
5,270
Dahası  
Reaksiyon skoru
2,313
Konum
Nazarick
İsim
Hamza Y
İlgilendiği Kategoriler
Little Bit Everything
  • Konu Sahibi Konu Sahibi
  • #3
 

Whattyu

80+ Bronze
Katılım
23 Mart 2020
Mesajlar
1,792
En İyi Cevap
2
Güzel olmuş bunu js'ye çevirip dc botuma eklerim
JavaScript:
const pandas = require("pandas");
const random = require("random");
const translate = require("translate");
const os = require("os");

// Clear the terminal screen
if (os.name === "nt") {
  os.system("cls");
} else {
  os.system("clear");
}

// Google Sheets ID
const SHEET_ID = "1xIgcG6shp1af0eggfUkI3QUycZ0v1233UEwnH6wiU8g";
// Google Sheets sheet name
const SHEET_NAME = "less-real_data";
// Google Sheets URL
const sheet_url = "https://docs.google.com/spreadsheets/d/1xIgcG6shp1af0eggfUkI3QUycZ0v1233UEwnH6wiU8g/edit#gid=2002820014";
// CSV URL
const url_1 = sheet_url.replace("/edit#gid=", "/export?format=csv&gid=");

// Load data from Google Sheets into a DataFrame
const df = pandas.read_csv(url_1);

// Skip the first row if A1 is blank
df = df.iloc[1:];

// Select a random index from the DataFrame
const random_index = random.randint(0, df.shape[0] - 1);
const random_row = df.iloc[random_index];

// Combine the anime name, character name, and quote into a string
const output = `${random_row["Anime"]} - ${random_row["Character"]}\n${random_row["Quote"]}`;

// Print the original output
console.log("Original Output:");
console.log(output);

// Translate the output to Turkish
const translator = new translate.Translator();
const translated_output = translator.translate(output, "tr");

// Print the translated output
console.log("-------------------------------------------------------");
console.log("Translated Output:");
console.log(translated_output);
 
Son düzenleme:

HmzaY

80+ Gold
Katılım
23 Temmuz 2022
Mesajlar
5,270
Dahası  
Reaksiyon skoru
2,313
Konum
Nazarick
İsim
Hamza Y
İlgilendiği Kategoriler
Little Bit Everything
  • Konu Sahibi Konu Sahibi
  • #5

Whattyu

80+ Bronze
Katılım
23 Mart 2020
Mesajlar
1,792
En İyi Cevap
2
Katılım
23 Mart 2020
Mesajlar
337
Dahası  
Reaksiyon skoru
112
İsim
Emirhan Erdem
konudan bağımsız bir şey soracağım, kendimce bir sesli alışveriş uygulaması yaptım ancak sadece local ağda kullanabiliyorum. bunu nasıl dış ağa aktarabilirim?
 

HmzaY

80+ Gold
Katılım
23 Temmuz 2022
Mesajlar
5,270
Dahası  
Reaksiyon skoru
2,313
Konum
Nazarick
İsim
Hamza Y
İlgilendiği Kategoriler
Little Bit Everything
  • Konu Sahibi Konu Sahibi
  • #8
konudan bağımsız bir şey soracağım, kendimce bir sesli alışveriş uygulaması yaptım ancak sadece local ağda kullanabiliyorum. bunu nasıl dış ağa aktarabilirim?
server kiralamanız lazım
 

Zechion

80+ Silver
Katılım
21 Şubat 2022
Mesajlar
3,443
konudan bağımsız bir şey soracağım, kendimce bir sesli alışveriş uygulaması yaptım ancak sadece local ağda kullanabiliyorum. bunu nasıl dış ağa aktarabilirim?
Server+domain alıp, dosyalarını server üzerine aktarman gerek. SQL bağlantısını falan güvenli şekilde kurdun mu ?
 
Top Bottom