
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
oldphonekeypaddecoder
Advanced tools
A .NET library that converts numeric keypad sequences into text, simulating classic mobile phone text input (T9). Implements the Chain of Responsibility pattern for processing multi-press character sequences, special characters, backspace, and spaces.
dotnet add package OldPhoneKeypadDecoder
using OldPhoneKeypadDecoder.Services;
using OldPhoneKeypadDecoder.Strategies;
// Create the decoder service
var keyLayoutStrategy = new OldPhoneKeyLayoutStrategy();
var decoderService = new OldPhoneKeypadDecoderService(keyLayoutStrategy);
// Decode input
string result = decoderService.Decode("44433555555666#"); // Returns "HELLO"
decoderService.Decode("2#") // "A"
decoderService.Decode("22#") // "B"
decoderService.Decode("222#") // "C"
decoderService.Decode("44 444#") // "HI"
decoderService.Decode("44433 555#") // "IE"
decoderService.Decode("227#") // "B" (backspace removes 'A')
src/OldPhoneKeypadDecoder/
: Core librarysrc/OldPhoneKeypadDecoder.ConsoleApp/
: Console application demotests/OldPhoneKeypadDecoder.Tests/
: Unit tests# Clone the repository
git clone https://github.com/thromel/OldPhoneKeypadDecoder.git
# Build the solution
dotnet build
# Run tests
dotnet test
# Run console demo
dotnet run --project src/OldPhoneKeypadDecoder.ConsoleApp
git checkout -b feature/amazing-feature
)git commit -m 'Add some amazing feature'
)git push origin feature/amazing-feature
)This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
Unknown package
We found that oldphonekeypaddecoder demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.