omg hi **code()** hey losers omg
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
| int __cdecl gen_gpci(_BYTE *a1, const char *a2, int factor) | |
| { | |
| int v3; // esi | |
| unsigned __int8 v4; // al | |
| unsigned __int8 v5; // dl | |
| unsigned __int8 v6; // cl | |
| unsigned __int8 v7; // bl | |
| unsigned __int8 v8; // al | |
| char v9; // cl | |
| char v10; // bl |
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 InstagramApiSharp.API.Builder; | |
| using InstagramApiSharp.API; | |
| using InstagramApiSharp; | |
| using InstagramApiSharp.Classes; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Web; | |
| using System.Web.Mvc; | |
| using System.Threading.Tasks; |
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
| int main() | |
| { | |
| if (firstname != NULL) | |
| { | |
| assert(strlen(firstname) <= sNAMEMAX); | |
| strcpy(symbolname, firstname); /* save symbol name */ | |
| tag = firsttag; | |
| } | |
| else | |
| { |
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
| if (firstname!=NULL) { | |
| assert(strlen(firstname)<=sNAMEMAX); | |
| strcpy(symbolname,firstname); /* save symbol name */ | |
| tag=firsttag; | |
| } else { | |
| tag= (firsttag>=0) ? firsttag : pc_addtag(NULL); | |
| tok=lex(&val,&str); | |
| assert(!fpublic); | |
| if (tok==tNATIVE || (tok==tPUBLIC && stock)) | |
| error(42); /* invalid combination of class specifiers */ |
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
| #include <Windows.h> | |
| #include <iostream> | |
| #include "SAA2.h" | |
| const char* SAA2_FILES_A[] = | |
| { | |
| "loadscs.txd", | |
| "HANDLING.CFG", | |
| "surface.dat", | |
| "TIMECYC.DAT", |
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
| int __thiscall sub_401010(int *this) | |
| { | |
| int *v1; // ebx | |
| int v2; // ecx | |
| _DWORD *v3; // eax | |
| signed int v4; // edi | |
| unsigned int v5; // esi | |
| int v6; // edi | |
| int v7; // esi | |
| int v8; // eax |
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 React from 'react'; | |
| import { View, Text } from 'react-native'; | |
| type Props = {}; | |
| class App extends React.Component<Props> { | |
| renderName(name) { | |
| var a = 8 + 9 + name; | |
| return ( | |
| <Text>{a}</Text> |
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
| <activity | |
| android:name=".MainActivity" | |
| android:label="@string/app_name" | |
| android:launchMode="singleTask" | |
| android:configChanges="keyboard|keyboardHidden|orientation|screenSize" | |
| android:windowSoftInputMode="adjustResize"> | |
| <intent-filter> | |
| <action android:name="android.intent.action.MAIN" /> | |
| <category android:name="android.intent.category.LAUNCHER" /> | |
| </intent-filter> |
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
| fetchCities() { | |
| fetch(global.apiURL + '/index/city?id=all') | |
| .then((response) => response.json()) | |
| .then((responseJson) => { | |
| this.tempData.cities = responseJson; | |
| this.fetchStates(); | |
| }) | |
| .catch((error) => { | |
| console.error(error); | |
| alert("خطا در ارتباط با سرور! لیست شهر ها یافت نشد"); |