[05:28] hi, is there any good archive programs (with a frontend) that can open lha (and other amiga archives). Tried the one that comes with mate and also installed file-roller, both crash when trying to open a lha file [05:34] never heard of that type of archive [05:35] maybe ask on the forums [05:42] te_lanus: what's the output of: file /path/to/your.lha [05:43] file-roller supposedly supports lha archives [05:43] But maybe the amiga version is a modified one, not the regular one [05:44] alkisg, whd183.lha: LHa (2.x) archive data [lh5] [05:46] te_lanus: run engrampa whd183.lha from the command line, do you see any error messages or does it just crash? [05:47] Segmentation fault (core dumped) [05:47] same happen with file-roller [05:49] te_lanus: sudo apt install lhasa [05:49] Then try again [05:49] Also try from the command line: unp whd183.lha [05:50] (sudo apt install unp if you don't have it installed) [05:50] lhasa was already installed [05:51] unp helped [05:51] It's possible that the lha is malformed, so engrampa/file-roller choke with it [05:52] ...or that engrampa chokes with the output of lhasa and needs a bug report there === apessoa is now known as Guest17104 === stanley is now known as Guest36146 [08:59] has anyone tried ubuntu-mate on Rasp Pi? [09:02] Lots of people. Many lots, I think. [09:05] As an education platform, there are a couple of things missing from the default image that I'd love to see included, but as a general-purpose, low-powered desktop it is surprisingly sprightly [09:05] I think it's a huge improvement on Raspbian [09:06] really? I want to try it this weekend. did you have any problems accessing hardware devices like the pi-camera? [09:07] Guest36146: I've not tried to pi camera with it, sorry :( [09:07] no worries. === stanley is now known as Guest95321 === ken is now known as Guest75549 === pavlushka_ is now known as Guest58639 === Guest58639 is now known as pavlushka [15:28] hola [15:28] hay alguien ahi ?? [16:56] hello [17:02] hello [17:05] hello [17:57] I have an issue with my bluetooth speaker. Is this the right place? [20:16] hello [20:18] just installed linux ubuntu mate 16.04 I like the old school gnome2 type interface [20:21] anyone recommends a good programming application for python 3 for learning purposes ? and is this distribution good for programming in general ? [20:25] aryell, Programming application? do you mean to code in? like the text editor? [20:26] something that i hear would have code completion, for commands, something a bit more then what i've seen in idle [20:26] aryell, Cause I like visual studio code. Its not as "Free" as a lot of popular options though [20:27] open source is my preference [20:27] aryell, I think it is open source actually [20:28] aryell, I'm just not sure what license its under [20:29] aryell, aside from that, If you want a custom solution you can spend a few years tricking out emacs [20:30] aryell, oh, vscode is under MIT liscence, thats nice [20:30] do you recommend anything from the official repositories that will work out of the box, but with a few setting changes here and there ? [20:31] I'm starting from the ground up here and linux I've read is a good environment for this kind of stuff [20:32] I can work some basic stuff with the terminal, but the python3 part I will study that on my own [20:32] i just need a better tool than your run of the mill text editor [20:32] aryell, for emacs or vscode? And I'm pretty new to linux too and I was scepticle of the claim that its better for devs but I fully believe that now [20:33] vscode is visual studio ? like the stuff for games ? [20:34] I'll google emacs and check that out too right now [20:34] aryell, vscode is not visual studio, it is not a full ide. It is closer to a better notepad++ [20:34] hey aryell [20:35] yes ? [20:35] aryell, I'm not gonna stop you from using emacs or vim. But please avoid them if you are trying to learn programming at the same time. They are complicated and archaic [20:36] I;ve done a quick search and stumbled on something called geany [20:38] I have some books that i got recently on python3 and from the contents talks even about eventualy building a gui, that sounds like something cool, but for now i just need to focus on terminal type application programming, so something that tells me were in the code there is an error would be nice. [20:39] aryell, Never used it. Seems to have a following though. Uh, when you are running the code it will throw any errors to the command line normally, no ide or editor will catch logic errors though [20:40] full professional like complicated ide sounds a bit much for now, so just a intermidiet interface would be nice :) [20:40] ok, good to know [20:41] aryell, Yeah, it seems a bit heavy for what you want. For pure text editors Vim and nano could work, but you probably want to use the mouse [20:42] do you personally have a preference, in case you code of course [20:42] aryell, I use VSCode personally. I learned the vim hotkeys and use a plugin for VSCode that decently emulates them. [20:44] aryell, while you are learning though I think the only real mistakes you could make would be choosing something too complicated (i.e. a full ide or emacs or vim). I actually recomend Geany [20:44] aryell, or vscode [20:44] aryell, oops, NOT Geany. I meant GEDIT [20:45] what about eric , it says it is open source and has integrated qt witch is mention a great deal in the python3 book i will follow allong with [20:46] although the more i search on the internet there is something called pip that installs allot of addons that i would need down the line [20:46] aryell, Never heard of it before now but it looks super complicated and feature rich which honestly is bad for your situation. [20:47] ok gedit then [20:47] aryell, Also I think you are missing the idea of one of the reasons linux is good for dev. You can download whatever dependencies you need for your project in one line in the terminal. [20:47] but the text editor in mate 16.04 is called pluma, is there a difference ? or it;s just rebranding ? [20:48] yeah pip from what i understand so far is for that purpose no ? [20:49] pip install (insert package here) [20:49] aryell, Oops, they are different things yes. Pluma will work fine also though [20:50] aryell, and both pip is for python specific librarys and stuff, but if you wanted to download gedit or a code profiler or something its still just one line in the terminal [20:51] should i install gedit or should stay with pluma, or better yet i will try a print command, cause that at least a now from my basic on HC 90 back in the day [20:51] ok, understood [20:52] aryell, I just looked it up and they are the same thing just with different package librarys. Remember that you can switch at any time [20:53] tried that print command and it works [20:53] :) [20:54] but i have to manually type python3 test.py in terminal, but at least it works [20:55] thank you very much [20:55] aryell, You don't like that? well remember that you can hit the up arrow to access the last inputted command [20:55] aryell, so if you are testing it many times you can just hit up enter [20:55] aryell, And remember tab completion [20:56] aryell, no problem [20:56] yeah i know that from the windows command prompt i think MS-DOS 6.22 on my old 486 had that feature or i could be mistaken [20:58] tab completion is that thing that you have to insert tabs in the structure of the code to make it logical for the compiler ? from what i heard in the past c++ did not care, but python you say does ... ok [21:00] now i am basically ready, I've got my coffee and my editor and my book it time for some study time... :p [21:00] aryell, Nope, tab completion is you just hit tab after you've typed the first part of the command or filename into the commandline and it will automatically type the rest for you [21:01] will try eric or some other advanced ide later on when I;ve mastered the basics with text programs [21:01] ok ... [21:01] aryell, So if you have a file in your current directory called ardvark, you just need to hit a then it types out ardvark for you [21:02] aryell, You'll find its like 90% thinking 10% typing anyway [21:03] when i type t in downloads and tap tab once nothing happens [21:04] but when i type twice [21:04] aryell, what do you mean by type t in downloads? [21:04] it give me a list all the commands or applications that start with t [21:04] i dont think it matters what directory i'm in [21:05] aryell, no it does, you need to have a program to apply on the file [21:05] aryell, so if you type cat then t it will auto complete [21:05] t double tap (tab key) and poof allot of what i can see are programs or commands one of them is transmission [21:06] aa [21:06] cat [21:06] aryell, your program has to be interpreted by python, so you have to type python3 then t [21:06] got it [21:06] aryell, basically spam tab [21:07] cat t then test.py appears [21:07] thanks for the tip this is handy [21:07] aryell, I hated using the command line until I learned about that [21:08] I've used other distros before and some terminal, but usually when i need something like this i just used the history of the commands ... like up and down arrows in terminal for very often used commands [21:09] usually stucked with debian based because i;m so use to apt-get [21:10] and from what i've seen on wikipedia at least debian and debian based are the most popular [21:10] btw [21:10] do use now ubuntu mate 16.04 ? [21:10] or another flavor [21:11] I'm asking, and i hope it;s not a stupid question, because hexchat seems to be some of a standard in chat applications on linux [21:11] aryell, I'm honestly new to linux in general and I've only used mate. You can switch desktop environments at will [21:12] aryell, Its just an irc thingy. You can even use this same chat room from the command line if you wanted too [21:13] I now, but I've tried to install before a second environment and and it is not that fun, because useually you have to be carefull about libraries and if you get just the core environment or the full one with apps [21:14] I've installed once the full feature kde over gnome3 and it was kind of a pain to remove kde (because i dont exactly like it) it's to overcrowded with stuff and heavy on resources [21:15] i had to do a clean reinstall to get clean linux os again [21:15] aryell, I haven't messed with it much to be honest. I just chose a theme I liked in mate. No offence but there is no way you had to do a full reinstall to get rid of a DE [21:15] maybe i was going at at it the wrong way but that's in the past [21:16] it was back when i was very new to linux [21:16] aryell, my experience with trying i3 was running sudo apt install i3, logging out, choosing it before I logged back in and then regretting trying i3 [21:17] now i;m a novice nearing apprentice level [21:17] but i still got to search for help on the net for the bug fixing and more exoteric stuff [21:18] what's i3 ? [21:18] aryell, Its a minimal tiling window manager [21:19] aryell, Its faster to look at pictures but basically you don't minimize windows, if you have one window open its full screen and if you have two windows open they each take up half of the screen [21:19] and you could not choose at logon wich DE you wanted ? [21:19] usually when you do not have autologin you can do that [21:19] aryell, No I could, I logged out and chose mate again. I never actually bothered to uninstall it [21:19] sounds like windows 2.0 :p [21:21] before version 3 they the windows could not overlap for copyright reasons with xerox i believe [21:21] or probably looked like the ancient norton commander on MS-DOS [21:24] sorry, I get nostalgic sometimes, when remember the "olden days" of computing, hihi :) [21:25] aryell, Its fine, I've gotta go though. Good luck [21:25] ok [21:25] goodbye [21:36] hello again eveyone [21:37] anyone from Romania here ? [21:46] !ro | aryell [21:46] aryell: Daca doriti ajutor sau doriti sa discutati despre Ubuntu/Kubuntu/Xubuntu, intrati pe #ubuntu-ro [22:37] Hi, is it possible to open the applications tab, by pressing the windows key? [23:38] you mean switch between windows ? [23:39] alt+tab [23:39] windows key does not do anything on its own in mate ubuntu 16.04 [23:40] possibly it needs to be combined with another key probably a letter [23:40] try to to open the welcome application and check keyboard shortcuts for mate [23:41] >>message logical