Re: [Trisquel-users] p2p networks supported on trisquel? and p2p encrypted chat supported on trisquel?

2017-05-26 Thread silver

None broken package is there in custom filter broken..

Thank you



[Trisquel-users] Re : p2p networks supported on trisquel? and p2p encrypted chat supported on trisquel?

2017-05-26 Thread lcerf
Lauch Synaptic from the "System Settings" or with the 'synaptic-pkexec' (no  
'sudo') command, click on the "Custom Filters" button in the lower-left  
corner of the window and then on "Broken" (above).  The broken packages will  
be listed.  There should be none.  Try to uninstall them for example (and to  
reinstall them later).


[Trisquel-users] Re : How I could install latest version of jitsi for trisquel?

2017-05-26 Thread lcerf

Jitsi Meet is different from Jitsi.


Re: [Trisquel-users] p2p networks supported on trisquel? and p2p encrypted chat supported on trisquel?

2017-05-26 Thread silver

hi

I didnt have any authentification error.. but I still have error.. fix broken  
package first..could not apply changes.


I noticed this error message as well. ** (synaptic:28256): WARNING **:  
Couldn't connect to accessibility bus: Failed to connect to socket  
/tmp/dbus-APtBDtO5W5: Connection refused

 when I enter sudo synaptic..

It looks like I cannot authentificate  from system gui menu..password is  
always wrong..but I can from command line sudo synaptic.


i got this error too but when I hit refresh a second time, these errors don't  
appear again:

Could not download all repository indexes

The repository may no longer be available or could not be contacted because  
of network problems. If available an older version of the failed index will  
be used. Otherwise the repository will be ignored. Check your network  
connection and ensure the repository address in the preferences is correct..



E: Unable to correct problems, you have held broken packages.
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by  
held packages.

E: Unable to correct dependencies
E: Unable to lock the list directory


Thank you




Re: [Trisquel-users] Ethical Javascript Reference

2017-05-26 Thread Adonay Felipe Nogueira
Sometimes it can be tricky because the web site developer or owner
*doesn't even understand the HTML specification* he uses for a given
page.

For example, I remember seeing some web site developers saying that
assignments to event handlers (/e.g./: onload, onfocus, onscroll,
onclick, oninput, onplay, onsubmit) aren't considered JavaScript code.

So of course LibreJS will probably block JS similar to this:

# Begin of HTML page
About
# End of HTML page

I said "similar" because this example might actually pass, it depends on
how trivial this script is for LibreJS. "Real-life usage" of event
handlers to do URI mapping are twice as more complex than this one.

Once a web site owner or developer writes the page so as to make use of
such event handlers in the HTML tags, then *the whole HTML page* has to
have a JS license comment in the head of the document, inside the very
first lone script tag.

And of curse, we can't discard the possibility of having bugs on GNU
LibreJS, because software is human creation, and since humans aren't
perfect, neither their creations are.

-- 
- [[https://libreplanet.org/wiki/User:Adfeno]]
- Palestrante e consultor sobre /software/ livre (não confundir com
  gratis).
- "WhatsApp"? Ele não é livre, por isso não uso. Iguais a ele prefiro
  GNU Ring, ou Tox. Quer outras formas de contato? Adicione o vCard
  que está no endereço acima aos teus contatos.
- Pretende me enviar arquivos .doc, .ppt, .cdr, ou .mp3? OK, eu
  aceito, mas não repasso. Entrego apenas em formatos favoráveis ao
  /software/ livre. Favor entrar em contato em caso de dúvida.


Re: [Trisquel-users] New Trisquel 8 alpha images

2017-05-26 Thread calmstorm

LXQT is supposedly almost as lightweight as LXDE. in my experience anyways.

just because LX has a QT part instead of GTK doesn't mean it uses anywhere  
near as much resources as kde. just sayin...


[Trisquel-users] What place does Javascript have with web browsers? Hopefully very limited.

2017-05-26 Thread J.B. Nicholson

onp...@riseup.net wrote:

I don't think any client-side use of JavaScript code for Web pages is
currently acceptable due to the way browsers behave. I wrote about that here:

https://onpon4.github.io/other/kill-js/


I'm convinced of the same points -- there is no practical means to leverage 
the freedoms of free software for browser-based Javascript (JS) in any 
browser, not even free software browsers right now.


I react by not running any JS and avoiding websites that require JS 
whenever possible.


This limits what I can do on the web, to be sure, but it also means the 
latest insecurities, monitoring systems, and other malware delivered via 
websites are less likely to affect my system.


If one is designing a website it's very important that the site:

- host resources (fonts, graphics, movies, documents, etc.) locally, not 
refer to resources on other sites whenever possible.


- host everything behind https, and redirect http to the same request via 
https.


- use form submission to accept input and HTML+CSS to do markup and style 
(CSS, as far as I know, isn't capable of executing anything client-side, so 
it's safer to do animations and other stylistic changes in CSS instead of JS).


I'm all for running a browser in a restricted environment so no browser 
code can eat up too much CPU time, memory, can't read/write anything 
(including browser-maintained state) outside a specific directory I set up 
so I can control what the JS has access to. But that's not easy to set up 
and that's not the default setup for most OSes.


Such a setup is not what ordinary users using default configurations with 
free software browsers get. Right now this is pretty leading-edge stuff 
being done with some OSes (perhaps Joanna Rutkowska's Qubes OS, which I 
understand to be a GNU/Linux system, can do this?). There is much to be 
done addressing real-world problems with this approach, but this approach 
has some promising results.


[Trisquel-users] Re : p2p networks supported on trisquel? and p2p encrypted chat supported on trisquel?

2017-05-26 Thread pinmaritim

This may be in relation with the fact that you intsalled Jitsi
https://trisquel.info/fr/forum/how-i-could-install-latest-version-jitsi-trisquel#comment-115524

if after installing  apt-transport-https the error persist check that there  
is no error in your /etc/apt/sources.list

no "or ' on the Jitsi repositary






[Trisquel-users] Re : How I could install latest version of jitsi for trisquel?

2017-05-26 Thread pinmaritim

try in a terminal

 $ sudo apt-get install apt-transport-https

then

 $ sudo apt-get update && sudo apt-get upgrade

finish

 $ sudo apt-get -y install jitsi




Re: [Trisquel-users] Ethical Javascript Reference

2017-05-26 Thread mcz
Oh, true, I thought it (kind of), but this has to be explicit. Thanks for the  
info :)


Re: [Trisquel-users] Ethical Javascript Reference

2017-05-26 Thread onpon4
I don't think any client-side use of JavaScript code for Web pages is  
currently acceptable due to the way browsers behave. I wrote about that here:


https://onpon4.github.io/other/kill-js/


Re: [Trisquel-users] p2p networks supported on trisquel? and p2p encrypted chat supported on trisquel?

2017-05-26 Thread silver

Hi

I tried install qtox from synaptic and error i got:   you are about to  
install sofware that can be authenticated.. and It stops installation there


How could I resolve this?

Thank you


Re: [Trisquel-users] How I could install latest version of jitsi for trisquel?

2017-05-26 Thread silver
After I tried.. I got this error: The method driver  
/usr/lib/apt/methods/https could not be found.


Could you tell me how I resolve this error and access to jitsi repository  
with right commaand line


Thank you



[Trisquel-users] Re : may I ask questions about replicant 6 here?

2017-05-26 Thread pinmaritim

Yes, Replicant has a Forum
https://redmine.replicant.us/projects/replicant/boards


[Trisquel-users] may I ask questions about replicant 6 here?

2017-05-26 Thread svhaab
Because many here are focused about implications about privacy and  
surveillance and telling if software is libre software, I would want to ask  
questions about replicant here.


Are their recommended forums? Replicant's forum? What about apps? Would that  
be f droid's forum?
Thank you.   


Re: [Trisquel-users] Ethical Javascript Reference

2017-05-26 Thread tirifto
Not really; as far as I know, JavaScript programs are still programs like any  
other, so in order for them to be free software, they must be properly  
released under a free license. Usually you can find a comment about the  
license if you look at the script, which can be free, but could also be  
proprietary.


Re: [Trisquel-users] Ethical Javascript Reference

2017-05-26 Thread tirifto
There is a guide on how to properly license JavaScript scripts here:  
http://www.gnu.org/software/librejs/free-your-javascript.html


Indeed this has been written to be compatible with the LibreJS add-on, but  
the methods described there also allow one to easily see what the license is  
by looking at the script itself, so you might as well follow that rather than  
other types of formatting (which may still count as free licensing, but  
probably won't be readable by LibreJS).


Note that LibreJS itself doesn't work very well, even if you follow the  
guidelines precisely, but the guidelines themselves seem good to me and will  
be useful if they fix LibreJS or someone decides to write a similar program  
from scratch.


Re: [Trisquel-users] Ethical Javascript Reference

2017-05-26 Thread shiretoko

Just properly license your files as free software.


Re: [Trisquel-users] How I could install latest version of jitsi for trisquel?

2017-05-26 Thread mcz
For xmpp accounts:  
http://www.hacker10.com/computer-security/the-best-xmppjabber-servers-for-anonymous-chat/


Re: [Trisquel-users] Ethical Javascript Reference

2017-05-26 Thread mcz

Isn't it simply about publishing sources/keep them readable (not minified) ?


[Trisquel-users] Ethical Javascript Reference

2017-05-26 Thread davidpgil

Is there some type of reference on writing ethical Javascript?

I found this: https://www.gnu.org/software/librejs/manual/librejs.html

But it seems to just be about a browser plugin.


[Trisquel-users] Re : How I could install latest version of jitsi for trisquel?

2017-05-26 Thread pinmaritim

https://github.com/jitsi/jitsi-meet/blob/master/doc/quick-install.md


Re: [Trisquel-users] How I could install latest version of jitsi for trisquel?

2017-05-26 Thread toni . schultheis
Or you can add the jitsi-repository  
(https://jitsi.org/Main/DebianRepository):


install the Jitsi repository key onto your system

 wget -qO - https://download.jitsi.org/jitsi-key.gpg.key | sudo apt-key add -

create sources.list.d file with the repository

 sudo sh -c "echo 'deb https://download.jitsi.org stable/' >  
/etc/apt/sources.list.d/jitsi-stable.list"


update your package list

 sudo apt-get -y update

install Jitsi

 sudo apt-get -y install jitsi




Re: [Trisquel-users] Mission impossible: Family privacy

2017-05-26 Thread mcz

That's absolutely not what I said...

"They", if it's those bavarian dudes (including Goethe, awesome fellow),  
planned to do rather positive things (the OPPOSITE of NWO). Plus they don't  
exist anymore since a long time ago.


Frome there, "they", to you, are some supposedly real life people (or  
reptilians, while we're at it...) who planned to trick us with human rights  
while being assholes at the same time: Monsanto, Microsoft, damage our  
rights...
Wait, first they provide rights, including the right to bring wrong things  
into light, then they damage those rights?

If some sick people planned to do so, they're doing it the wrong way.

Then you say "They" lie to us, and "they" want to control all the world.
Can you be more generic and meaningless than that? I doubt it. Maybe have  
some proof? Or at least reasoning that makes sense?


Removing 2/3 of humans with vaccines in schools and wars in middle easts? WTF  
is wrong with you?

First, we live longer than our ancestors, vaccines or not.
Second, we have less wars than ever in human history (I think, gotta confirm  
that). Still, even if having current wars going on is wrong, if you think  
this would remove 2/3 of humanity, you're doing math wrong.

Death is still death, but the point is what you're saying makes no sense.
https://en.wikipedia.org/wiki/List_of_wars_by_death_toll
https://en.wikipedia.org/wiki/List_of_ongoing_military_conflicts

Even if what you said made sense, how being against human rights help?
Even if it's a trick, it's good stuff. As far as I know, being pro-human  
rights doesn't make people be pro Monsanto, pro-war and pro Microsoft (well  
the latter is more an ignorance or convenience thing).


[Trisquel-users] Re : How I could install latest version of jitsi for trisquel?

2017-05-26 Thread pinmaritim

Hi lynn

Try this
Open you Synaptic Package Manager

Install a graphical application called

gui-apt-key
then you import the pgp Jitsi key
https://download.jitsi.org/jitsi-key.gpg.key

Update your system with Synaptic then proceed to reinstall with GDebi








Re: [Trisquel-users] How I could install latest version of jitsi for trisquel?

2017-05-26 Thread silver
Hi I got this error  dpkg: dependency problems prevent configuration of  
jitsi:

 jitsi depends on jitsi-archive-keyring; however:
  Package jitsi-archive-keyring is not installed.

What I should do to resolve it

Thank you