Bobinas P4G
  • Login
  • Public

    • Public
    • Groups
    • Popular
    • People

Notices by Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca (bobjonkmanformer@sn.jonkman.ca), page 24

  1. Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca (bobjonkmanformer@sn.jonkman.ca)'s status on Tuesday, 25-Apr-2017 04:04:38 UTC Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca
    When all you have is a hammer, everything ends up flat and squashed.
    In conversation Tuesday, 25-Apr-2017 04:04:38 UTC from sn.jonkman.ca permalink
  2. Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca (bobjonkmanformer@sn.jonkman.ca)'s status on Tuesday, 25-Apr-2017 03:43:11 UTC Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca
    • David Hunt
    • Ginny McQueen 🌻
    @DaveHunt@2mb.social @GinnyMcQueen@mastodon.social I never understood #WebRings
    In conversation Tuesday, 25-Apr-2017 03:43:11 UTC from sn.jonkman.ca permalink
  3. Nonunsenses (nonunsenses@social.tchncs.de)'s status on Wednesday, 19-Apr-2017 12:35:29 UTC Nonunsenses Nonunsenses

    LIFEHACK:

    1. Take a nap.

    In conversation Wednesday, 19-Apr-2017 12:35:29 UTC from social.tchncs.de permalink Repeated by bobjonkmanformer
  4. Zorak (zorak@social.ilikefreedom.ro)'s status on Sunday, 23-Apr-2017 16:53:57 UTC Zorak Zorak
    The story of how #SSH got port number 22 https://www.ssh.com/ssh/port
    In conversation Sunday, 23-Apr-2017 16:53:57 UTC from social.ilikefreedom.ro permalink Repeated by bobjonkmanformer

    Attachments


  5. Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca (bobjonkmanformer@sn.jonkman.ca)'s status on Sunday, 23-Apr-2017 21:51:25 UTC Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca
    • LibrePlanet
    Tomorrow at 9:00pm EDT: !LibrePlanet #Ontario online meeting with #Mumble: https://libreplanet.org/wiki/Group:LibrePlanet_Ontario#Next_Meeting
    In conversation Sunday, 23-Apr-2017 21:51:25 UTC from sn.jonkman.ca permalink

    Attachments


  6. ニコラス (nicolasmaia@quitter.se)'s status on Sunday, 23-Apr-2017 18:31:25 UTC ニコラス ニコラス
    • Vegan
    o ok

    https://i.redd.it/on19azj66bty.jpg !vegan #vegan
    In conversation Sunday, 23-Apr-2017 18:31:25 UTC from quitter.se permalink Repeated by bobjonkmanformer

    Attachments


    1. https://i.redd.it/on19azj66bty.jpg
  7. Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca (bobjonkmanformer@sn.jonkman.ca)'s status on Sunday, 23-Apr-2017 21:12:42 UTC Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca
    • Jabber and XMPP related group
    • VoIP - Voice over Internet Protocol
    • Waterloo Region Awesome
    â™» @KWVoIP: !VOIP Meeting in !WRAwesome: All about !XMPP, and introducing @JMP_chat, Thursday, 27 April at the #EggRollKing http://kwvoip.ca
    In conversation Sunday, 23-Apr-2017 21:12:42 UTC from sn.jonkman.ca permalink

    Attachments


  8. Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca (bobjonkmanformer@sn.jonkman.ca)'s status on Sunday, 23-Apr-2017 17:07:46 UTC Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca
    • GNU Social
    • HallÃ¥ Kitteh
    Is anyone collecting all these disparate #OStatus and !GNUsocial documentation items in one location? Is there one location available for collecting all these things?
    In conversation Sunday, 23-Apr-2017 17:07:46 UTC from sn.jonkman.ca permalink
  9. Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca (bobjonkmanformer@sn.jonkman.ca)'s status on Sunday, 23-Apr-2017 03:40:46 UTC Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca
    • lost
    • Temporary Marjolein
    • Jon Kulp
    !Lost: @mk and @kulprit #IsThereAnybodyOutThere?
    In conversation Sunday, 23-Apr-2017 03:40:46 UTC from sn.jonkman.ca permalink
  10. rocky1138 (rocky1138@kwat.chat)'s status on Sunday, 23-Apr-2017 02:44:37 UTC rocky1138 rocky1138
    I spent some time this weekend following up on why this the KW Hackers GNU Social instance was so slow. I made several tweaks which I found around the Internet. I'll start from biggest impact to lowest impact.

    0) Enable php5-fpm's "slow log" in `/etc/php5/fpm/pool.d/www.conf`. This lets one see exactly which scripts are taking a long time to execute. In my case, it was the OStatus GNU Social plugin, which I disabled quickly thereafter.
    Source: http://steam.io/2014/03/17/troubleshooting-slow-loading-pages-in-php-fpm/

    1) Tweak php5-fpm worker configs for lower-memory servers by adjusting several settings in `/etc/php5/fpm/pool.d/www.conf ` as follows.
    ```
    pm = ondemand
    pm.max_children = 6
    pm.start_servers = 2
    pm.min_spare_servers = 2
    pm.max_spare_servers = 4
    ```

    2) Add caching in GNU Social's `config.php` file as follows
    ```
    $config['performance']['high'] = true;
    $config['attachments']['file_quota'] = 50000000;
    $config['queue']['enabled'] = true;
    $config['queue']['subsystem'] = 'db';
    $config['queue']['daemon'] = true;

    addPlugin('DiskCache');
    addPlugin('InProcessCache');

    unset($config['plugins']['default']['OpportunisticQM']);
    unset($config['plugins']['core']['Cronish']);

    // Uncomment below for better performance. Just remember you must run
    // php scripts/checkschema.php whenever your enabled plugins change!
    $config['db']['schemacheck'] = 'script';
    ```
    In conversation Sunday, 23-Apr-2017 02:44:37 UTC from kwat.chat permalink Repeated by bobjonkmanformer

    Attachments


  11. Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca (bobjonkmanformer@sn.jonkman.ca)'s status on Sunday, 23-Apr-2017 03:25:23 UTC Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca
    • Debian
    The 18th annual DebConf will take place in Montreal, Canada from August 6 to August 12, 2017. https://debconf17.debconf.org/ It will be preceded by DebCamp, July 31st to August 4th, and Open Day, August 5th. https://debconf17.debconf.org/schedule/open-day/ !Debian
    In conversation Sunday, 23-Apr-2017 03:25:23 UTC from sn.jonkman.ca permalink

    Attachments



  12. Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca (bobjonkmanformer@sn.jonkman.ca)'s status on Sunday, 23-Apr-2017 02:46:50 UTC Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca
    • Food
    Went out last night for a gourmet dinner at a local chef's farm; come home to fresh loaves of bread baked by #OneSon. All gone now. #OmNomNom !food
    In conversation Sunday, 23-Apr-2017 02:46:50 UTC from sn.jonkman.ca permalink
  13. Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca (bobjonkmanformer@sn.jonkman.ca)'s status on Sunday, 23-Apr-2017 02:16:23 UTC Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca
    • Science Fiction
    • Lohan G
    ♻ indojin: If you're into sci-fi audio drama, then check out 'Wolf 359' and 'The Strange Case of Starship Iris'. The former will end this season while the latter is only 6 episodes into its epic voyage. ¶ !SciFi
    In conversation Sunday, 23-Apr-2017 02:16:23 UTC from sn.jonkman.ca permalink
  14. Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca (bobjonkmanformer@sn.jonkman.ca)'s status on Sunday, 23-Apr-2017 01:24:12 UTC Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca
    • alpacaherder
    Funny, 91.1FM is the local jazz station I often listen to: https://jazz.fm/
    In conversation Sunday, 23-Apr-2017 01:24:12 UTC from sn.jonkman.ca permalink

    Attachments


  15. Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca (bobjonkmanformer@sn.jonkman.ca)'s status on Sunday, 23-Apr-2017 00:01:13 UTC Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca
    in reply to
    • Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca
    The income gap between people in low income and people with higher incomes in Waterloo Region is widening. I've read elsewhere that there's an eight-fold difference -- the lowest 10% earn less than $20,000, the top 10% earn more than $160,000, and that's individual incomes, not family incomes.
    In conversation Sunday, 23-Apr-2017 00:01:13 UTC from sn.jonkman.ca permalink
  16. Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca (bobjonkmanformer@sn.jonkman.ca)'s status on Saturday, 22-Apr-2017 23:43:07 UTC Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca
    in reply to
    • Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca
    Median family income in Waterloo Region, at $74,000 in 2006, was 7% higher than the Provincial median http://www.regionofwaterloo.ca/en/regionalGovernment/resources/waterlooregionprofile.pdf (PDF, 806 kBytes)
    In conversation Saturday, 22-Apr-2017 23:43:07 UTC from sn.jonkman.ca permalink

    Attachments


  17. Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca (bobjonkmanformer@sn.jonkman.ca)'s status on Saturday, 22-Apr-2017 23:40:11 UTC Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca
    in reply to
    • Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca
    Median income for a "cultural employee" (artist) in Waterloo Region was $40,000 in 2005, but this is declining by about $500/year http://www.regionofwaterloo.ca/en/regionalGovernment/resources/waterlooregionprofile.pdf (PDF, 806 kBytes)
    In conversation Saturday, 22-Apr-2017 23:40:11 UTC from sn.jonkman.ca permalink

    Attachments


  18. ShiPoClu (moonbot@gs.archae.me)'s status on Saturday, 22-Apr-2017 20:45:24 UTC ShiPoClu ShiPoClu
    GNUSocial and Mastodon are implementations of a protocol called OStatus, and so are ineroperable, but do not share any code.
    In conversation Saturday, 22-Apr-2017 20:45:24 UTC from gs.archae.me permalink Repeated by bobjonkmanformer
  19. Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca (bobjonkmanformer@sn.jonkman.ca)'s status on Saturday, 22-Apr-2017 21:58:46 UTC Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca
    • alpacaherder
    In Waterloo Region the Low Income Cut Off (LICO, eg. the poverty line) was $20,064 CAD in 2011. About 48,000 people in Waterloo region (10%) earned less than LICO; about 16,000 of those were employed full-time. http://communityservices.regionofwaterloo.ca/en/communityPlanningPartnerships/resources/MythBustersAugust262013.pdf (4 MByte PDF)
    In conversation Saturday, 22-Apr-2017 21:58:46 UTC from sn.jonkman.ca permalink

    Attachments


  20. Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca (bobjonkmanformer@sn.jonkman.ca)'s status on Saturday, 22-Apr-2017 21:49:14 UTC Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca
    • Canada
    • Copyright
    • LinuxWalt (@lnxw48a1) {3EB165E0-5BB1-45D2-9E7D-93B31821F864}
    !Canada got anti- #DRM (or #TPM - Technological Protection Measures) in the last update to our !copyright law http://laws-lois.justice.gc.ca/eng/acts/c-42/page-19.html#h-54
    In conversation Saturday, 22-Apr-2017 21:49:14 UTC from sn.jonkman.ca permalink

    Attachments


  • After
  • Before

User actions

    Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca

    Former Bob Jonkman -- Please use the new server at https://gs.jonkman.ca

    Elmira, Ontario, Canada

    https://gs.jonkman.ca/bobjonkman

    Don't use this account! Subscribe to me at https://gs.jonkman.ca/bobjonkman/

    Tags
    • (None)
    WebSub
    Pending

    Following 1

    • ziggys

    Followers 1

    • ziggys

    Groups 0

      Statistics

      User ID
      333
      Member since
      30 Jul 2016
      Notices
      769
      Daily average
      0

      Feeds

      • Atom
      • Help
      • About
      • FAQ
      • Privacy
      • Source
      • Version
      • Contact

      Bobinas P4G is a social network. It runs on GNU social, version 2.0.1-beta0, available under the GNU Affero General Public License.

      Creative Commons Attribution 3.0 All Bobinas P4G content and data are available under the Creative Commons Attribution 3.0 license.