- plan prezentacji
- wstęp
- powitanie
- prezentacja autora
- cel i reguły prezentacji
- rozwinięcie
- szczegółowe omówienie tematu
- zakończenie
- powtórzenie głownych myśli
| if(const auto sys = envvar_or({"OS"}, nullptr)) | |
| return sys; | |
| throw runtime_error("the world is on fire"); // Something's *REALLY* wrong |
| // The MIT License (MIT) | |
| // Copyright (c) 2015 nabijaczleweli | |
| // Permission is hereby granted, free of charge, to any person obtaining a | |
| // copy of this software and associated documentation files (the "Software"), | |
| // to deal in the Software without restriction, including without limitation | |
| // the rights to use, copy, modify, merge, publish, distribute, sublicense, | |
| // and/or sell copies of the Software, and to permit persons to whom the | |
| // Software is furnished to do so, subject to the following conditions: |
| #!/usr/bin/env python3 | |
| def options(opts): | |
| opts.load('compiler_cxx') | |
| def configure(conf): | |
| conf.load('compiler_cxx') | |
| conf.check(features='cxx cxxprogram', cxxflags=['-std=c++14', '-Wall', '-Wextra', '-O3', '-pedantic', '-pipe'], uselib_store='M') |
| #!/usr/bin/python3 | |
| import sys | |
| import itertools | |
| def print_header(): | |
| print('#include <stdio.h>') | |
| print() | |
| print() | |
| print('int main() {') |
| [ | |
| { "keys": ["ctrl+alt+shift+l"], "command": "alignment" }, | |
| { "keys": ["ctrl+shift+d"], "command": "duplicate_lines" }, | |
| { "keys": ["ctrl+tab"], "command": "next_view" }, | |
| { "keys": ["ctrl+shift+tab"], "command": "prev_view" }, | |
| { "keys": ["ctrl+alt+f"], "command": "yapf"} | |
| ] |
Baza danych - kolekcja danych zapisanych zgodnie z określonymi regułami.
Jeden wiersz tabeli to record, który składa się z pól o różnych typach (m.in. tekst (VARCHAR), liczba dziesiętna (*INT), data, godzina).
Każdy rekord tabeli zawiera informacje o jednym elemencie, np. o uczniu.
Rekord składa się z pól, takich jak "nazwisko", "imię", "średnia ocen", etc.
Kwerenda - zapytanie skierowane do tabeli lub innej kwerendy. W wyniku jej wykonania wyświetlone zostaną rekordy tabeli w liczbie i kolejności spełniającej wyniki jej wykonania. Kwerendy pozwalają na różne sosoby na różne sposoby oglądać, zmieniać i analizować dane.
Kierownik banku zlecił swojemu podwładnemu stworzyć listę dziesięciu najbardziej zadłużonych osób, a anastęppnie poinformować ich o uregulowaniu. Poddany szefa wpadł na pomysł zrobienia listy osób z numerami telefonów i datą spłaty, a następnie informowania ich drogą telefoniczną o zbliżającym się okresie rozliczeniowym. Po wykonaniu całego zlecenia raport z danymi został dostarczony na biurko szefa.
Wykonać tabelę (imię, nazwisko, adres, numer telefonu, wysokość zadłużenia, data słaty) i wykonać pełny raport.
Hi Jędrzej,
I'm an Outreach Specialist for G2 Crowd, a user review site for business software. I came across your profile on GitHub when I was searching for Python developers and I'm curious whether you could share a little of your expertise.
We're looking to increase the number of reviews we have on our site for several developer tools so we're sending out Amazon gift cards in exchange for software reviews. The gift cards range from $10 to $25 per review.
You can see what software we're looking for reviews for and how much we're paying for them here.
| GNU gdb (GDB) 7.11 | |
| Copyright (C) 2016 Free Software Foundation, Inc. | |
| License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> | |
| This is free software: you are free to change and redistribute it. | |
| There is NO WARRANTY, to the extent permitted by law. Type "show copying" | |
| and "show warranty" for details. | |
| This GDB was configured as "x86_64-w64-mingw32". | |
| Type "show configuration" for configuration details. | |
| For bug reporting instructions, please see: | |
| <http://www.gnu.org/software/gdb/bugs/>. |