#trinity-desktop < 2022/09/07 > |
| [02:10] | agneli has quit (Remote host closed the connection) |
| [02:10] | agneli has joined |
| [02:11] | agneli has quit (Remote host closed the connection) |
| [02:16] | agneli has joined |
| [02:31] | agneli has quit (Remote host closed the connection) |
| [02:32] | agneli has joined |
| [03:00] | agneli has quit (Remote host closed the connection) |
| [03:04] | agneli has joined |
| [03:09] | agneli has quit (Remote host closed the connection) |
| [03:10] | agneli has joined |
| [04:25] | agneli has quit (Remote host closed the connection) |
| [04:26] | agneli has joined |
| [04:28] | agneli has quit (Remote host closed the connection) |
| [04:32] | agneli has joined |
| [04:41] | smithjd_ has joined |
| [04:53] | micheleC has joined |
| [05:59] | smithjd_ has quit (Ping timeout: 260 seconds) |
| [06:47] | a-865 has quit (*.net *.split) |
| [06:47] | krushia has quit (*.net *.split) |
| [06:47] | luke-jr has quit (*.net *.split) |
| [06:47] | Xu_R has quit (*.net *.split) |
| [06:47] | RedW has quit (*.net *.split) |
| [06:47] | panzeroceania has quit (*.net *.split) |
| [06:50] | a-865 has joined |
| [06:50] | krushia has joined |
| [06:54] | panzeroceania_ has joined |
| [06:56] | a-865 has quit (*.net *.split) |
| [06:56] | krushia has quit (*.net *.split) |
| [06:58] | RedW has joined |
| [06:58] | Xu_R has joined |
| [06:58] | luke-jr has joined |
| [06:58] | a-865 has joined |
| [06:58] | krushia has joined |
| [07:09] | agneli: |
| [07:14] | agneli: thank you denk :) |
| [07:25] | brocashelm has quit (Quit: Leaving) |
| [07:38] | agneli: denk but how to get that on linux... I am not getting the core file at all, while a c program with division by 0 generates a very nice core file for me... |
| [07:47] | denk: try gcore -o <file> <pid> |
| [09:28] | SlavekB has quit (Quit: Kopete 0.12.7 : http://trinitydesktop.org) |
| [10:16] | SlavekB has joined |
| [12:50] | bobsmith has joined |
| [13:03] | bobsmith has quit (Ping timeout: 244 seconds) |
| [13:04] | bobsmith has joined |
| [13:12] | bobsmith has quit (Ping timeout: 268 seconds) |
| [13:12] | bobsmith has joined |
| [13:27] | agneli has quit (Remote host closed the connection) |
| [13:28] | agneli has joined |
| [13:28] | agneli has quit (Remote host closed the connection) |
| [13:33] | agneli has joined |
| [13:42] | bobsmith has quit (Ping timeout: 252 seconds) |
| [13:43] | bobsmith has joined |
| [13:48] | bobsmith: would it be possible to clone TDE and make changes from windows 10 using notepad++? i'll only be editing documentation |
| [13:50] | SlavekB: Git can be used on various platforms, so there is no problem with it. And Notepad++ is an very good tool, so there should be no unwanted damage. Indeed, using "git diff", it is possible to check whether the changes correspond to the intention. |
| [13:55] | bobsmith has quit (Ping timeout: 244 seconds) |
| [14:13] | agneli has quit (Remote host closed the connection) |
| [14:13] | agneli has joined |
| [14:21] | bobsmith has joined |
| [14:24] | micheleC has left (Kopete 0.12.7 : http://trinitydesktop.org) |
| [14:35] | bobsmith has quit (Quit: Konversation terminated!) |
| [14:35] | bobsmith has joined |
| [15:10] | bobsmith: i cloned the tdebase git module, but whenever running"git pull --rebase" I recieve an error " |
| [15:10] | bobsmith: error: cannot pull with rebase: You have unstaged changes. |
| [15:10] | bobsmith: error: please commit or stash them. |
| [15:13] | bobsmith: i dont believe i made any changes yet |
| [15:14] | SlavekB: First create a branch for your changes and make a commit. For example: |
| [15:14] | SlavekB: git checkout -b issue/288/update-ktip |
| [15:14] | SlavekB: git add --all |
| [15:14] | SlavekB: git commit -sS -m "Update outdated information in KTip. This resolves issue #288." |
| [15:15] | bobsmith: so i do that after i make the changes? |
| [15:16] | bobsmith: i was just focused on getting my git environment set up before doing anything |
| [15:16] | SlavekB: Message: "error: cannot pull with rebase: You have unstaged changes." means you already have some local changes. |
| [15:17] | SlavekB: you can use: "git status" to check your local changes |
| [15:19] | bobsmith: i checked at saw |
| [15:19] | bobsmith: i checked and saw* |
| [15:19] | bobsmith: "deleted: libkonq/SERVICEMENUS" |
| [15:21] | SlavekB: Which probably doesn't look like your intended change? |
| [15:21] | bobsmith: yeah, i didn't intend to touch konqueror |
| [15:23] | bobsmith: it's highlighted in the color red |
| [15:23] | SlavekB: If your local changes are unintended, you can use: git clean -dxff |
| [15:23] | SlavekB: ...and then: git pull --rebase |
| [15:25] | bobsmith: still saying i have unstaged changes |
| [15:27] | SlavekB: and git status say? |
| [15:29] | bobsmith98 has joined |
| [15:30] | bobsmith has quit (Ping timeout: 244 seconds) |
| [15:30] | bobsmith98: network was acting up, had to join on a different nick |
| [15:30] | bobsmith98: but git status comes back |
| [15:30] | bobsmith98: On branch issue/288/update-ktip |
| [15:30] | bobsmith98: Changes not staged for commit: |
| [15:30] | bobsmith98: (use "git add/rm <file>..." to update what will be committed) |
| [15:30] | bobsmith98: (use "git restore <file>..." to discard changes in working directory) |
| [15:30] | bobsmith98: deleted: libkonq/servicemenus/CMakeLists.txt |
| [15:30] | bobsmith98: deleted: libkonq/servicemenus/edit-as-root.desktop |
| [15:30] | bobsmith98: no changes added to commit (use "git add" and/or "git commit -a") |
| [15:30] | bobsmith98: (apologies for the large paste) |
| [15:31] | SlavekB: git reset --hard HEAD |
| [15:31] | SlavekB: git clean -dxff |
| [15:31] | SlavekB: git status |
| [15:32] | bobsmith98: so now we're back to "deleted: libkonq/SERVICEMENUS" |
| [15:33] | bobsmith98: it says git restore can discard changes, would that be of any help? |
| [15:34] | SlavekB: This gives the impression as if the file system had a problem with UPPER/ lower case letters :( |
| [15:34] | bobsmith98: windows 10 runs in NTFS, which I think famously does not distinguish capital from lowercase |
| [15:35] | bobsmith98: or maybe its CMD.exe that's causing the issue |
| [15:35] | bobsmith98: using powershell or bash could help maybe? |
| [15:45] | bobsmith has joined |
| [15:47] | bobsmith98 has quit (Ping timeout: 244 seconds) |
| [15:47] | bobsmith_ has joined |
| [15:49] | bobsmith has quit (Ping timeout: 244 seconds) |
| [15:52] | bobsmith_ has quit (Ping timeout: 244 seconds) |
| [15:59] | bobsmith has joined |
| [16:01] | agneli: denk: tde_greeter crashes... I need it to do a core dump on exit |
| [16:02] | agneli: i set the system accordingly |
| [16:02] | agneli: but apparenlty tdm changes my settings |
| [16:02] | agneli: there is no core dump :( |
| [16:02] | agneli: nowhere... |
| [16:03] | bobsmith: SlavekB, is there a way i can just get rid of the commit and the git directory i made as a whole? |
| [16:03] | bobsmith: i think im gonna dualboot windows 10 with a linux distro on here and do all of my development on linux |
| [16:06] | SlavekB: I suppose you haven't done the commit yet? |
| [16:06] | SlavekB: Only the git repository is still unclean. |
| [16:11] | bobsmith: i have not |
| [16:11] | bobsmith: or i believe i havent |
| [16:14] | bobsmith98 has joined |
| [16:15] | bobsmith has quit (Ping timeout: 244 seconds) |
| [16:18] | bobsmith has joined |
| [16:20] | bobsmith98 has quit (Ping timeout: 244 seconds) |
| [16:24] | bobsmith has quit (Ping timeout: 252 seconds) |
| [17:03] | denk: agneli: did you read tdelibs/DUBUG? |
| [17:04] | denk: agneli: https://paste.dilos.org/?c1b649024f4a2b71#hO0D+kiX7Sh3CCfazcJNITt1Sb5Px+q7mZ4li853+H8= |
| [17:10] | SlavekB has quit (Quit: TDE Kopete : https://trinitydesktop.org) |
| [17:13] | agneli: oh... :) |
| [17:13] | agneli: no I did not read in fact, thank you denk |
| [17:14] | denk: then once again: RTFM :) |
| [17:28] | agneli: as always... I admit I had no idea where to look |
| [17:29] | agneli: thank you denk again |
| [17:32] | denk: that is a question to your platform where to find core dumps |
| [17:33] | denk: we have a special tool to configure it (coreadm) |
| [17:35] | denk: https://illumos.org/man/8/coreadm |
| [17:35] | tde-bot: Page title: illumos: manual page: coreadm.8 |
| [18:19] | bobsmith has joined |
| [18:20] | bobsmith: SlavekB, found the issue XD |
| [18:20] | bobsmith: there was a folder missing from the tdebase/libkonq directory and git thought I deleted the files |
| [18:27] | bobsmith: I used the git GUI to revert the changes |
| [18:31] | bobsmith: also, anyone know the exact date that #trinity-desktop moved to libera? |
| [18:42] | denk: at 19.05.2021 my log closed on freenode |
| [18:45] | bobsmith: thanks! will update tips file |
| [18:48] | bobsmith: how should the date be put in? |
| [18:49] | SlavekB has joined |
| [19:00] | bobsmith has quit (Ping timeout: 244 seconds) |
| [19:03] | bobsmith has joined |
| [19:11] | bobsmith: i see a tip referencing KsCD, a "Internet CD database freedb" |
| [19:12] | bobsmith: do we even have a program in the TDE applications suite called KsCD? |
| [19:12] | SlavekB: KsCD is part of tdemultimedia. |
| [19:12] | bobsmith: ah i see, thanks for letting me know |
| [19:15] | smithjd_ has joined |
| [19:18] | bobsmith: is it ok if i fill the "Contributed by" field in with my username? would prefer to leave that over my real name |
| [19:19] | bobsmith: (forgot to mention, this is for a tip) |
| [19:32] | smithjd_ has quit (Ping timeout: 260 seconds) |
| [19:38] | bobsmith98 has joined |
| [19:40] | bobsmith has quit (Ping timeout: 244 seconds) |
| [19:55] | bobsmith has joined |
| [19:55] | bobsmith98 has quit (Ping timeout: 244 seconds) |
| [19:59] | bobsmith98 has joined |
| [20:00] | bobsmith98 has quit (Read error: Connection reset by peer) |
| [20:01] | bobsmith has quit (Ping timeout: 244 seconds) |
| [20:53] | smithjd_ has joined |
| [21:01] | smithjd_ has quit (Ping timeout: 260 seconds) |
| [21:10] | brocashelm has joined |
| [21:22] | smithjd_ has joined |
| [21:53] | smithjd_ has quit (Ping timeout: 260 seconds) |
| [21:58] | bobsmith has joined |
| [23:00] | bobsmith has quit (Ping timeout: 244 seconds) |
#trinity-desktop < 2022/09/07 > |