Moved to https://github.com/oprypin/game-bots/tree/master/shenzhen-io
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
| def key | |
| STDIN.raw do |io| | |
| loop do | |
| buffer = Bytes.new(3) | |
| bytes_read = io.read(buffer) | |
| if bytes_read > 0 | |
| return String.new(buffer[0, bytes_read]) | |
| end | |
| end | |
| end |
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
| cd ~/.steam/steam/steamapps/common | |
| for d in *; do | |
| for f in "$d"/*; do | |
| file "$f" | grep -q 'ELF ' && | |
| strings "$f" | grep -q 'UnityPlayer/' && | |
| echo "$(strings "$f" | grep -P -m1 -o '(?<=UnityPlayer/)[^ ]+') $d" && | |
| break | |
| done | |
| done | sort -V |
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
| [General] | |
| Description=Applications | |
| Opacity=1 | |
| Wallpaper= | |
| [Background] | |
| Color=255,255,255 | |
| [BackgroundIntense] | |
| Color=220,255,220 |
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
| class RoundedPolygon < SF::Shape | |
| def initialize | |
| super() | |
| @result = [] of SF::Vector2f | |
| end | |
| def assign(points, radius : Number) | |
| @result.clear |
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
| set -x | |
| for branch in master feature/assert; do | |
| git checkout $branch && make clean && time make && | |
| time ./bin/crystal build -o .build/all_spec spec/all_spec.cr && time .build/all_spec | |
| done | |
| + for branch in master feature/assert | |
| + git checkout master | |
| Switched to branch 'master' | |
| Your branch is up-to-date with 'origin/master'. |
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
| require "compiler/crystal/syntax" | |
| include Crystal | |
| class AssertToSVisitor < ToSVisitor | |
| getter locations = [] of Int32 | |
| def visit_any(node) | |
| if node.class.name.ends_with?("Literal") || node.is_a? Path | |
| @str << node.to_s | |
| return false |
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
| SoundBufferRecorder.hpp | |
| + ~SoundBufferRecorder(); | |
| SoundRecorder.hpp | |
| + void setChannelCount(unsigned int channelCount); | |
| + unsigned int getChannelCount() const; | |
| SoundSource.hpp | |
| + SoundSource& operator =(const SoundSource& right); | |
| BlendMode.hpp | |
| - Add, ///< Pixel = Src * SrcFactor + Dst * DstFactor | |
| - Subtract ///< Pixel = Src * SrcFactor - Dst * DstFactor |
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
| diff --git a/examples/diagnostics.cr b/examples/diagnostics.cr | |
| index 3e1a86a..6266e54 100644 | |
| --- a/examples/diagnostics.cr | |
| +++ b/examples/diagnostics.cr | |
| @@ -7,8 +7,8 @@ $font : SF::Font | |
| $font = SF::Font.from_file("resources/font/Ubuntu-R.ttf") | |
| $window = SF::RenderWindow.new( | |
| - SF.video_mode(800, 600), "Diagnostic information", | |
| - settings: SF.context_settings(depth: 24, antialiasing: 8) |
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
| print("Starting...") | |
| import sys | |
| import collections | |
| import itertools | |
| import subprocess | |
| from PyQt5.QtWidgets import QApplication | |
| app = QApplication(sys.argv) |