=== jhodapp is now known as jhodapp|afk === chihchun is now known as chihchun_afk === chihchun_afk is now known as chihchun [09:21] good morning [09:48] DanChapman, are we going to support sendmail and imapsendmail as outgoing options [09:48] ? [09:48] DanChapman, and goodmorning :) [09:59] gcollura: atm i have no idea thats probably a question for jkt. although after reading this http://trojita.flaska.net/draft-imap-sendmail-00.html i think its something we should try and provide [10:00] ok DanChapman the part where you save and load settings is going to be done soon, I'll upload the code so you can complete your part [10:01] the sending part needs a bit more work because I don't know how to pass certain values [10:16] gcollura: great thanks for letting me know [10:50] DanChapman, [10:50] https://github.com/gcollura/trojita/tree/ubuntu-touch [10:51] tell me if there are some problems in reading/writing settings and I'll fix them for you [10:59] DanChapman, we wrote the settings page push the code somewhere so I can use it for my tests :) I don't want to write one :p [11:05] gcollura: awesome thanks, yep will let you know once it's working ok [11:06] DanChapman, ok perfect, thanks [12:00] What is the best channel to ask newbie ubuntu sdk questions? [12:00] You know; for someone not familiar with cmake. [12:00] akiva-mobile: I guess this one. ;) [12:01] nikwen, huh... You have been warned :) [12:04] I pulled the unity8 branch, and had it running yesterday. When I booted up today, and tried to build and run it, it is saying : No executable specified. [12:04] I am trying to read qt documentation; one thing I do not understand, is whether cmakelists is auto generated, or do I have to manually muck around with it? [12:05] I don't know if its the type of code I should be putting my hands on. [12:43] huh... I'll probably have to reinstall ubuntu or something; maybe then this issue will go away [12:44] Start from scratch [12:58] avika-mobile: CMakeLists.txt is not auto-generated. It's the file where developers specify how the project is built. [12:59] Maybe delete the sources and download them again. [13:06] nikwen, Probably a good idea. Someone else found my question on Ask Ubuntu, said they were suffering from the same issue, and reported a bug [13:07] akiva-mobile: Good luck. ;) [13:08] nikwen, It will be called the fellowship of the ring [13:08] ty [13:08] * akiva-mobile heads off to Moredoor [13:45] nikwen, http://pastebin.ubuntu.com/7174098/ Tried what you suggested. I removed everything, rebuilt it, spick and spam [13:45] any ideas? [13:48] akiva-mobile: Do you have g++ installed? [13:48] sec; maybe I got cache or soemthing mucking it up. [13:48] nikwen, humm yah, unless something hiccupped [13:48] brb [13:48] going to try all that [13:52] nikwen, yah g++ is installed [13:52] and still no luck [13:52] here is the thing; this worked like two days ago [13:57] Have you tried the first answer on this site? http://stackoverflow.com/questions/14807294/how-to-install-cmake-c-compiler-and-cxx-compiler [13:57] (It's not actually about installing.) [14:00] akiva-mobile: What problem do you encounter? [14:01] BadDesign: He posted this link with his errors while compiling Unity8: http://pastebin.ubuntu.com/7174098/ [14:02] BadDesign, I honestly think it is the woes of having upgraded this system from 13.04, then 13.10, and to 14.04. I'm going to do a fresh install tomorrow [14:02] how can that be? [14:02] how are you running this? [14:02] running what? [14:03] that pastebin seems incomplete [14:03] akiva-mobile: How are you running CMake? Is there a CMakeLists.txt file that sets CMAKE_CXX_COMPILER ? or do you set it explicitly when you run CMake? [14:04] BadDesign, I think everything is default. I have little experience with Cmake. [14:04] akiva-mobile: Are you using CMake from repositories? [14:05] BadDesign, yah [14:05] akiva-mobile: And you're telling me that while I am upgrading to 14.04. ^^ [14:06] nikwen, well it worked the first day [14:06] and then when I restarted, it would not work anymore [14:06] :P [14:06] Strange... [14:09] I blame Ghosts [14:28] akiva-mobile: Open a fresh terminal, and paste the ouput of 1) whereis gcc 2) whereis g++ 3) whereis cmake 4) g++ -v 5) cmake --version . Are you starting cmake from the root of the project ? Did you read the README of the particular project you're trying to compile for any defines/flags you might need to set before running cmake ? [14:29] akiva-mobile: or do you have a build dir ? and start cmake from it ? [14:31] BadDesign, Well first its unity8; that is the project I am trying to make. I followed the guide by ubuntu initially, but ended up having issues. Instead, I just went to qtcreator and used its bazaar import feature [14:31] i.e. cd myproject; [ ! -d build ] && mkdir build; pushd build; cmake -DCMAKE_BUILD_TYPE=Debug ..; make -j8 target [14:32] akiva-mobile: You could try to clean the build directory maybe some CMakeCache.txt files got in there that are incorrect [14:33] as CMake doesn't have a clean command you have to delete them manually [14:33] BadDesign, I completely removed them then tried a reinstall [14:33] or at least, I did a rm -rf of the build directory and the project directory [14:34] do you think that should have been enough? [14:35] akiva-mobile: rm-ing the contents of build dir should be enough [14:35] http://pastebin.ubuntu.com/7174385/ [14:35] what does make -j8 target do? [14:37] BadDesign, Actually the best advice I think would be to direct me to an addequate cmakes tutorial or documentation. I don't need to know everything, but I just don't want to have people hold my hand through the process. [14:37] akiva-mobile: it runs make after the Makefile has been created by cmake [14:38] akiva-mobile: try setting CC and CXX vars or the other methods listed here https://stackoverflow.com/questions/15291978/cmake-and-default-compilers/15292233#15292233 [14:38] export CC=`which gcc` [14:38] export CXX=`which g++` [14:38] and after that cmake .. [14:39] BadDesign, in the parent cmakelists.txt? [14:39] akiva-mobile: no, in the shell you're running cmake from [14:39] akiva-mobile: you could set them also in the cmakelists.txt if you want [14:40] BadDesign, up until now, I have been using qtcreator to do this. [14:40] akiva-mobile: so you run cmake from qt creator, then you need to tell qt creator wizard about the defines [14:41] -DCMAKE_C_COMPILER=/usr/bin/gcc -DCMAKE_CXX_COMPILER=/usr/bin/g++ -DCMAKE_BUILD_TYPE [14:41] inside the textbox on that wizard [14:41] -DCMAKE_C_COMPILER=/usr/bin/gcc -DCMAKE_CXX_COMPILER=/usr/bin/g++ -DCMAKE_BUILD_TYPE=Debug [14:41] BadDesign, one thing I am wondering; is this usually neccessary for people trying to edit unity8? [14:42] akiva-mobile: I think you don't have the environment configured correctly inside qt creator, i.e. the kit [14:42] akiva-mobile: not sure, haven't compiled unity myself [14:44] truly a cmakes guru. okay [14:44] the onyl reason you'd want to build unity8 on ubuntu is to develop for it [14:44] ^ [14:44] that is what I want to do :) Definitely a learning process. [14:45] akiva-mobile: Regarding the -j8 option. It advices make to use 8 cores. I usually use -j16 as it is much faster, even though my CPU has only 4 cores. [14:45] nikwen, oh thanks [14:46] nikwen: not true, if you specify to many jobs than you have cores , more jobs are waiting for one another and in the end it'll be more slower [14:46] what the? why is ubuntu SDK not showing itself installed? [14:47] BadDesign: Ok, that's true, but for me -j16 is the fastest. [14:47] I doubt it, but I guess we have to measure [14:47] ... this is strange... [14:47] akiva-mobile: Have you installed it as described here? http://developer.ubuntu.com/apps/sdk/tutorials/installing-the-sdk/ [14:48] nikwen, I had it installed via the repos in 13.10 [14:48] and did an upgrade [14:48] distro upgrade* [14:48] i'm just looking at it in synaptic atm... [14:49] and yet it says it is installed in the ubuntu software center o_o [14:50] Oh, the recommended way is to install it from the custom repo which you can find on developer.ubuntu.com. [14:50] akiva-mobile: What does dpkg -l ubuntu-sdk say? [14:51] BadDesign, hmmm no there are two versions apparently, but the official one does not show up in synaptic [14:51] sec [14:51] And a great explanation of the -j command: http://stackoverflow.com/questions/4802164/why-does-make-j-perform-better-when-it-is-passed-a-number-larger-than-the-numbe [14:52] akiva-mobile: PPAs are disabled when you update the distribution. Did you enable it again? [14:52] everything, but I just don't want to have people hold my hand through the process. [14:52] < [14:52] bah sorry [14:52] akiva@Akiva-ThinkPad:~$ dpkg -l ubuntu-sdk [14:52] Desired=Unknown/Install/Remove/Purge/Hold [14:52] | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend [14:52] |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) [14:52] ||/ Name Version Architecture Description [14:52] +++-===============================-====================-====================-==================================================================== [14:52] un ubuntu-sdk (no description available) [14:53] bah I shouldnt flood [14:53] Desired=Unknown/Install/Remove/Purge/Hold [14:53] | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend [14:53] |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) [14:53] ||/ Name Version Architecture Description [14:53] +++-===============================-====================-====================-==================================================================== [14:53] un ubuntu-sdk (no description available) [14:53] Ok, I gotta leave now. My system's going to update to 14.04. :) [14:54] nikwen, gl :P [14:54] akiva-mobile: dpkg -s ubuntu-sdk ? [14:54] you might want to use paste.ubuntu.com akiva-mobile [14:54] Thanks. :D [14:54] (please) [14:54] BadDesign, yep [14:54] popey, sorry [14:55] I assume 'un' means uninstalled? [14:55] http://pastebin.ubuntu.com/7174466/ [14:55] BadDesign, I think it might because there are two identical packages in the repos [14:58] BadDesign, maybe I'll file a bug report or something. Either way I am reinstalling; My ubuntu could really use it. [14:58] BadDesign, thanks for the help [15:01] popey, what do you think of this new design? http://i.imgur.com/NkjQI5K.png [15:02] oooh [15:02] sorry, got to go, hungry [15:02] ☻ [15:02] ahaha :) [15:02] i like it [15:03] thanks, suggestions? [15:05] I'll let you know once I play with it. [15:05] but I do like the idea of browsing by pictures, like the gallery app, and shorts [15:06] popey, I've also made from scratch the ConditionalLayouts [15:07] I want to design a new database management, the problem is that I will probably end up with incompatibility with the older version [15:09] the way I manage recipes, categories and other stuff is really insane and slow [15:13] gcollura: needs a database migration then for existing users? [15:14] popey, if I redesign the db, I will try to provide a migration process if possible [15:17] hi popey [15:17] hi [15:18] can you test a page on the phone browser for me ? [15:18] sure [15:18] popey: http://bit.ly/1dXKjxX [15:19] there is two lists on this page, try to scroll each one [15:19] nothing scrolls [15:20] it highligts where my finger touches, but as i swipe nothing scrolls [15:20] hmm ok thanks [15:23] gcollura, beautiful :) [15:23] thanks akiva-mobile [15:23] The red is very royal [15:24] a good warm aesthetic, perfect for looking up food :) [15:24] :) === mhall119|offline is now known as mhall119 === chihchun is now known as chihchun_afk === chihchun_afk is now known as chihchun === gcollura is now known as gcollura|afk === chihchun is now known as chihchun_afk [22:13] QM ListView display only 1 row ( if covered in Column and row ) | http://askubuntu.com/q/440877