Skip to content

Instantly share code, notes, and snippets.

View Aniketh01's full-sized avatar
๐Ÿ‡ช๐Ÿ‡ธ
Learning how to do research

Aniketh Girish Aniketh01

๐Ÿ‡ช๐Ÿ‡ธ
Learning how to do research
View GitHub Profile
For VLC configure to detect QUIC and HTTP3 libraries
Openssl
./config enable-tls1_3 --prefix=/home/devbox/devel/quic_research/build_openssl
make -j$(nproc)
make install_sw
nghttp3
root = "/tmp/ctrd/var/lib/containerd"
state = "/tmp/ctrd/run/containerd"
oom_score = 0
[grpc]
address = "/tmp/ctrd/run/containerd/containerd.sock"
uid = 502
gid = 0
max_recv_message_size = 0
max_send_message_size = 0
<aniketh___> Aniketh Girish Also, there is a bug in the resource manager, https://bugs.kde.org/show_bug.cgi?id=359854
5:27 PM got any work around to fix this thing?
5:27 PM The delete machanism is actually working, but the bundles duplicated due to this bug is causing an issue
5:27 PM S<scottyp_mobile> Scott petrovic Is that the resource manager? How do you edit a brush there
5:28 PM A preset is just a brush, not a bundle
5:28 PM A<aniketh___> Aniketh Girish I think the reporter might have mentioned about bundles I guess
5:28 PM or I send you the wrong bug report link
5:28 PM let me check
5:29 PM S<scottyp_mobile> Scott petrovic I don't see the word bundle in that report
5:29 PM A<aniketh___> Aniketh Girish yeah!
<aniketh___> Aniketh Girish leinir: Ping
2:48 PM โ‡ Matombo quit ([email protected]) Ping timeout: 268 seconds
2:48 PM L<leinir> aniketh___: pong :)
2:49 PM A<aniketh___> Aniketh Girish leinir: Yeah :) So you where saying something about the project? I would love some clarity :)
2:50 PM L<leinir> Right! So, i'm guessing you've run across all those buttons scattered around KDE software that says things like "Get New Wallpapers" or that sort of thing?
2:50 PM A<aniketh___> Aniketh Girish yup :)
2:50 PM L<leinir> brilliant, makes it much easier to explain things ;)
2:51 PM A<aniketh___> Aniketh Girish heh :)
2:51 PM โ†’ Bollebib_Tablet joined ([email protected])
2:52 PM L<leinir> Those buttons, and the accompanying dialogues, are what is now in the KNewStuff3 library, but as of last autumn, we also have two others, one called KNewStuffQuick which is Qt Quick and likely not so relevant to what you're doing, and the one which /is/ relevant called KNewStuffCore
void ContentCreation::uploadFile()
{
doUpload(QString(), ui.uploadFile->url().toLocalFile());
}
void ContentDownload::download()
{
qDebug() << "download";
QTreeWidgetItem* selectedItem = ui.contentList->currentItem();
if (selectedItem && qVariantCanConvert<Content>(selectedItem->data(0, Qt::UserRole))) {
Content c = qvariant_cast<Content>(selectedItem->data(0, Qt::UserRole));
ItemJob<DownloadItem>* job = m_provider.downloadLink(c.id());
connect(job, SIGNAL(finished(Attica::BaseJob*)), SLOT(downloadLinkLoaded(Attica::BaseJob*)));
job->start();
}
void ContentDownload::download()
{
qDebug() << "download";
QTreeWidgetItem* selectedItem = ui.contentList->currentItem();
if (selectedItem && qVariantCanConvert<Content>(selectedItem->data(0, Qt::UserRole))) {
Content c = qvariant_cast<Content>(selectedItem->data(0, Qt::UserRole));
ItemJob<DownloadItem>* job = m_provider.downloadLink(c.id());
connect(job, SIGNAL(finished(Attica::BaseJob*)), SLOT(downloadLinkLoaded(Attica::BaseJob*)));
job->start();
}