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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using DSharpPlus; | |
using DSharpPlus.CommandsNext; | |
using DSharpPlus.CommandsNext.Converters; | |
using DSharpPlus.CommandsNext.Entities; | |
using DSharpPlus.Entities; | |
using WarfaceRadiation.Attributes; |
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
using System; | |
using System.Collections.Generic; | |
using System.Globalization; | |
using System.Reflection; | |
using System.Text; | |
using agsXMPP; | |
using agsXMPP.protocol.client; | |
using agsXMPP.Xml.Dom; | |
using U = agsXMPP.Uri; |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
namespace System.Threading | |
{ | |
public abstract class AsyncTaskBase | |
{ | |
public SynchronizationContext Context { get; } |
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
------------------------- | |
---- Questão: 106432 ---- | |
------------------------- | |
-- ALUNO (matricula, nome, endereço, telefone) | |
-- CURSA (matricula, codigo) | |
-- matricula REFERENCIA matricula em ALUNO | |
-- codigo REFERENCIA codigo em DISCIPLINA |
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
namespace Larpl.Extensions | |
{ | |
public static class DiscordExtensions | |
{ | |
static void ValidateEmbed(dynamic d, out bool has_fields, out bool has_timestamp, out bool has_color, out bool has_description) | |
{ | |
try { has_fields = !(d.fields is null); } | |
catch { has_fields = false; } | |
try { has_timestamp = !(d.timestamp is null); } |
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
Start Camera( | |
Event Player, | |
Add( | |
Add( | |
Add( | |
Event Player, | |
World Vector Of( | |
Vector(-0.4, 0.0, 0.3), | |
Event Player, | |
Rotation |
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 off | |
set app="C:\Program Files (x86)\Microsoft Visual Studio\Installer\resources\app\ServiceHub\Services\Microsoft.VisualStudio.Setup.Service\VSIXInstaller.exe" | |
for /r %%f in (*.vsix) do ( | |
call :setup "%%f" | |
) | |
goto end | |
:setup |
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
using System; | |
using System.Collections.Generic; | |
using System.Reflection; | |
using System.Text; | |
using System.Threading.Tasks; | |
using DSharpPlus.CommandsNext; | |
using DSharpPlus.Entities; | |
namespace DSharpPlus | |
{ |
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
namespace User32 | |
{ | |
public static class MessageBox | |
{ | |
[DllImport("user32.dll")] | |
static extern int MessageBoxA(IntPtr hWnd, | |
string lpText, | |
string lpCaption, | |
uint uType); |
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
public delegate Task ApplicationAssetsDownloaderEventHandler(DiscordApplicationAsset asset); | |
class ApplicationAssetsDownloader : IDisposable | |
{ | |
private ConcurrentQueue<DiscordApplicationAsset> _a; | |
private ZipArchive _ar; | |
private MemoryStream _ms; | |
public event ApplicationAssetsDownloaderEventHandler DownloadStartedAsync; | |
public event ApplicationAssetsDownloaderEventHandler DownloadCompletedAsync; |