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
| <Project Sdk="Microsoft.NET.Sdk.Razor"> | |
| <PropertyGroup> | |
| <TargetFrameworks>net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks> | |
| <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net9.0-windows10.0.19041.0</TargetFrameworks> | |
| <!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET --> | |
| <!-- <TargetFrameworks>$(TargetFrameworks);net9.0-tizen</TargetFrameworks> --> | |
| <!-- Note for MacCatalyst: | |
| The default runtime is maccatalyst-x64, except in Release config, in which case the default is maccatalyst-x64;maccatalyst-arm64. |
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
| .vs* | |
| *.code-workspace | |
| *.sln | |
| Content/Developers | |
| DerivedDataCache | |
| Intermediate | |
| Saved | |
| Binaries |
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
| #!/usr/share/rvm/rubies/ruby-3.2.2/bin/ruby | |
| require 'rubygems' | |
| require 'date' | |
| require 'ruby_powerpoint' | |
| dir_name = "Song_Lists" | |
| Dir.mkdir(dir_name) if !Dir.exist?(dir_name) | |
| starting_date = ARGV[0] if ARGV && ARGV[0].length == 8 # in form of "20211024" 8 digit date | |
| end_date = ARGV[1] if ARGV && ARGV[1].length == 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
| echo $1 | |
| for f in *.pptx | |
| do | |
| output=$(zipgrep -Hl $1 $f ppt/slides/slide*.xml) | |
| status=$? | |
| if [ $status -eq 0 ] | |
| then | |
| echo $f | |
| echo "$1 match in $f" | |
| break |
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 'rubygems' | |
| require 'nokogiri' | |
| require 'fastercsv' | |
| require 'htmlentities' | |
| #puts $ARGV[0]; | |
| doc = Nokogiri::HTML( File.read($ARGV[0]) ) | |
| memo = [] #memo array | |
| elapsed = [] #elapsed array |