Skip to content

Instantly share code, notes, and snippets.

View sukruozan's full-sized avatar

Şükrü Ozan, Ph.D. sukruozan

View GitHub Profile
@sukruozan
sukruozan / tr_long_name_list.txt
Last active February 8, 2023 10:38
This is a list of Turkish names which may contain incorrect or inaccurate entries. However, it can still be utilized for machine learning and deep learning tasks. Any advice on how to clean up the list would be greatly appreciated.
aba
abac
abaca
abacan
abay
abayhan
abaza
abbas
abdal
abdi
@sukruozan
sukruozan / script.tex
Created February 5, 2023 10:20
When preparing a presentation in Latex using the Beamer document class, standard usage replaces page numbers with their own icons in the reference page. To display classic numbered references instead, if we want, we can see that the problem is solved by writing the relevant slide in the following way. I have shown the added line to the standard …
\begin{frame}[allowframebreaks]{Bibliography}
\setbeamertemplate{bibliography item}[text]
\bibliographystyle{IEEEbib}
\bibliography{Bibliography}
\end{frame}
@sukruozan
sukruozan / resume.json
Last active November 26, 2023 14:56
JSON Resume
{
"meta": { "theme": "elegant" },
"basics": {
"name": "Sükrü Ozan",
"label": "Deep Learning/Machine Learning Engineer @ digiMOST Gmbh \n R&D Center Director @ AdresGezgini Inc.",
"image": "https://avatars0.githubusercontent.com/u/16426591?s=460&u=38f220a2c9c658141804f881c334c594eb1642ac&v=4",
"picture": "https://avatars0.githubusercontent.com/u/16426591?s=460&u=38f220a2c9c658141804f881c334c594eb1642ac&v=4",
"email": "sukruozan@adresgezgini.com",
"phone": "+49 (211) 546922714",
"url": "https://sukruozan.com",
@sukruozan
sukruozan / json2csv.py
Created June 14, 2022 08:41
This script converts an array stored as a JSON file to a CSV file.
#############################################################################
#Script Name: json2csv.py
#Description: This script converts an array stored as a JSON file
# to a CSV file.
#Date : 14.06.2022
#Author : Sukru Ozan
#Email : sukruozan@gmail.com
#############################################################################
import json
import sys
@sukruozan
sukruozan / meta.tsv
Last active June 7, 2020 11:12
128D Speaker Embedding Vectors with Labels for 31 Different Speakers
We can make this file beautiful and searchable if this error is corrected: No tabs found in this TSV file in line 0.
1001
1001
1001
1001
1001
1001
1001
1001
1001
1001
@sukruozan
sukruozan / delete_tweets.py
Created April 24, 2020 21:56
This script allows you to delete all the tweets in a twitter account using twython library. You have to first download the twitter history archive and then extract the downloaded folder. All the information regarding the tweets can be found in "tweet.js" file. This file can easly be read and manipulated using python.
import re
from twython import Twython
import sys
# authorization info of your app
auth = {'APP_KEY':'',
'APP_SECRET':'',
'OAUTH_TOKEN':'',
'OAUTH_TOKEN_SECRET':'',
'SCREEN_NAME':'',
@sukruozan
sukruozan / circularRotationAnimation.ipynb
Last active April 2, 2019 14:10
Python Matplotlib Animation - Simple Circular Rotation Motion in 2D
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sukruozan
sukruozan / beamer.tex
Last active November 3, 2017 13:35
How to get numbered references in LaTeX Beamer
\begin{frame}[allowframebreaks]{Bibliography}
\setbeamertemplate{bibliography item}[text]
\bibliographystyle{IEEEbib}
\bibliography{Bibliography}
\end{frame}