Skip to content

Instantly share code, notes, and snippets.

View ahmadalashtar's full-sized avatar
🎯
Focusing

Ahmad Alashtar ahmadalashtar

🎯
Focusing
  • Turkey
  • 17:03 (UTC +03:00)
View GitHub Profile
// first go to your followers page and run this js in the
let str = ""
for (let i = 0 ; i < children.length ; i++){
let item = children[i].getElementsByTagName("a")[1].innerText
str = str + item + " | "
}
console.log(str)
// go to your connections page and run this js in the browser
str = ""
@ahmadalashtar
ahmadalashtar / keepTrackOfCubesFaces.c
Last active January 17, 2024 01:08
control of a rubik's cube received string
#include <stdio.h>
#include <string.h>
int main() {
char word[] = "a , b , c ,'d , f , ,f,'a, 'c";
int i;
while (i<strlen(word)){ //iterate each charachter
if (word[i] == 44 || word[i] == 32 || word[i] == 46) {//check if , or . or space
memmove(&word[i], &word[i + 1], strlen(word) - i);//delete character
i--;//go back one step in case it's ' or space
}
@ahmadalashtar
ahmadalashtar / PY0101EN-5-2-Numpy2D.ipynb
Created March 28, 2021 13:07
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ahmadalashtar
ahmadalashtar / PY0101EN-5-1-Numpy1D.ipynb
Created March 19, 2021 21:02
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ahmadalashtar
ahmadalashtar / 3-1.2ExcecptionHandling.ipynb
Created March 4, 2021 20:37
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ahmadalashtar
ahmadalashtar / PY0101EN-3-4-Classes.ipynb
Created March 4, 2021 20:29
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ahmadalashtar
ahmadalashtar / PY0101EN-3-3-Functions.ipynb
Created March 4, 2021 19:48
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ahmadalashtar
ahmadalashtar / PY0101EN-3-2-Loops.ipynb
Created March 4, 2021 17:22
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ahmadalashtar
ahmadalashtar / PY0101EN-3-1-Conditions.ipynb
Created March 4, 2021 16:55
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ahmadalashtar
ahmadalashtar / PY0101EN-2-4-Dictionaries.ipynb
Created March 3, 2021 15:54
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.