- Kursa giriş, beklentilerin belirlenmesi
- Mülakat türleri: Telefon, online, onsite
- Şirket türlerine göre mülakat yaklaşımı (startup vs big tech)
- Ön hazırlık süreci:
- CV ve LinkedIn optimizasyonu
This file contains hidden or 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
import sys | |
import pathlib | |
def parse_kindle_notes(input_file): | |
with open(input_file, "r") as file: | |
lines = [x.strip() for x in file.readlines()] | |
notes_dict = {} | |
current_book = None | |
current_notes = [] |
This file contains hidden or 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
class TrieNode: | |
def __init__(self, char, value=None): | |
self.char = char | |
self.children = [] | |
self.terminates = False | |
self.value = value | |
def __str__(self): | |
if self.value is not None: | |
return f"word: {self.value}" |
These are my notes from https://www.refactoringui.com
- Start with a feature, not a layout. Details comes later, defer choices like color.
- Establish a system (of choices): font size, weight, line height, colors, spacing, shadows etc.
- Refrain from using font weights under 400 for UI work, to de-emphasize some text, use a lighter color or smaller font size instead.
This file contains hidden or 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
/* | |
* Usage: node delete_my_tweets.js {TWITTER_DATA_EXPORT}/data/tweets.js | |
* Set your twitter api keys before running the script on these env variables: | |
* TWITTER_CONSUMER_APP_KEY | |
* TWITTER_CONSUMER_APP_SECRET | |
* TWITTER_ACCESS_TOKEN | |
* TWITTER_ACCESS_SECRET | |
*/ | |
import { TwitterApi } from "twitter-api-v2"; |
AWS serverless öğrenmek isteyenlere şunları tavsiye edebilirim:
- https://theburningmonk.com blog yazıları çok iyi, ayrıca ücretli eğitimleri de oluyor, twitterda da takip edebilirsiniz çok faydalı.
- IaC için en kolay başlangıç https://www.serverless.com/framework buradaki örnek projelere bakabilirsiniz https://www.serverless.com/examples?prod_EXAMPLES_SEARCH_GROWTH%5BrefinementList%5D%5Bplatform%5D%5B0%5D=aws
- serverless'ın merkezinde Lambda var, https://www.serverless.com/aws-lambda burada güzel bir özet var
- AWS'nin serverless dokümanları da çok iyi https://aws.amazon.com/serverless/ buradan başlayıp keşfedebilirsiniz, mesela tutoriallar var https://aws.amazon.com/serverless/getting-started/?nc=sn&loc=2&serverless.sort-by=item.additionalFields.createdDate&serverless.sort-order=desc
- Bir AWS hesabı açın kendinize eğer yoksa, free tier gayet yeterli oluyor, hiç fatura ödemeden serverless öğrenebilirsiniz, billing alarm kurmayı unutmayın ama https://aws.amazon.com/blogs/mt/setting-up-an-amazon-cloudwatch
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
a { | |
color: blue; | |
} | |
a:target { | |
color: red; | |
} |
Uygulamalar ürettikleri ve sundukları veriyi saklamak için veritabanlarına ihtiyaç duyar. Bir uygulamanın verisi, farklı ihtiyaçları doğrultusunda farklı veritabanlarına yayılmış şekilde saklanabilir. Bu ihtiyaçlara ve hangi tür veritabanlarının bu ihtiyaçları karşılayabileceklerine örnekler verelim.
Bunlar en yaygın bilinen veritabanları. Mesela SQL için, PostgreSQL, MySQL; NoSQL için MongoDB, DynamoDB gibi. Bu veritabanları transactional'dır.
This file contains hidden or 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
// Define the schema for the election inspection application | |
datasource db { | |
provider = "postgresql" | |
url = env("DATABASE_URL") | |
} | |
generator client { | |
provider = "prisma-client-js" | |
} |
NewerOlder