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; | |
| public class _int | |
| { | |
| //Author Paulo Henrique | |
| private Int32[] _ = new Int32[1024]; | |
| private short index; | |
| public void setIndex(short value) { index = value; } | |
| public short getIndex() { return this.index; } |
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
| import speech_recognition as sr | |
| from pyautogui import press, typewrite, hotkey | |
| r = sr.Recognizer() | |
| with sr.Microphone() as source: | |
| while True: | |
| try: | |
| audio = r.listen(source) | |
| result = r.recognize_google(audio,language="pt-BR") |
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 Monarchy | |
| { | |
| public enum Title | |
| { | |
| Emperor, | |
| King, | |
| Regent, | |
| Imperial_Prince, | |
| Real_Prince, | |
| Grand_Prince, |
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 Emgu.CV; | |
| using Emgu.CV.UI; | |
| using Emgu.CV.Structure; | |
| using System.Threading; | |
| namespace WindowsFormsApp1 | |
| { | |
| public class Connection | |
| { | |
| public string IPStream { get; set; } |
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
| static List<int> SortArray(int[] array) | |
| { | |
| int[] result = new int[array.Length]; | |
| List<int> memory = new List<int>(); | |
| List<int> toResult = new List<int>(); | |
| foreach (var x in array) | |
| { | |
| memory.Add(x); |
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
| function FirstFactorial(num) { | |
| memory = num | |
| c = memory-1 | |
| for(i=0;i<num;i++){ | |
| if(c != 0){ | |
| memory = memory * c | |
| c = c -1 | |
| } | |
| } | |
| return memory; |
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 static int FirstFactorial(int num) | |
| { | |
| int[] memory = new int[num+1]; | |
| for(int i = 0; i < num+1; i ++) | |
| { | |
| memory[i] = i; | |
| } | |
| num = 1; |
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
| private static void NoFlood(string _) | |
| { | |
| string value = String.Empty; | |
| int? cCList,cCPointer = null; | |
| int m = 0x0; | |
| string[] memoryStrings = new string[124]; | |
| int counter = 0; | |
| char[] CharList = _.ToCharArray(); |
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 static async void GetResponse(string server,string @params) | |
| { | |
| httpWebRequest = (HttpWebRequest)WebRequest.Create($"http://{server}/{@params}"); | |
| HttpWebResponse httpWebResponse = (HttpWebResponse)httpWebRequest.GetResponse(); | |
| string method = httpWebResponse.Method; | |
| if (String.Compare(method, "GET") == 0) | |
| { | |
| Stream receiveStream = httpWebResponse.GetResponseStream(); | |
| StreamReader readStream = new StreamReader(receiveStream, Encoding.UTF8); | |
| // MessageBox.Show(readStream.ReadToEnd()); |
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 Class Form1 | |
| Dim Hack As New CS2DHack.CS2DHack | |
| Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click | |
| Dim speedvalue As String = TextBox1.Text | |
| Try | |
| WriteDMAInteger(processo, &H69EFAC, New Integer() {&H20C}, speedvalue, 1) | |
| Catch ex As Exception | |
| MsgBox(ex.Message) | |
| End Try | |
| End Sub |