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
please let me turn off 2fa :) |
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
GITHUB help me I've broke my Galaxy SII and have recovery codes on it (very stupid way of save recovery codes...) :/ | |
Why do You don't allow TOTP thru SMS *and* authenticator app simultaneously :/ | |
I can send go Gist thru token authentication.. but I can't log in thru normal interface :( |
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
# http://i3wm.org/docs/userguide.html | |
# font pango: share tech mono, comfortaa, FontAwesome, octicons, Ionicons 10 | |
# Lekton, NotCourierSans, SaxMono | |
font pango: Ubuntu Mono for Powerline, KlarTextMono, comfortaa, FontAwesome, octicons, Ionicons 11 | |
# ubuntu 10 | |
# ubuntu mono 11 | |
smart_borders on | |
# on / no_gaps | |
# gaps inner 5 |
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
// Answers | |
// 1 # Looping a triangle | |
// # http://eloquentjavascript.net/02_program_structure.html#p_pP646YLlGy | |
var output = ""; | |
for (var i = 1; i < 10; i++) { | |
output += "#"; | |
console.log(output); | |
} |
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
# http://i3wm.org/docs/userguide.html | |
# font pango: share tech mono, comfortaa, FontAwesome, octicons, Ionicons 10 | |
# Lekton, NotCourierSans, SaxMono | |
font pango: Ubuntu Mono for Powerline, KlarTextMono, comfortaa, FontAwesome, octicons, Ionicons 11 | |
# ubuntu 10 | |
# ubuntu mono 11 | |
smart_borders on | |
# on / no_gaps | |
# gaps inner 5 |
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
Use [master]; | |
GO | |
IF DB_ID('KSIEGARNA') IS NOT NULL DROP DATABASE KSIEGARNA; | |
GO | |
CREATE DATABASE KSIEGARNA; | |
GO | |
USE KSIEGARNA; |
na kolokwium część administracyjna -strategie backapów -przyznawanie uprawnień -indeksy -profiler (najmniej)
zadanie za 25pkt extra za backupy za połowę punktów do północy
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
use TSQL2012; | |
--******************************************************************* | |
--ZADANIE 2 | |
--******************************************************************* | |
--------------------------------------------------------------------- | |
-- Write a SELECT statement to return the contactname, contacttitle, AND companyname columns FROM the Sales.Customers table. Assign these columns with the aliases Name, Title, AND Company Name, respectively, in order to return more human-friendly column titles for reporting purposes. | |
--------------------------------------------------------------------- | |
SELECT contactname AS 'Name', contacttitle AS 'Title', companyname AS 'Company Name' | |
FROM Sales.Customers; |
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
--******************************************************************* | |
--ZADANIE 1 | |
--******************************************************************* | |
-- Create simple database for Library (5 or six tables) | |
-- -add tables, keys, constraints (default, unique, etc) | |
-- define correct data types | |
-- define 3 any views (must be useful and logical) | |
-- |
NewerOlder