Skip to content

Instantly share code, notes, and snippets.

View amanullahmenjli's full-sized avatar
Learning

Amanullah Menjli amanullahmenjli

Learning
  • Rades, Tunisia
  • 06:21 (UTC +01:00)
View GitHub Profile
@amanullahmenjli
amanullahmenjli / raycast.rasi
Created July 10, 2024 22:04
Rofi theme inspired by raycast
/* ________Variables________ */
* {
/* ________Window________ */
window-width: 800px;
window-height: 550px;
window-border: 1.75px;
window-border-color: #4A4A4C;
window-border-radius: 12px;
window-bg-color: rgba(26, 27, 38, 0.65);
@amanullahmenjli
amanullahmenjli / main.c
Created October 21, 2023 20:26
A C program to count how many times each word in a given sentence are repeated
#include <stdio.h>
#include <string.h>
int main(){
// Get a sentence of a maximum length of 100 characters from the user
char sentence[100];
printf("Enter your sentence: ");
gets(sentence);
// The table to hold the words (maximum 100 words)