Skip to content

Instantly share code, notes, and snippets.

View deejayy's full-sized avatar

deejayy (hu) deejayy

View GitHub Profile
<?php
if($_SERVER['REMOTE_ADDR'] == 'IP cimed') {
$sql = mysql_connect("IP", "Felhasználónév", "Jelszó");/
mysql_select_db('account');
if (!$sql) {
echo "Kapcsolat hiba!";
} else {
$mysql_query = mysql_query("SELECT login, email from account", $sql);
while($email = mysql_fetch_assoc($mysql_query)) {
$message = sprintf("<p>Hi, %s!</p>\r\n<p>Welcome To MT2SRV.HU</p>", $email['login']);
@deejayy
deejayy / packetdecrypt.js
Last active February 29, 2020 14:03
decode something
function hldsDecrypt()
{
this.decode_table = [
0x5A180000,
0x1A001040,
0x00104000,
0x12401040,
0x40105040,
0x10504000,
0x52401000,
@deejayy
deejayy / CustomModuleLoader.ts
Last active September 21, 2022 20:26
Solves the problem with typescript->javascript compilation and module path aliases (compilerOptions.paths).
import customModuleLoader = require('module');
export class CustomModuleLoader {
public cOptions: any = require('../tsconfig.json').compilerOptions;
public replacePaths: any = {};
constructor() {
Object.keys(this.cOptions.paths).forEach(alias => {
this.replacePaths[alias.replace(/\*.?/, '(.*)')] = this.cOptions.paths[alias][0].replace(/\*.?/, '$1');
I greet you!
I have bad news for you.
11/08/2018 - on this day I hacked your operating system and got full
access to your account.
It is useless to change the password, my malware intercepts it every time.
How it was:
In the software of the router to which you were connected that day, there

Minden, amit érdemes tudni a zárkózott emberekről

Az introvertált (zárkózott) viselkedést sokan furcsának találják, főleg azok, akiknek épp ellenkező a személyisége. Sok olyan dolog van, amit a legtöbben sose gondolnának az introvertált személyiségről, íme néhány ismeretlen tény róluk.

11 tény az introvertált emberekről, amit a legtöbben nem tudnak

Nagyon is viccesek

Sokszor szeretnek inkább egyedül lenni. Szeretnek olvasni, filmet nézni, pihenni, kreatívnak lenni, álmodozni és ötletelni, és gyakran megnevettetik magukat. Téged is meg fognak, de csak akkor, ha elég kényelmesen érzik magukat melletted ahhoz, hogy megosszák veled a humorukat. Sok humorista is introvertált személyiség, ami megmagyarázza, hogy miért vesznek észre olyan dolgokat, amit mások aligha.

this.apiFacade.callApi(new SomeGetApiCall());
// or, lazy-way:
this.apiFacade.callApi({ url: '/api/get/some' });
this.someGetApiResult = this.apiFacade.createApiResults(new SomeGetApiCall());
// lazy!
this.someGetApiResult = this.apiFacade.createApiResults({ url: '/api/get/some' });
import { ApiCallItem } from '@modules/api/model/api-call-item.model';
export class SomeGetApiCall implements ApiCallItem {
public url: string = '/api/get/some';
}
export class SomePostApiCall implements ApiCallItem {
public url: string = '/api/get/some#Distinctive-hashtag';
public auth: boolean = true;
this.apiFacade.callApi(new SomePostApiCall({ property: 'value' }, false));
this.apiFacade.callApi({
url: '/api/get/some',
data: { property: 'value' },
useExisting: false,
});
this.someGetApiResult.loading$.subscribe(loading => console.log(loading));
this.data$ = this.someGetApiResult.data$.pipe(map(someParsingLogic));