| # | Serbian Cyrillic | Serbian Latin | Kazakh Cyrillic | Kazakh Latin (2021 reform) | Notes |
|---|---|---|---|---|---|
| 1 | Π | A | Π | A | Same |
| 2 | Π | B | Π | B | Same |
| 3 | Π | V | Π | V | Same |
| 4 | Π | G | Π | G | Same |
| 5 | Π | D | Π | D | Same |
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
| # Define the file path to save the output | |
| output_file = "unicode_characters.txt" | |
| # Open the file in write mode | |
| File.open(output_file, "w") do |file| | |
| # Define Unicode script ranges | |
| script_ranges = { | |
| "Basic Latin" => (0x0000..0x007F), | |
| "Latin-1 Supplement" => (0x0080..0x00FF), | |
| "Latin Extended-A" => (0x0100..0x017F), |
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
| git config --global alias.lb "for-each-ref --count=30 --sort=-committerdate refs/heads/ --format='%(refname:short)'" |
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
| C:\Users\xdelamotte\.jdks\temurin-11.0.21\bin\java.exe -Dmaven.multiModuleProjectDirectory=C:\Users\xdelamotte\repo\stats-flink -Djansi.passthrough=true "-Dmaven.home=C:\Users\xdelamotte\AppData\Local\Programs\IntelliJ IDEA Ultimate\plugins\maven\lib\maven3" "-Dclassworlds.conf=C:\Users\xdelamotte\AppData\Local\Programs\IntelliJ IDEA Ultimate\plugins\maven\lib\maven3\bin\m2.conf" "-Dmaven.ext.class.path=C:\Users\xdelamotte\AppData\Local\Programs\IntelliJ IDEA Ultimate\plugins\maven\lib\maven-event-listener.jar" "-javaagent:C:\Users\xdelamotte\AppData\Local\Programs\IntelliJ IDEA Ultimate\lib\idea_rt.jar=63670:C:\Users\xdelamotte\AppData\Local\Programs\IntelliJ IDEA Ultimate\bin" -Dfile.encoding=UTF-8 -classpath "C:\Users\xdelamotte\AppData\Local\Programs\IntelliJ IDEA Ultimate\plugins\maven\lib\maven3\boot\plexus-classworlds-2.7.0.jar;C:\Users\xdelamotte\AppData\Local\Programs\IntelliJ IDEA Ultimate\plugins\maven\lib\maven3\boot\plexus-classworlds.license" org.codehaus.classworlds.Launcher -Didea.version=2023 |
https://github.com/orgs/community/discussions/16925#discussioncomment-6506860
Note
Highlights information that users should take into account, even when skimming.
Tip
Optional information to help a user be more successful.
Important
Crucial information necessary for users to succeed.
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 'bundler/inline' | |
| gemfile do | |
| source 'https://rubygems.org' | |
| gem 'parallel' | |
| end | |
| links = <<-LINKS | |
| Engineering at Meta - https://lnkd.in/e8tiSkEv | |
| Google Research - https://ai.googleblog.com/ |
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
| try | |
| { | |
| Assert(Life.Real); | |
| Assert(Life.Fantasy); | |
| } | |
| catch (LandSlideException ex) | |
| { | |
| #region Reality | |
| while (true) | |
| { |
- The reason why
- How to add the option:
- How to sanitize a project
- https://unix.stackexchange.com/a/161853/577385
git ls-files -z | while IFS= read -rd '' f; do if file --mime-encoding "$f" | grep -qv binary; then tail -c1 < "$f" | read -r _ || echo >> "$f"; fi; done
NewerOlder