View Issue Details

IDProjectCategoryView StatusLast Update
0008418Kali LinuxKali Websites & Docspublic2023-08-08 20:48
ReporterCking22 Assigned To 
PrioritynormalSeveritytextReproducibilityN/A
Status newResolutionopen 
Product Version2022.3 
Summary0008418: Delete bugs.kali.org account
Description

Hi,

Can you please tell me how to delete my account from bugs.kali.org ? Since I don't use it much I want to delete it.

Thanks

Steps To Reproduce

// Auto Generated Code for Arduino IDE
// Created using keuwlsofts Bluetooth Electronics App
// www.keuwl.com

// Steps:
// 1) Upload code and power your Arduino project
// 2) Run Bluetooth Electronics App and connect to your device
// 3) Press the reset button on your Arduino

// This auto generated code template is only a suggestion to get you started.
// It is incomplete and will need modification specific to your project.

int update_interval=100; // time interval in ms for updating panel indicators
unsigned long last_time=0; // time of last update
char data_in; // data received from serial link

void setup() {

Serial.begin(9600); //Change baud rate as required!

///////////// Build panel in app

Serial.println(".kwl");
Serial.println("clear_panel()");
Serial.print("set_grid_size(15,7)");
Serial.println("");
Serial.print("set_panel_notes(-,,,");
Serial.println(")");
Serial.println("run()");
Serial.println("
");

}

void loop() {

///////////// Receive and Process Data

if (Serial.available()){
data_in=Serial.read(); //Get next character

}

///////////// Send Data to Android device

unsigned long t=millis();
if ((t-last_time)>update_interval){
last_time=t;

}23:62:568:2���

}

Additional Information

// Auto Generated Code for Arduino IDE
// Created using keuwlsofts Bluetooth Electronics App
// www.keuwl.com

// Steps:
// 1) Upload code and power your Arduino project
// 2) Run Bluetooth Electronics App and connect to your device
// 3) Press the reset button on your Arduino

// This auto generated code template is only a suggestion to get you started.
// It is incomplete and will need modification specific to your project.

int update_interval=100; // time interval in ms for updating panel indicators
unsigned long last_time=0; // time of last update
char data_in; // data received from serial link

void setup() {

Serial.begin(9600); //Change baud rate as required!

///////////// Build panel in app

Serial.println(".kwl");
Serial.println("clear_panel()");
Serial.print("set_grid_size(15,7)");
Serial.println("");
Serial.print("set_panel_notes(-,,,");
Serial.println(")");
Serial.println("run()");
Serial.println("
");

}

void loop() {

///////////// Receive and Process Data

if (Serial.available()){
data_in=Serial.read(); //Get next character

}

///////////// Send Data to Android device

unsigned long t=millis();
if ((t-last_time)>update_interval){
last_time=t;

}

}
���

Activities

kali-bugreport

kali-bugreport

2023-08-08 20:48

reporter   ~0018290

Yet another wrongly cloned issue...

Duplicate of 0008077 (As well as 0008412 and 0008414, there are basically now three wrong clones of 0008077 :-/)

Issue History

Date Modified Username Field Change
2023-08-08 02:11 Cking22 New Issue
2023-08-08 02:11 Cking22 Issue generated from: 0008414
2023-08-08 20:48 kali-bugreport Note Added: 0018290