This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-moz-document url(chrome://browser/content/browser.xhtml) { | |
:root { | |
--tab-min-height: 32px !important; | |
--tab-border-radius: 0 !important; | |
--tabs-navbar-shadow-size: 0 !important; | |
} | |
#main-window, | |
browser[type="content-primary"], | |
browser[type="content"], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# configurations | |
RW_MUSIC=~/music | |
RW_CACHE=~/.cache/rewallpaper | |
RW_DEFAULT=~/.wallpaper.jpg | |
RW_WIDTH=1366 | |
RW_HEIGHT=768 | |
RW_MARGIN=60 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Phonebook | |
* Mohammad Amin Sameti (951019034) | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
typedef struct { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main(); | |
int input_grid(); | |
int validate_grid(); | |
int solve_cell(int row, int column); | |
int is_valid(int row, int column, int value); | |
void print_grid(); | |
int original[9][9], grid[9][9]; |