Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
gif-sallamadim
Advanced tools
const Discord = require('discord.js')
const client = new Discord.Client()
const gif = require('gif-sallamadim')
const prefix = "!"
client.on("message", async(message) => {
const args = message.content.slice(prefix.length).trim().split(' ');
if(message.content.startsWith(prefix+"mangif")){
message.channel.send(gif.mangif())
//Random man gif olarak geri dönüyor.
}
if(message.content.startsWith(prefix+"womangif")){
message.channel.send(gif.womangif())
//Random woman gif olarak geri dönüyor.
}
if(message.content.startsWith(prefix+"random")){
const secim = args[0]
if(secim) return;
if(secim !== "gif" || secim !== "pp") return;
//Eğer random pp veya gif attırmak istiyorsanız bunu kullanmalısınız.
const a = gif.random(secim) //Burda ki secim bir opsiyon yani seçenek.
//Eğer gif veya pp den başka seçim yaparsa hata verecektir.
//Eğer seçimimiz gif ise, random 1 gif olarak geri döner.
//Ama eğer seçimimiz pp ise, random 1 pp olarak geri döner.
message.channel.send(a)
}
})
FAQs
Sallamadim Gif Modulu
We found that gif-sallamadim demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.