Skip to content

Instantly share code, notes, and snippets.

View Ademking's full-sized avatar
🍪
Eating Cookies

Adem Kouki Ademking

🍪
Eating Cookies
View GitHub Profile
@Ademking
Ademking / README.md
Created March 8, 2021 11:07
Generate Jmeter HTML report from JMX file
jmeter -n -t /home/pc/path_to_jmx/file.jmx -l /home/pc/where_to_save_csv_log/file.csv -e -o /home/pc/where_to_save_html_report/
@Ademking
Ademking / README.md
Last active April 24, 2024 12:05
How to install acunetix (linux)
@Ademking
Ademking / palestine_places.json
Created January 31, 2021 20:01
List of palestine cities
{
"بيت لاهيا ": "109",
"جباليا": "111",
"رفح": "117",
"خانيونس ": "281",
"دير البلح ": "283",
"بيت حانون ": "294",
"غزة": "296",
"المغازي": "343",
"الناصرة": "354",
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
@Ademking
Ademking / index.html
Created December 31, 2020 02:18
Calculatrice JS
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calculatrice JS</title>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300" rel="stylesheet" type="text/css">
<style>
body {
@Ademking
Ademking / test.css
Last active December 30, 2020 07:53
test
/* Custom tlk.io Chatroom CSS */
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro');
#header {
display: none;
}
#channel {
text-transform: uppercase;
@Ademking
Ademking / fix_v2.css
Last active December 29, 2020 00:14
/* Custom tlk.io Chatroom CSS - Fix: No Avatar */
@import url('https://fonts.googleapis.com/css?family=Cairo');
#header {
display: none;
}
#channel {
text-transform: uppercase;
}
@Ademking
Ademking / fix.css
Last active December 26, 2020 03:14
Custom tlk.io Chatroom CSS - Fix: No Avatar
/* Custom tlk.io Chatroom CSS - Fix: No Avatar */
@import url('https://fonts.googleapis.com/css?family=Cairo');
#header {
display: none;
}
#channel {
text-transform: uppercase;
}
@Ademking
Ademking / README.md
Last active July 31, 2020 03:58
How to expose virtual machine to Internet and make LDAP accessible

How to expose virtual machine to Internet and make LDAP accessible

In this example we need to make port 389 (LDAP) accessible

  1. In virtualbox, go to :
Machine --> Settings --> Network --> Attached to: Bridged Adapter
  1. In your virtual machine, get your guest ipv4 address. In our case it's: 192.168.1.4
@Ademking
Ademking / README.md
Created July 23, 2020 23:18
LDAP + Windows server 2019 + Laravel

Testing LDAP Connection (Native PHP)

  1. Install:
  • Windows server 2019
  • Make windows server IP static: In Virtualbox, Machine -> Settings -> Network -> Bridged Adapter
  1. We will need these information:
  • Server IP address: (you can get it using "ipconfig" command)
  • Admin username: (Example: Administrator)
  • Admin password: (Example: 123456789A@)