##Cheat Sheet
- detailyang's Cheat Sheet
- shadowbq's Cheat Sheet
- DZone
- Our Favorite Cheat Sheets
- quick reference sheets in one page
##Interview
| /****************************************************************************** | |
| Welcome to GDB Online. | |
| GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby, | |
| C#, VB, Perl, Swift, Prolog, Javascript, Pascal, HTML, CSS, JS | |
| Code, Compile, Run and Debug online from anywhere in world. | |
| https://onlinegdb.com/-sj3UGJm9 | |
| *******************************************************************************/ |
| // | |
| // main.c | |
| // heap | |
| // | |
| // Created by ma on 25.11.2020. | |
| // | |
| #include <stdio.h> | |
| int tree_array_size = 20; |
| // | |
| // main.c | |
| // matris-odevi | |
| // | |
| // Created by ma on 24.10.2020. | |
| // | |
| // anlatım videosu: https://youtu.be/AG6vHh1WoLU | |
| #include <stdio.h> |
| const { db, admin } = require('../admin'); | |
| const functions = require('firebase-functions'); | |
| const https = require('https'); | |
| const runtimeOpts = { | |
| timeoutSeconds: 540, // firebase max of 9 minutes | |
| } | |
| const apiKey = "AIzaS**************************QX0c"; | |
| const channelId = "UCrVR30q-Seo82gBhmAe_1uQ"; |
| const { fcm } = require('../admin'); | |
| const functions = require('firebase-functions'); | |
| const duyuruBidirimiGonder = functions.firestore.document('duyurular/{baslik}').onCreate(async (veri) => { | |
| const baslik = veri.data().baslik; | |
| const mesaj = veri.data().mesaj; | |
| const tarih = veri.data().tarih; | |
| const yayinlayan = veri.data().yayinlayan; | |
| const bildirim = { |
| import 'package:flutter/material.dart'; | |
| import 'package:turkiye_il_ilce_mahalle/turkiye_il_ilce_mahalle.dart'; | |
| import '../common_widget/social_log_in_button.dart'; | |
| // screen recording video: https://youtu.be/-pIGYbtJtd0 | |
| class AbonelikFormu extends StatefulWidget { | |
| @override | |
| _AbonelikFormuState createState() => _AbonelikFormuState(); |
| import 'package:flutter/material.dart'; | |
| import 'dart:async'; | |
| import 'dart:io'; | |
| import 'package:path_provider/path_provider.dart'; | |
| void main() => runApp(MaterialApp( | |
| home: FirstScreen(), | |
| )); | |
| extension NumberFormat on int { |
| class MyApp26April extends StatelessWidget { | |
| // This widget is the root of your application. | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| title: 'Flutter Server', | |
| debugShowCheckedModeBanner: false, | |
| theme: ThemeData( | |
| primarySwatch: Colors.pink, | |
| ), |
| import 'package:flutter/material.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| title: 'Flutter Demo', | |
| debugShowCheckedModeBanner: false, |