This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # A quick example of a Twitch chat bot in Ruby. No third party libraries. Just Ruby standard lib. | |
| # | |
| # This software is made available under the MIT License. | |
| # Copyright (C) 2025 Brandon Rice | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal | |
| # in the Software without restriction, including without limitation the rights | |
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| # copies of the Software, and to permit persons to whom the Software is |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # An example of a very simple, rack-compliant web server. | |
| # This software is made available under the MIT License. | |
| # | |
| # Copyright (C) 2025 Brandon Rice | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal | |
| # in the Software without restriction, including without limitation the rights | |
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| # copies of the Software, and to permit persons to whom the Software is |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module MethodTracing | |
| class Tracer | |
| class << self | |
| attr_reader :tracers | |
| end | |
| @tracers = {} | |
| attr_accessor :count | |
| attr_reader :target |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " dart setup | |
| autocmd FileType dart set errorformat+=%.%#\\\|%.%#\\\|%.%#\\\|%f\\\|%l\\\|%c\\\|%.%#\\\|%m | |
| autocmd FileType dart set makeprg=dartanalyzer\ --machine\ % | |
| autocmd BufWritePre *.dart Make | |
| let g:syntastic_mode_map = { "mode": "active", | |
| \ "passive_filetypes": ["dart"] } |