Items tagged: @github (60)

Recent Commits to freecom:master

  • 27/09/2025 9:06

    support up to LASTDRIVE=32 (lDOS or patched MS-DOS v7)

    support up to LASTDRIVE=32 (lDOS or patched MS-DOS v7)
    
    Changing to a drive or running DIR with only a drive letter and
    colon didn't work. (DIR with drive letter, colon, backslash did
    work already.) Without this patch applied:
    
    C:\>]:
    Bad command or filename - "]:".
    C:\>dir ]:
    File not found. - ']:'
    C:\>dir ]:\
     Volume in drive ] is SRDXMS 2.10
     Directory of ]:\
    
    LDEBUG   COM        94,208  09-19-25  6:35p
             1 file(s)         94,208 bytes
             0 dir(s)         948,224 bytes free
    
    With this patch applied:
    
    C:\>]:
    ]:\>dir ]:
     Volume in drive ] is SRDXMS 2.10
    
     Directory of ]:\
    
    LDEBUG   COM        94,208  09-19-25  6:35p
             1 file(s)         94,208 bytes
             0 dir(s)         948,224 bytes free
    Tags:

Recent Commits to cava:master

  • 15/08/2025 3:22

    combine mid and treble FFT input buffers

    combine mid and treble FFT input buffers
    
    The point of having separate input buffers for bass, mids and treble
    was only ever to capture lowest bass without sacrificing the
    responsivness of the rest of the spectrum. In the process I also
    made a separate buffer for treble, but as it turns out the buffer is way
    too small to be usefull and responsiveness is just as good with the mid
    buffer. So this commit removes the treble buffer and uses the mid buffer
    for all frquencies over the bass cut off (100Hz).
    
    The fft input buffer size is then 4096 samples for 44100 and 48000
    samples rate. (double for 96k, half for 22k and so forth) although that
    should theoretically be able to capture frequencies down towards 10Hz it
    is not that good at it. It will also have a minimum 10 Hz resolution
    between the bars. The response time is around 100ms (or rather
    samples that are 100ms old will still be visualized). This will
    introduce some more inertia to the visualization, I have tuned down the
    noise filter to counter for this.
    
    The bass buffer is twice as large, and will go twice as low in the
    spectrum and be twice as slow.
    
    some adjustments and fixes where also made to standard eq and cut off frequencies
    
    use correct buffersizes for each band in the hardcoded eq
    
    adjust hardcoded eq to match old behaviour, less bass
    
    update cavacore blueprint, changed slightly due to adjustments
    Tags:

Recent Commits to calculator

Recent Commits to documents

Recent Commits to dart-sass:main

  • 11/02/2025 21:41

    Revert the core of #2255 (#2511)

    Revert the core of #2255 (#2511)
    
    This was causing serious performance issues in places where `@extend`
    was used heavily with a large number of extenders.
    
    Closes #2504
    Tags:

Recent Commits to styleguide:gh-pages

  • 06/11/2024 7:53

    Update the HTML Document Type guidance (#862)

    Update the HTML Document Type guidance (#862)
    
    This update explicitly declares quirks mode to be against the style guide and strengthens the recommendation from “preferred” to “mandatory”. It also updates examples to use lowercase for consistency and clarifies that the style guide applies to Sass.
    Tags:

Recent Commits to documents

Recent Commits to calculator

  • 23/09/2024 23:03

    Add Angstroms Length-Converter option (#2229)

    Add Angstroms Length-Converter option (#2229)
    
    * Add Length_Angstrom as a new unit constant
    
    Adds Angstrom as a length unit to the list of unit constants in UnitConverterDataConstants.h file.
    
    * Add Angstrom unit to Length units in UnitConverterDataLoader.cpp
    
    Adds the Angstrom unit of length to the list of length units in UnitConverterDataLoader.cpp and its conversion data is added to the GetConversionData() function.
    
    It is assigned the value of 15.
    
    * Add Angstrom as a Unit of Length
    
    Adds new data entries to Resources.resw for unit abbreviation of Angstrom, and the unit name for Angstrom.
    
    * Add conversion data "Meters-Angstroms" in Test.resw
    
    Adds new data entry for "Meters-Angstroms" to Test.resw file
    
    * Changes order of units of Length to add Angstroms
    
    This commit changes the order of the units of length so that Angstrom is before Nanometers.
    Increments orders of all other units by 1 and sets order of Angstroms to 1.
    
    * Fixes 'TestStandardUnitConverterAndDateViewModels' test case failing
    
    This commit fixes the "TestStandardUnitConverterAndDateViewModels" failing by introducing a new resource entry to the Test.resw file.
    
    These changes needed to be made because adding the new unit changed the order of units, hence the test case expected a different value, since it was converting other units.
    Tags:

Recent Commits to python-fire:master

Recent Commits to kint:master

  • 09/09/2024 7:56

    Use more modern tricks

    Use more modern tricks
    
    We've got a few new features between 7.1 and 7.4 so this is nice.
    Unfortunately we still have to use array_merge for arrays with
    string keys since that wasn't supported until 8.1
    Tags:

Recent Commits to styleguide:gh-pages

  • 05/09/2024 17:32

    Update C++ style guide (#835)

    Update C++ style guide (#835)
    
    - Explicitly ban `long double`
    - Use absl formatting libraries or `std::ostream` over printf-style
      functions.
    - Portability: use serialization libraries instead of copying the
      in-memory representation.
    - Update guidance to use `uintptr_t` (previously `intptr_t`) when
      working with pointers as integers.
    - Ban C++20 modules.
    - Ban coroutines (though this is expected to be temporary).
    - Minor wording updates.
    Tags:

Recent Commits to kint:master

Recent Commits to awesome-php:master

  • 28/08/2024 19:11

    Update link for PHP_CodeSniffer

    Update link for PHP_CodeSniffer
    
    PHP_CodeSniffer is under new management since December last year.
    See: https://github.com/squizlabs/PHP_CodeSniffer/issues/3932
    
    The package is now maintained in the https://github.com/PHPCSStandards/PHP_CodeSniffer repo.
    Tags:
  • 28/08/2024 19:05

    Update phpDocumentor info

    Update phpDocumentor info
    
    * Fix to use the official name.
    * Remove the version reference. Version 3 was released four years ago.
    * Point the link to the official website, not the GH repo.
    Tags:

Recent Commits to kint:master

Gnustavo's Favorite Links from Diigo

Recent Commits to readexe:master

Recent Commits to python-patterns:master

  • 11/06/2024 2:29

    Update README.md

    Update README.md
    
    Before diving into any of the patterns, readers should be reminded of two fundamental laws in software architecture:
    
    1.Everything is a trade-ff
    2."Why is more important than the how"
    
    So, readers face the nuances and reality of these patterns from the beginning. These two laws are coined by two thought leaders in software architecture: Mark Richards and Neal Ford. They have explained these two laws in various conference talks and books. For example, Here you can read about these two laws here:
    
    https://www.infoq.com/podcasts/software-architecture-hard-parts/
    
    
    Also, here is a book for reference:
    https://a.co/d/fKOodW9
    Tags:

Recent Commits to policies:main

Gnustavo's Favorite Links from Diigo

Recent Commits to awesome-php:master

Gnustavo's Favorite Links from Diigo

Recent Commits to Shaarli:master

Recent Commits to Search-Replace-DB:master

  • 23/02/2024 15:50

    Fix unserialize() warnings, deprecated warnings.

    Fix unserialize() warnings, deprecated warnings.
    
    As of PHP 8.3 unserialize() triggers E_WARNING instead of E_NOTICE causing SRDB to dump thousands of notices to the screen as it tries to unserialized non-serialized strings. It now checks for serialized data before trying to unserialize.
    
    Fixed Deprecation warning creating dynamic property: alter_collation.
    
    Fixed Deprecation warning when passing null to htmlentities().
    Tags:

Recent Commits to sudo:main

  • 14/02/2024 17:07

    README.md: expand credit for original (#43)

    README.md: expand credit for original (#43)
    
    * README.md: expand credit for original
    
    Sudo was invented on Berkeley Unix on a VAX, and the current version is maintained by Todd Miller of the OpenBSD Unix project. It is thus correct to refer to the original as Unix/Linux as it is not a project originated by the Linux developers.
    
    * Update README.md again, in ref to original sudo
    
    Suggested by "omni" to have 'less occurrences of "Unix/Linux" in the README' - reads better this way.
    Tags:

Recent Commits to Mobile-Detect

Recent Commits to sudo:main

Recent Commits to Shaarli:master

  • 30/01/2024 10:35

    Fix metadata fetching for YouTube URLs

    Fix metadata fetching for YouTube URLs
    
    YouTube responds with a redirect if it thinks that the user agent is too
    old. This commit changes the user agent string to that of a current
    version of Firefox. See also
    https://github.com/shaarli/Shaarli/issues/531#issuecomment-1902784175.
    Tags:

Gnustavo's Favorite Links from Diigo

Recent Commits to Shaarli:master

Recent Commits to You-Dont-Need-Momentjs:master

Recent Commits to hypnotix:master

Recent Commits to Shaarli:master

Recent Commits to python-patterns:master

Gnustavo's Favorite Links from Diigo

Pinboard (brandizzi)

  • 27/01/2022 11:06

    Job Application for Junior Security Researcher at GitHub

    brandizzi
    RT @GitHubSecurity: GitHub is looking for a Junior Security Researcher to join our Security Lab team. As a member of the GitHub Security Lab you will make a direct impact on the security of the open source software the world depends on. #InfoSecJobs #Hiring #RemoteJob
    Tags:

Gnustavo's Favorite Links from Diigo

Recent Commits to sublime:master

  • 13/08/2021 12:59

    [ImgBot] Optimize images

    [ImgBot] Optimize images
    
    *Total -- 13,778.09kb -> 7,982.94kb (42.06%)
    
    /screenshot.png -- 380.40kb -> 176.26kb (53.66%)
    /images/kotlin.png -- 1,028.95kb -> 562.95kb (45.29%)
    /images/python.png -- 1,050.93kb -> 580.21kb (44.79%)
    /images/javascript.png -- 1,056.22kb -> 595.58kb (43.61%)
    /images/c.png -- 1,095.97kb -> 622.84kb (43.17%)
    /images/css.png -- 1,103.18kb -> 634.00kb (42.53%)
    /images/ruby.png -- 1,080.70kb -> 623.79kb (42.28%)
    /images/go.png -- 1,108.53kb -> 641.02kb (42.17%)
    /images/java.png -- 1,122.05kb -> 652.92kb (41.81%)
    /images/rust.png -- 1,105.41kb -> 654.45kb (40.8%)
    /images/typescript.png -- 1,143.21kb -> 684.39kb (40.13%)
    /images/php.png -- 1,200.86kb -> 733.59kb (38.91%)
    /images/html.png -- 1,301.69kb -> 820.94kb (36.93%)
    
    Signed-off-by: ImgBotApp <ImgBotHelp@gmail.com>
    Tags:

Gnustavo's Favorite Links from Diigo

Recent Commits to clean-code-javascript:master

Gnustavo's Favorite Links from Diigo

Recent Commits to awesome-php:master

Recent Commits to Faker:master

Recent Commits to awesome-php:master

Pinboard (brandizzi)

  • 16/10/2020 6:43

    Untitled (https://github.com/woltapp/blurhash)

    brandizzi
    RT @smashingmag: Another great technique to display placeholders while images are loading. BlurHash takes an image, returns a short string (20-30 chars) that represents the placeholder for this image. Details: GitHub Repo
    Tags:

Recent Commits to Shaarli:master

Pinboard (brandizzi)

Recent Commits to parsel:master

axtens's Activity

Pinboard (brandizzi)

Recent Commits to s3fs-fuse:master

  • 12/09/2020 23:57

    Remove uses of implicit namespace std

    Remove uses of implicit namespace std
    
    Fixed via:
    
    sed -i '/using namespace std/{N;d}' src/*.cpp
    sed -i 's/ string/ std::string/g' src/*.cpp
    sed -i 's/(string/(std::string/g' src/*.cpp
    sed -i 's/\[string/\[std::string/g' src/*.cpp
    sed -i 's/^string/std::string/g' src/*.cpp
    sed -i 's/ ifstream/ std::ifstream/g' src/*.cpp
    sed -i 's/ istringstream/ std::istringstream/g' src/*.cpp
    sed -i 's/ ostringstream/ std::ostringstream/g' src/*.cpp
    sed -i 's/ max(/ std::max(/g' src/*.cpp
    sed -i 's/ min(/ std::min(/g' src/*.cpp
    sed -i 's/ endl/ std::endl/g' src/*.cpp
    Tags:

Recent Commits to freecom:master

Recent Commits to funcoeszz:master

  • 29/07/2020 19:04

    zzmaiores: Ajuste para lidar com espaços em branco no início (#582)

    zzmaiores: Ajuste para lidar com espaços em branco no início (#582)
    
    A função zzmaiores com opção -f não funcionava no meu ambiente devido à saída do comando find
    que coloca espaços no início de cada linha. O comando 'tr -s " "' que está na função zz maiores
    transforma vários espaços em um só, mas isto significa que ainda haverá um espaço no início
    das linhas do comando find. Para resolver o problema, simplesmente adicionei um próprio comando
    das funcoeszz: zzlblank. Dessa forma, garante-se que não haverá espaços iniciais.
    
    Para exemplificar o que estava acontecendo no meu ambiente, segue a saída do find -ls:
    
     13911760      8 -rw-r--r--   1 user  user      8105 Jul  4 21:41 ./arquivo1
     13913962    124 -rw-r--r--   1 user  user    125099 Jul  4 22:19 ./arquivo2
     13914195     12 -rw-r--r--   1 user  user      8923 Jul  4 21:41 ./arquivo3
     13913802     16 -rw-r--r--   1 user  user     14741 Jul  4 21:41 ./arquivo4
     13911180   1024 -rw-r--r--   1 user  user   1047576 Jul  9 14:04 ./arquivo5
    `-> espaço aqui (às vezes são vários)
    
    A saída incorreta do zz maiores era:
    
    user 22:19 ./arquivo2
    user 21:41 ./arquivo4
    user 21:41 ./arquivo3
    user 21:41 ./arquivo1
    user 14:04 ./arquivo5
    
    Ou seja, o cut se embolava com os campos. A introdução do zzlblank corrige isso.
    
    Ambiente:
    
        Debian GNU/Linux 10
    
        find (GNU findutils) 4.6.0.225-235f
        Copyright (C) 2019 Free Software Foundation, Inc.
        License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.
        This is free software: you are free to change and redistribute it.
        There is NO WARRANTY, to the extent permitted by law.
    
        Written by Eric B. Decker, James Youngman, and Kevin Dalley.
        Features enabled: D_TYPE O_NOFOLLOW(enabled) LEAF_OPTIMISATION FTS(FTS_CWDFD) CBO(level=2)
    
    Co-authored-by: Aurelio Jargas <verde@aurelio.net>
    Tags:

Log in