Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

kangtegong

kangtegong pushed 1 commit to main kangtegong/pyftrace
  • Release v0.2.0 - TUI feature support - Added `tui.py` using `curses` for terminal-based UI. - Supports Page Up, ... 8df8ce0

View on GitHub

kangtegong pushed 1 commit to main kangtegong/pyftrace

View on GitHub

kangtegong published a release on kangtegong/pyftrace
v0.2.0
### Added - TUI support - Added `tui.py` using `curses` for terminal-based UI. - Supports Page Up, Page Down, Home, and End keys for scrolling through trace data. - New example script `ex...
kangtegong pushed 1 commit to main kangtegong/pyftrace
  • Release v0.2.0 - TUI feature support - Added `tui.py` using `curses` for terminal-based UI. - Supports Page Up, ... 0fbdc10

View on GitHub

kangtegong pushed 1 commit to main kangtegong/pyftrace
  • Release v0.2.0 - TUI feature support - Added `tui.py` using `curses` for terminal-based UI. - Supports Page Up, ... fd95b8f

View on GitHub

kangtegong pushed 1 commit to main kangtegong/pyftrace
  • Release v0.2.0 - TUI feature support - Added `tui.py` using `curses` for terminal-based UI. - Supports Page Up, ... 5f830e6

View on GitHub

kangtegong pushed 2 commits to main kangtegong/pyftrace
  • Swap the short options for verbose and version: - Set verbose to use `-v` (lowercase) instead of `-V` - Set version ... 4fa0bea
  • Release v0.2.0 - TUI feature support - Added `tui.py` using `curses` for terminal-based UI. - Supports Page Up, ... 643e80c

View on GitHub

kangtegong pushed 0 commits to main kangtegong/pyftrace

View on GitHub

kangtegong pushed 26 commits to main kangtegong/pyftrace
  • Add -v, --version option This commit adds -v, --version to pyftrace which can be used as follows: $ pyftrace -v p... ed30a26
  • Add test suite for pyftrace - Implement `runtests.py` for all pyftrace functions - Used regex matching for dynamic v... b450fb8
  • Fix printed code alignments Modified the depth of the called function and the returned function to be the same. Also... 265602f
  • Change class name: SimplePyftrace -> Pyftrace modified class name from SimplePyftrace to Pyftrace 16503a5
  • Release v0.1.1 Added - Test suite for `pyftrace` (`runtests.py`). - Usage example for running tests: ```bash ... b97ca05
  • Create github workflow: python-publish.yml 1134161
  • Create github workflow: push-test.yml df0d989
  • Fail the workflow if any test fails in `tests/runtests.py` make workflow fail on any test fails 8591da7
  • Refactor tests to use dynamic versioning Updated `test_version_flag_short_v` and `test_version_flag_long_version` in... d0ca3c1
  • Release v0.1.2 - GitHub Workflows. - Introduced `push-test.yml` workflow to automatically run tests on every push.... fd73bd6
  • Change sys.monitoring tool name Modified sys.monitoring tool name from simple-pyftrace to pyftrace de76f35
  • Refactor and remove unnecessary comments d82d597
  • Refactoring - Refactored `tracer.py`: - Moved `resolve_filename` and `get_line_number` to `utils.py`. - Refactore... 83ac1f3
  • Implement basic TUI function and refactor argument parsing - Added TUI mode: - Implemented `tui.py` using curses. ... 9b6045e
  • Add support for passing arguments to traced scripts in Pyftrace Before: - Pyftrace could only run scripts without ad... 6bb1c70
  • Add some TODOs fc3b322
  • Update GitHub Actions and README with workflow badges - Renamed workflow files: - Renamed "Test on push" to "push ... e4aca66
  • Commented out all logging configurations and error messages d1cb300
  • Implement Page Up, Page Down, Home, and End key feature in TUI This commit adds support for the Page Up, Page Down, ... 19b61de
  • Add deep-depth example script for TUI scrolling test This commit adds examples/recurives.py, which recursively calls... 7faa5c2
  • and 6 more ...

View on GitHub

kangtegong pushed 3 commits to main kangtegong/pyftrace
  • Add percentage display to TUI - Implement percentage calculation to show progress. - Format and display the percenta... 23f9aaa
  • Prevent IndexError by clamping selected_line & current_line - Clamp selected_line and current_line to ensure they st... adc6b06
  • Release v0.2.0 - TUI support - Updated usage message to display `[options] [tui] script`. - Supports Page Up, Pa... b2480bd

View on GitHub

kangtegong pushed 2 commits to main kangtegong/collaboration
  • add my userName ad4ff94
  • Merge pull request #1141 from jin18302/add_userName add my userName b163792

View on GitHub

kangtegong closed a pull request on kangtegong/collaboration
add my userName
kangtegong pushed 2 commits to main kangtegong/collaboration
  • add myname 3adc72c
  • Merge pull request #1142 from did6436/myname add myname 67dfafa

View on GitHub

kangtegong closed a pull request on kangtegong/collaboration
add myname
kangtegong pushed 1 commit to main kangtegong/pyftrace
  • Release v0.2.0 - TUI support - Updated usage message to display `[options] [tui] script`. - Supports Page Up, Pa... 34d129f

View on GitHub

kangtegong pushed 1 commit to feature/settrace_setprofile kangtegong/pyftrace
  • Support Python 3.8+ Compatibility and Add setprofile support - Lowered minimum Python version requirement to 3.8 in ... 1166b2c

View on GitHub

kangtegong pushed 1 commit to feature/settrace_setprofile kangtegong/pyftrace
  • ongoing: settrace & setprofile supprot 313c751

View on GitHub

kangtegong pushed 4 commits to feature/settrace_setprofile kangtegong/pyftrace
  • Fix function call parsing logic of TUI in Windows - Updated `parse_trace_line` function to handle Windows-style file... bae9868
  • Add cross-platform testing for Ubuntu, Windows, and macOS on GitHub Actions - Extend workflow to include Ubuntu, Win... 0114fb8
  • Merge pull request #1 from kangtegong/feature/tui Feature/tui 7206460
  • ongoing: settrace & setprofile supprot 36dc269

View on GitHub

kangtegong created a branch on kangtegong/pyftrace

feature/settrace_setprofile - low overhead lightweight Python function tracer

kangtegong pushed 15 commits to main kangtegong/pyftrace
  • Change sys.monitoring tool name Modified sys.monitoring tool name from simple-pyftrace to pyftrace 2946921
  • Refactor and remove unnecessary comments d51520e
  • Refactoring - Refactored `tracer.py`: - Moved `resolve_filename` and `get_line_number` to `utils.py`. - Refactore... 9355d55
  • Implement basic TUI function and refactor argument parsing - Added TUI mode: - Implemented `tui.py` using curses. ... 1fdbaaf
  • Add support for passing arguments to traced scripts in Pyftrace Before: - Pyftrace could only run scripts without ad... 2ecf5d8
  • add some TODOs 2bf2a70
  • Update GitHub Actions and README with workflow badges - Renamed workflow files: - Renamed "Test on push" to "push ... 2f9d602
  • Commented out all logging configurations and error messages 1eb08f0
  • Implement Page Up, Page Down, Home, and End key feature in TUI This commit adds support for the Page Up, Page Down, ... 1fc3ae3
  • feat: Add deep-depth example script for TUI scrolling test This commit adds examples/recurives.py, which recursively... bcd9982
  • Add Windows-specific dependency for curses support and update README - Added `windows-curses` as a Windows-only depe... 4270eb2
  • Merge branch 'main' of github.com:kangtegong/pyftrace into main d52e065
  • Fix function call parsing logic of TUI in Windows - Updated `parse_trace_line` function to handle Windows-style file... bae9868
  • Add cross-platform testing for Ubuntu, Windows, and macOS on GitHub Actions - Extend workflow to include Ubuntu, Win... 0114fb8
  • Merge pull request #1 from kangtegong/feature/tui Feature/tui 7206460

View on GitHub

kangtegong closed a pull request on kangtegong/pyftrace
Feature/tui
kangtegong opened a pull request on kangtegong/pyftrace
Feature/tui
kangtegong pushed 0 commits to main kangtegong/pyftrace

View on GitHub

kangtegong pushed 9 commits to feature/tui kangtegong/pyftrace
  • add some TODOs 2bf2a70
  • Update GitHub Actions and README with workflow badges - Renamed workflow files: - Renamed "Test on push" to "push ... 2f9d602
  • Commented out all logging configurations and error messages 1eb08f0
  • Implement Page Up, Page Down, Home, and End key feature in TUI This commit adds support for the Page Up, Page Down, ... 1fc3ae3
  • feat: Add deep-depth example script for TUI scrolling test This commit adds examples/recurives.py, which recursively... bcd9982
  • Add Windows-specific dependency for curses support and update README - Added `windows-curses` as a Windows-only depe... 4270eb2
  • Merge branch 'main' of github.com:kangtegong/pyftrace into main d52e065
  • Fix function call parsing logic of TUI in Windows - Updated `parse_trace_line` function to handle Windows-style file... bae9868
  • Add cross-platform testing for Ubuntu, Windows, and macOS on GitHub Actions - Extend workflow to include Ubuntu, Win... 0114fb8

View on GitHub

kangtegong pushed 1 commit to main kangtegong/pyftrace
  • Add cross-platform testing for Ubuntu, Windows, and macOS on GitHub Actions - Extend workflow to include Ubuntu, Win... 0114fb8

View on GitHub

kangtegong pushed 1 commit to main kangtegong/pyftrace
  • Add cross-platform testing for Ubuntu, Windows, and macOS on GitHub Actions - Extend workflow to include Ubuntu, Win... 66dc3c8

View on GitHub

kangtegong pushed 1 commit to main kangtegong/pyftrace
  • Add cross-platform testing for Ubuntu, Windows, and macOS on GitHub Actions - Extend workflow to include Ubuntu, Win... 0b4c348

View on GitHub

kangtegong pushed 1 commit to main kangtegong/pyftrace
  • Add cross-platform testing for Ubuntu, Windows, and macOS on GitHub Actions - Extend workflow to include Ubuntu, Win... 51471f1

View on GitHub

kangtegong pushed 1 commit to main kangtegong/pyftrace
  • Fix function call parsing logic of TUI in Windows - Updated `parse_trace_line` function to handle Windows-style file... bae9868

View on GitHub

kangtegong pushed 1 commit to main kangtegong/pyftrace
  • Fix Windows Parsing - Updated `parse_trace_line` function to handle Windows-style file paths and built-in functions ... 5007d59

View on GitHub

Load more