1132 links
  • linx
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
  • ► Play Videos
Links per page: 20 50 100
◄Older
page 2 / 57
Newer►
  • thumbnail
    unicode - How can I output UTF-8 from Perl? - Stack Overflow

    use utf8; does not enable Unicode output - it enables you to type Unicode in your program. Add this to the program, before your print() statement:

    binmode(STDOUT, ":utf8");

    See if that helps. That should make STDOUT output in UTF-8 instead of ordinary ASCII.

    December 3, 2020 at 4:27:26 PM UTC - permalink -
    QRCode
    - https://stackoverflow.com/a/627672/954777
    output perl print utf8
  • thumbnail
    find - How to move the files based on Year - Unix & Linux Stack Exchange

    You want to use the -newermt option for find:

    find /media/WD/backup/osool/olddata/ -newermt 20120101 -not -newermt 20130101

    to get all the files with modification time in 2012.

    December 1, 2020 at 6:04:05 PM UTC - permalink -
    QRCode
    - https://unix.stackexchange.com/questions/73268/how-to-move-the-files-based-on-year
    bash cli files find recursive unix
  • XXIIVV — Noton is a livedrawing playground.

    Noton works by drawing cables between timers, logic gates and instruments inspired from pepepépepe's Color Computers to explore binary logic.

    Right-click to add nodes, and left-click to add wires. Nodes will emit a positive signal if all the connected wires have the same polarity. The screen has timers to the left, and notes to the right. The default timers are 6 trackers, 4 sequencers and 2 pools.

    November 30, 2020 at 8:44:26 PM UTC - permalink -
    QRCode
    - https://wiki.xxiivv.com/site/noton.html
    binary computer instrument live live-coding logic music playground
  • SAPHIR VPC diamant et cellule hi-fi
    November 27, 2020 at 11:20:56 PM UTC - permalink -
    QRCode
    - https://saphirvpc.com/
    cellule diamant hi-fi saphir saphir-vpc vinyl
  • DIAMANT-HiFi : Vente de Diamants, Saphirs et Cellules hi-fi - Diamants et saphirs HiFi
    November 27, 2020 at 11:20:00 PM UTC * - permalink -
    QRCode
    - http://www.diamant-hifi.com
    cellule diamant hi-fi saphir vinyl
  • Géocoder un fichier CSV | adresse.data.gouv.fr

    Le site officiel de l'Adresse

    November 25, 2020 at 9:48:58 AM UTC * - permalink -
    QRCode
    - https://adresse.data.gouv.fr/csv
    csv geocoding map open-data
  • Mastodon Help - Guide

    Mastodon is an innovative open-source and self-hostable microblogging platform similar to Twitter or Tumblr. Its development was started in 2016 by Eugen Rochko and since then Mastodon constantly attracted new users and communities looking for a social environment independent from big company logics and censorship.

    Mastodon is not a Twitter clone: by concept, structure and functionalities it is something completely different and much more interesting!

    This page is an introduction to Mastodon’s basic concepts and features which you should know to fully understand how Mastodon works. It is structured in independent sections which you can jump to from the Index (see the link in the upper-left side), but it can also be read as a single text.

    The site also hosts an Instances search engine that you can use to find the Mastodon instance that best fits your needs.

    November 15, 2020 at 7:29:09 PM UTC - permalink -
    QRCode
    - https://mastodon.help/
    101 help instances mastodon
  • thumbnail
    nebbia.fail - NEBBIA
    November 15, 2020 at 7:28:08 PM UTC * - permalink -
    QRCode
    - https://nebbia.fail/about
    anarchy bida-im instances italy mastodon
  • thumbnail
    How to reset your dokuwiki password · GitHub

    If you've lost your password and can't recover it via email but have access to the doku file system, you're still good.

    Open up conf/user.auth.php and replace the password of your user with 21232f297a57a5a743894a0e4a801fc3, that will make the password be admin.

    November 9, 2020 at 2:03:59 PM UTC - permalink -
    QRCode
    - https://gist.github.com/Zbee/38ff6eb7b35ffe54ffac
    dokuwiki hash password recovery
  • France GeoJSON

    Contours des régions, départements, arrondissements, cantons et communes de France (métropole et départements d'outre-mer) au format GeoJSON

    October 28, 2020 at 3:41:22 PM UTC * - permalink -
    QRCode
    - https://france-geojson.gregoiredavid.fr/
    departement fr france geo geojson open-data region
  • thumbnail
    france-geojson:

    Contours des régions, départements, arrondissements, cantons et communes de France (métropole et départements d'outre-mer) au format GeoJSON

    October 28, 2020 at 3:39:42 PM UTC * - permalink -
    QRCode
    - https://github.com/gregoiredavid/france-geojson
    departement fr france geo geojson open-data region
  • thumbnail
    iso-3166-1-fr-FR représentation
    October 28, 2020 at 3:38:07 PM UTC - permalink -
    QRCode
    - https://github.com/inwebo/iso-3166-1-fr-FR
    countries fr geo iso-3166
  • Semiphemeral - Automatically delete your old tweets, except for the ones you want to keep

    Semiphemeral protects your privacy by making it easy for you to automatically delete years of old tweets while giving you control over exactly which tweets you want to make sure you keep.
    For example, you can set it to automatically delete tweets that are older than 30 days unless they have at least 20 retweets or at least 20 likes (all these numbers are configurable). You can also:

    Keep all tweets that are part of the same thread as a tweet that meets those RT and like thresholds

    Search through all of your tweets and pick which ones to exclude from automatic deletion, so that Semiphemeral will never delete them

    Unretweet tweets after a number of days

    Unlike tweets after a number of days

    Automatically delete your old direct messages

    October 23, 2020 at 6:10:22 AM UTC - permalink -
    QRCode
    - https://semiphemeral.com/
    forget privacy twitter
  • ORCΛ

    Orca is an esoteric programming language designed by @hundredrabbits to create procedural sequencers.

    This playground lets you use Orca and its companion app Pilot directly in the browser and allows you to publish your creations by sharing their URL.

    October 21, 2020 at 2:45:11 PM UTC - permalink -
    QRCode
    - https://orca.wtf/
    orca procedural sequencer synth
  • Enumerating all attributes of a Moo object
    package Foo {
      use Moo;
      has a => (is => "ro");
      has b => (is => "ro");
    }
    
    my $bar = Foo->new(a => 42);
    
    # Print only 'a'
    say $_ for keys %{ $bar }
    
    # Print all attributes
    say $_ for keys( %{
       'Moo'->_constructor_maker_for('Foo')->all_attribute_specs
    });
    October 19, 2020 at 7:41:08 PM UTC - permalink -
    QRCode
    - https://www.perlmonks.org/?node_id=1043195
    attributes introspection meta moo oop perl
  • SortableJS

    JavaScript library for reorderable drag-and-drop lists

    October 19, 2020 at 7:39:39 PM UTC * - permalink -
    QRCode
    - https://sortablejs.github.io/sortablejs/
    drag-and-drop javascript js-ecosystem list sort ui
  • thumbnail
    dragula - Browser drag-and-drop so simple it hurts
    October 19, 2020 at 7:36:41 PM UTC * - permalink -
    QRCode
    - https://bevacqua.github.io/dragula/
    drag-and-drop javascript js-ecosystem list sort ui
  • thumbnail
    Draggable JS – JavaScript drag and drop library
    October 18, 2020 at 8:02:17 PM UTC * - permalink -
    QRCode
    - https://shopify.github.io/draggable/
    drag-and-drop javascript js-ecosystem list sort ui
  • Stow - GNU Project - Free Software Foundation
    October 14, 2020 at 9:05:14 AM UTC - permalink -
    QRCode
    - https://www.gnu.org/software/stow/
    config dotfiles manager symlink
  • Text::ASCIITable - Create a nice formatted table using ASCII characters. - metacpan.org
    # don't forget this if you want to output utf8 characters
    binmode(STDOUT, ":utf8");
    October 11, 2020 at 8:42:39 PM UTC * - permalink -
    QRCode
    - https://metacpan.org/pod/Text::ASCIITable
    ascii data perl table
Links per page: 20 50 100
◄Older
page 2 / 57
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation