View convert_tojpg.cs
This file contains 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
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Net.Http; | |
using System.Text; | |
using System.Threading.Tasks; | |
using Xamarin.Forms; | |
namespace MriFilesConvert |
View run_me.bat
This file contains 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
youtube-dl.exe -i "VimeoVideoLink" --extract-audio --audio-format mp3 --audio-quality 0 -p "YourVimeoAccountPassword" -u "YourVimeoAccountUsername" |
View MainActivity.cs
This file contains 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
using Android.App; | |
using Android.Widget; | |
using Android.OS; | |
using System.IO; | |
using Android.Media; | |
using System.Net.Http; | |
using System.Net.Http.Headers; | |
using System; |
View Main.axml
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:orientation="vertical" | |
android:layout_width="fill_parent" | |
android:layout_height="fill_parent"> | |
<Button | |
android:id="@+id/start" | |
android:layout_width="fill_parent" | |
android:layout_height="wrap_content" | |
android:text="Start Recording" /> |
View regexEntry.py
This file contains 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
# Command Line : python argy.py --myRegex "(^[A-Z]\d[A-Z]\d)" | |
# Check the Image : https://ibb.co/g3JPNb | |
import argparse | |
import re | |
parser = argparse.ArgumentParser(description='https://plus.google.com/u/0/101601879152225382803/posts/627K5E1DmMj?cfem=1') | |
parser.add_argument('--version', action='store_true', help='Shows version and exits.') |