Celogeek

Results 52 comments of Celogeek

In fact the override doesn't work anymore. We have the original admin that doesn't allow the multi selection. Can you check ?

I have a question about this minPackSize option. If I have a repository with the default value of 4 and I want to switch to a higher value of 32....

When you check the configuration, the repository is the default. But if you create the package.json, then the .npmrc is take in account. So to make it work, you need...

I use the https://github.com/jitsi/jitsi-meet-debian-meta: ``` ==> jicofo jitsi-meet-web jitsi-videobridge

Ok nice. I will try it when you release it. I hold on the nightly on jicofo 700 on arch linux for now. the removal of the component is a...

I use the jitsi-meet-debian-meta repo to group update together. I fetch the debian package then repack them for Arch Linux. I can skip some version or apply temp fix if...

I've test the latest version. I check what changes in the debian installer and I spot an error: The jicofo.conf look like this with the defaut installation (fresh nightly one...

I endup using Raw mode: ``` func (u *URL) Create(tx *gorm.DB) error { return tx.Raw(` INSERT INTO urls ( url, sha1, created_at ) VALUES( ?, ?, NOW() ) ON DUPLICATE...

Hi, I replace the method "freespace_percentage" by: ``` def freespace_percentage(srcmounts): lfsp = [] total_fs = 0 for srcmount in srcmounts: vfs = os.statvfs(srcmount) avail = vfs.f_bavail * vfs.f_frsize total_fs +=...