Jonkman Microblog
  • Login
Show Navigation
  • Public

    • Public
    • Network
    • Groups
    • Popular
    • People

Notices by Diogo Cordeiro (diogo@loadaverage.org), page 6

  1. Diogo Cordeiro (diogo@loadaverage.org)'s status on Friday, 12-Jul-2019 14:30:53 EDT Diogo Cordeiro Diogo Cordeiro
    • Thunder Beaver
    I hope you have a lot of fun with GNU social :)
    In conversation Friday, 12-Jul-2019 14:30:53 EDT from loadaverage.org permalink
  2. Diogo Cordeiro (diogo@loadaverage.org)'s status on Friday, 12-Jul-2019 14:30:02 EDT Diogo Cordeiro Diogo Cordeiro
    • Dewoo Alt
    • tenma
    Olá @dwaltiz
    I believe it should be @tenma answering that this time :)
    In conversation Friday, 12-Jul-2019 14:30:02 EDT from loadaverage.org permalink
  3. Diogo Cordeiro (diogo@loadaverage.org)'s status on Sunday, 07-Jul-2019 16:28:39 EDT Diogo Cordeiro Diogo Cordeiro
    • DalmeGNU
    Those are indeed sad news :/
    We are working the fastest we can to add ActivityPub support in GNU social and some other interesting news!
    In conversation Sunday, 07-Jul-2019 16:28:39 EDT from loadaverage.org permalink
  4. Diogo Cordeiro (diogo@loadaverage.org)'s status on Thursday, 27-Jun-2019 13:12:38 EDT Diogo Cordeiro Diogo Cordeiro
    This is quite awesome: https://castel.dev/post/lecture-notes-1/
    In conversation Thursday, 27-Jun-2019 13:12:38 EDT from loadaverage.org permalink

    Attachments

    1. File without filename could not get a thumbnail source.
      How I'm able to take notes in mathematics lectures using LaTeX and Vim
      A while back I an­swered a ques­tion on Quora: Can peo­ple ac­tu­al­ly keep up with note-taking in Math­e­mat­ics lec­tures with LaTeX. There, I ex­plained my…
  5. Diogo Cordeiro (diogo@loadaverage.org)'s status on Wednesday, 26-Jun-2019 13:09:19 EDT Diogo Cordeiro Diogo Cordeiro
    • kim
    Reading online I've verified that the use of JavaScript in bootstrap is not mandatory and that it is compatible with librejs.

    I should stress anyway that in GNU social it is important to keep JS as an optional resource for increased usability and not as a requirement, in the spirit of https://anybrowser.org/campaign/abdesign2.html#section_javascript .

    Happy hacking and good vacation! :)
    In conversation Wednesday, 26-Jun-2019 13:09:19 EDT from loadaverage.org permalink
  6. Diogo Cordeiro (diogo@loadaverage.org)'s status on Wednesday, 26-Jun-2019 12:43:40 EDT Diogo Cordeiro Diogo Cordeiro
    • kim
    It looks good! :) I suppose that the double switches for Fancy URLs and Server SSL wasn't intended? x)

    Do you have the related code hosted somewhere?
    In conversation Wednesday, 26-Jun-2019 12:43:40 EDT from loadaverage.org permalink
  7. Diogo Cordeiro (diogo@loadaverage.org)'s status on Wednesday, 26-Jun-2019 11:52:10 EDT Diogo Cordeiro Diogo Cordeiro
    in reply to
    • MMN-o ✅⃠
    • kim
    The difference between GNU social and CMSs like Joomla is that, in GNU social, we follow the Unix-philosophy of small programs to do a small job seriously.

    That is, GS has a structure in which themes are only intended to change the common appearance and, therefore, changing the CSS should be enough.

    Often, themes in CMSs like Joomla allow to add functionality, which should only be done via plugins (at least in GS's case). The concept of themes with embedded PHP wasn't new back when GS was first written. I believe it wasn't applied on purpose because of the above mentioned reasons.

    Therefore, I think the existing structure is good and powerful.

    With plugins you can add functionality and the associated styling. Take your translation plugin as an example. You were able to add a visual component (a Translate button to each notice), specific javascript and, you could have added specific CSS too (maybe by presenting an icon in the translate button instead of the text 'Translate').

    The HTML visual components that are inherent to GS, i.e. not added by plugins, can be edited, as you've said, by directly modifying the core. And, although the existing elements are likely fine, we should consider to start making use of HTML5's new tags.

    cc: Maybe you have some further insight to add @MMN-o ?

    > we need to edit the document object adding classes and more elements

    So, bearing this in mind, maybe those new elements could be added with plugins instead? As this allows every theme to take advantage of them and not only a specific one. What do you think?
    In conversation Wednesday, 26-Jun-2019 11:52:10 EDT from loadaverage.org permalink
  8. Diogo Cordeiro (diogo@loadaverage.org)'s status on Wednesday, 26-Jun-2019 05:10:59 EDT Diogo Cordeiro Diogo Cordeiro
    • Diogo
    another test, I can see https://loadaverage.org/attachment/5419148
    In conversation Wednesday, 26-Jun-2019 05:10:59 EDT from loadaverage.org permalink
  9. gudenau (gudenau@mastodon.technology)'s status on Friday, 21-Jun-2019 00:13:44 EDT gudenau gudenau
    • gudenau
    • Beep Boop が :logo: :MexChen:

    @dirb @Loki This is what a real toaster is like. https://youtu.be/1OfxlSG6q5Y

    In conversation Friday, 21-Jun-2019 00:13:44 EDT from mastodon.technology permalink Repeated by diogo

    Attachments

    1. The Antique Toaster that's Better than Yours
      By Technology Connections from YouTube
  10. Diogo Cordeiro (diogo@loadaverage.org)'s status on Thursday, 20-Jun-2019 19:41:42 EDT Diogo Cordeiro Diogo Cordeiro
    in reply to
    • Diogo Cordeiro
    You have the list of available events here: https://notabug.org/diogo/gnu-social/src/nightly/DOCUMENTATION/DEVELOPERS/EVENTS.txt
    In conversation Thursday, 20-Jun-2019 19:41:42 EDT from loadaverage.org permalink

    Attachments

    1. diogo/gnu-social
      GNU social is a social communication software used in federated social networks. It is widely supported and has a large userbase. It is already used by the Free Software Foundation.
  11. Diogo Cordeiro (diogo@loadaverage.org)'s status on Thursday, 20-Jun-2019 19:40:59 EDT Diogo Cordeiro Diogo Cordeiro
    in reply to
    • kim
    I guess you are looking for the `StartShowNoticeItem` event...

    Maybe something like:

    function onStartShowNoticeItem($item)
    {
    $url = common_local_url('YandexTranslate', ['id' => $item->notice->id]);
    $item->out->element('a', ['href' => $url, 'class' => 'YandexTranslate', 'title' => 'Translate this dent to my language.'], 'Translate this dent to my language.');
    return true;
    }
    In conversation Thursday, 20-Jun-2019 19:40:59 EDT from loadaverage.org permalink
  12. Diogo Cordeiro (diogo@loadaverage.org)'s status on Wednesday, 19-Jun-2019 18:51:04 EDT Diogo Cordeiro Diogo Cordeiro
    • Antón
    Well, if you're interested in economically supporting my efforts in GS, I have a paypal account (my_first_name@fc.up.pt) - where my_first_name = diogo

    I guess it would be better if I could point a bitcoin address or so, but I don't really know how those work and as so I don't have one. I also don't have a patreon or liberapay account.

    Thanks for your interest! :)
    In conversation Wednesday, 19-Jun-2019 18:51:04 EDT from loadaverage.org permalink
  13. Diogo Cordeiro (diogo@loadaverage.org)'s status on Wednesday, 19-Jun-2019 11:49:17 EDT Diogo Cordeiro Diogo Cordeiro
    • Ingoberlab
    Unfortunately the news related to XMPP aren't that huge...

    > Improved XMPP support
    Just really means that the support of the XMPP protocol was improved. There are no new functionalities just yet (but there is this open RFC: https://notabug.org/diogo/gnu-social/issues/21 ).

    Key changes are:

    XMPPHP library modernization: https://notabug.org/diogo/gnu-social/commit/3290227b50582ed29790f0bb10210362ca2f4093

    XMPP Plugin faulty regex bug fix: https://notabug.org/diogo/gnu-social/commit/e0887220b0ac97a7abce1e70652c6727c16cfe3d
    In conversation Wednesday, 19-Jun-2019 11:49:17 EDT from loadaverage.org permalink

    Attachments

    1. diogo/gnu-social
      GNU social is a social communication software used in federated social networks. It is widely supported and has a large userbase. It is already used by the Free Software Foundation.
    2. diogo/gnu-social
      GNU social is a social communication software used in federated social networks. It is widely supported and has a large userbase. It is already used by the Free Software Foundation.
    3. diogo/gnu-social
      GNU social is a social communication software used in federated social networks. It is widely supported and has a large userbase. It is already used by the Free Software Foundation.
  14. Diogo Cordeiro (diogo@loadaverage.org)'s status on Tuesday, 18-Jun-2019 21:53:01 EDT Diogo Cordeiro Diogo Cordeiro
    in reply to
    • Colegota El Villano
    Just to ensure that we don't forget about this, can you open an issue in the repository? We are a bit busy with other parts of the code right now...
    In conversation Tuesday, 18-Jun-2019 21:53:01 EDT from loadaverage.org permalink
  • After
  • Before
  • Help
  • About
  • FAQ
  • TOS
  • Privacy
  • Source
  • Version
  • Contact

Jonkman Microblog is a social network, courtesy of SOBAC Microcomputer Services. It runs on GNU social, version 1.2.0-beta5, available under the GNU Affero General Public License.

Creative Commons Attribution 3.0 All Jonkman Microblog content and data are available under the Creative Commons Attribution 3.0 license.

Switch to desktop site layout.