Random Flashcards

1
Q

xcopy recurse

A

/e

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

xcopy no prompt

A

/y

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

rmdir with non-empty directory

A

rmdir ___ /y

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

use “for” to recursively copy files

A

for /r C:\Folder %f in (*.png) do @copy “%f” C:\png

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

endpoint where “add data field” hits

A

CompanyContactController

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Where does this live in the database? applicationUser.CompanyUserPermissions.IsCompanySystemAdmin

A

straight-up on the User table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Hipchat: /code ___

A

format

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Hipchat: /quote ___

A

special formatting

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Hipchat: /clear

A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Hipchat: /me

A

Chat about yourself in the third person

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Hipchat emoticons work like this: (taco)

A

can add custom ones easily

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

table modified when user hits “add field” endpoint

A

CompanyRoomContactField

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

CompanyRoomContactField structure

A

1 row per company; CompanyId and a JSON details field { “RoomContactTypeId”: “lisagent”, “RoomContactTypeName”: “Listing Agent”, “ContactIndex”: 3, “UpdatedDisplayName”: “Listing Agent 151”, “RoomContactFields”: [ { “RoomContactFieldId”: “name”, “RoomContactFieldName”: “Name”, “IsShownToAll”: false, “IsRequiredOnSubmit”: false, “IsRequiredOnCreate”: false, “UpdatedDisplayName”: null },

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

speed up Visual Studio (Code Lens specifically)

A

Tools > Options > Text Editor > All Languages > Code Lens > Turn everything off except Show References

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

speed up Visual Studio (Code Lens specifically)

A

Tools > Options > Text Editor > All Languages > Code Lens > Turn everything off except Show References

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

All DTR textboxes and selects have the class ___

A

input-text and input-select

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

how to do serve-from-disk

A

two terminals: 1) npm build –watch; 2) lite-server –base-dir=”dist”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

LINQ DefaultIfEmpty

A

Returns the elements of the specified sequence or the type parameter’s default value in a singleton collection if the sequence is empty

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

Recursive rename from command line

A

for /R %x in (*.m4v) do ren “%x” *.avi

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

TS declare keyword

A

tell TS you’re referencing code that exists elsewhere

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

if a file has the extension .d.ts then

A

each root level definition must have the declare keyword prefixed to it. This helps make it clear to the author that there will be no code emitted by TypeScript. The author needs to ensure that the declared item will exist at runtime

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

VSC “box select”

A

Ctrl-Alt-Shift-arrows

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

Ctrl-Shift-L

A

select all instances of a string

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

trying out Bookmarks VSC extension

A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Ctrl-Alt-K
toggle bookmark
26
Ctrl-Alt-L, Ctrl-Alt-J
next bookmark, prev bookmark
27
for /f
parse lines in a text file for /f "tokens=1 delims=(" %x in (iss.txt) do @echo %x
28
set up ww inner and outer iis sites, ports
4210, 4211
29
declare need for explicit Angular injection of primitive type
constructor(@Inject('para') \_para:string)
30
set up provider for Angular injection of primitive type
add to providers: { provide: 'key', useValue: 'myvalue' }
31
multiple modules with the same name differing only by casing error
clean up npm; make sure casing is identical in all import statements
32
because the database used to return biz strings...
DTRDatabaseException can still be considered a biz-tier exception
33
how to find the Code Review Checklist in Confluence
Developer Information / Standards and Policies / Code Review Checklist
34
new pull request steps
After Merge to Develop branch add Build # from Distelli to JIRA as comment and tag with next release label UI changes must have screen shot in Pull Request showing new UI
35
what does it mean to "tag with next release label"
?
36
does something generate RoomFields.resx?
...
37
i like that bree and koz remember more about the dynamicMenu angular stuff than I do
...
38
Add'l thing if I want to refresh my postman from the shared one (this isn't covered by "git pull")
build postmansetup
39
making my local database have permission to run Postman tests
Give iis apppool user access to your sql server database (my apppool for port 53134 is "dtr"), so user would be IIS APPPOOL\dtr)
40
newman is used for
converting json files to XML test output (Postman-related)
41
run just postman tests
build PostmanTest
42
IIS APPPOOL\dtr should be edited to have the following user roles
db\_owner on Cartavi
43
what's the diff between PostmanSetup and PostmanDownload?
PostmanDownload pulls from "your cloud Postman" to the local file (use only if you've changed something); PostmanSetup pushes from your local file to "your cloud Postman"
44
what does "build TestAll" do
run unit, integration, and Postman tests
45
install casper
install phantomjs or slimerjs, then "npm install casperjs" (install npm types for phantomjs and casperjs too)
46
slimerjs vs phantomjs
Contrary to PhantomJS, SlimerJS is not headless: you see windows and it needs a graphical environment
47
ghostjs
Side note: If you can use ES7, take a look at ghostjs, which supports the new async/await syntax
48
I didn't even know that npm contained stuff that isn't node libraries
Is CasperJS a node.js library? No. CasperJS is written on top of PhantomJS, which is a node-independent Qt/WebKit based library. If you try to run your CasperJS script with node, it just won’t work out of the box. Hint: If you want to drive CasperJS from node, try SpookyJS
49
is PhantomJS a node.js library?
No - it's a node-independent Qt/WebKit based library
50
SpookyJS is no longer maintained
If you are simply looking to control Phantom from Node and don't need Casper's API, have a look at PhantomJS 1.8, which has native WebDriver support
51
if you need to open URLs from node instead of the command line
npm install opn
52
phantomjs is an old npm name
use phantomjs-prebuilt instead
53
you transpile the .js script from .ts, which is then fed into the Phantom command line
and not run from node, as assumed
54
page.evaluate(...JS...)
var title = page.evaluate(function() { return document.title; }); console.log('Page title is ' + title);
55
inside a basic phantomjs script
var page = require('webpage').create(); page.open('http://www.cnn.com', function (status) { }, function(status) { // This is oddly the one that is called });
56
sample of DOM selection within a phantom script
var ua = page.evaluate(function() { return document.querySelectorAll('.cd\_\_headline-text').textContent; });
57
page.evaluate() must return something JSON serializable
...
58
allow capture of console messages executed during evaluate() calls
page.onConsoleMessage = function (msg) { console.log(msg); }
59
specify phantom cookies
--cookies-file=/path/to/cookies.txt
60
how do you add an admin in a FB group
go to that member; click Make Admin
61
fb admin vs moderator
admins are superset; can make other members moderators, edit core group info, etc.
62
to run casper, feed a script that uses it into phantom, as in
phantomjs casperjs.js sample.js
63
run Jasmine tests
build JasmineTest
64
Jasmine configuration lives in
Cartavi.WebMvc.Ui.Jasmine/Chutzpah
65
should I install Chutzpah vs extension
...
66
TS --strict
opt into a strict-by-default mode so that you enjoy all the benefits of better type safety without having to enable each compiler option separately
67
--strict enables four strictness options
--strictNullChecks --noImplicitAny --noImplicitThis --alwaysStrict
68
override --strict for just one strictness option
{ "strict": true, "alwaysStrict": false }
69
do I need to import es6-shims to get around TS errors in swd-cli
...
70
--check-js
report errors in js files
71
July 27 Doomfist
...
72
If --lib is not specified a default library is injected. The default library injected is:
► For --target ES5: DOM,ES5,ScriptHost ► For --target ES6: DOM,ES6,DOM.Iterable,ScriptHost
73
is there no @types wrapper for es6-shims?
...
74
how do Angular CLI projects polyfill es6 stuff?
...
75
what is the core-js npm package?
...
76
can typescript do any kind of import on pure js?
...
77
how do I import everything from corejs?
...
78
--listEmittedFiles
tsc option
79
categories of "lib" options
JavaScript Bulk Feature (es5, es6, es2015, es7, es2016, es2017, esnext) Runtime Environment (dom, dom.iterable, webworker, scripthost) ESNext By-feature options (even smaller than bulk feature)
80
add a statsd counter
StatsdService.Counter("QueueReadItems", count, 1, tags);
81
add a statsd increment
StatsdService.Increment("QueueProcessedItems", 1, 1, tags);
82
how to initialize statsd in an Application\_Start
StatsdConfiguration.Configure("DTRJobs");
83
what is statsd
a standard and, by extension, a set of tools that can be used to send, collect, and aggregate custom metrics from any application
84
how widespread is our use of statsd in the application?
...
85
learned that Angular CLI's "" makes relative pathing not work
took it out
86
learned that Angular CLI's "" makes relative pathing not work
took it out
87
if PostmanTest gives "couldn't open file NewmanData/global-variables.json"
create that file containing "{}" in /buildscripts/NewmanData
88
Why do batch files sometimes just stop processing the rest of the commands?
...
89
if postman tests fail, how to learn more
open your own Postman, run the same test that failed, work with it there
90
if postman fails with ECONNREFUSED . . .
your IIS probably isn't started
91
Do we need something special other than "placeholder" attribute
No
92
set up a BehaviorSubject from an existing observable
new BehaviorSubject(0).subscribe(myObservable)
93
set up a BehaviorSubject from an existing observable
new BehaviorSubject(0).subscribe(myObservable); will pass all 3 types of events
94
FOUT
flash-of-unstyled-text (FOUT)
95
Construct 3 web font support
You can import fonts in a range of formats, such as TTF or EOT, but we recommend Web Open Font Format (WOFF) which is now widely supported
96
installing Construct addons
Simply download the .c2addon file, then drag and drop the file in to the Construct 2 window
97
Construct 3 has three new editors
Dictionary, Array, and Text Editor (which can do custom XML or JSON files)
98
Both Array and Dictionary files can be requested at runtime with the AJAX object, and then the result loaded by the Array or Dictionary object
...
99
Spriter
2D sprite animation Use your Spriter animation files directly in your games to benefit from silky smooth tweened animations that take a fraction of the memory. Suddenly customizable player characters and smoothly animated giant on-screen bosses are a breeze Free version; pro is $59
100
What is Monogame
an efficient, flexible, cross platform API for developing 2D and 3D games (related to Xamarin)
101
Construct layers
Layers belong to a layout and can be added, edited and removed in the Layers Bar. Layers can be scrolled at different rates for parallax effects, and also individually scaled and rotated, which makes them a powerful way to make interesting visual effects in games.
102
at least once a week, maybe on the weekend, glance at this in Todoist
your active projects
103
A common arrangement for layers might be
HUD (top layer - health bar, UI info etc.) Foreground (main game objects) Middleground (a parallaxing background layer) Background (bottom layer - the background)
104
Layers can also have ___ applied, which affects all content appearing on the layer.
Layers can also have effects applied, which affects all content appearing on the layer.
105
global layers
Sometimes many layouts in a project have the same content on a particular layer, such as for interface or HUD overlaid on to the game. Changing this content then becomes a chore since changes must be repeated on every layout. Global layers are aimed at solving this problem. If a layer's Global property is set to Yes, then every layer in the project with the same name is overridden by that layer. The initial objects, as well as its properties, are used instead of the other layer's own content and properties.
106
layer setting "Use render cells"
Optimise the rendering of this layer for extremely large layouts with a large number of static objects spread out across this layer. This is not normally necessary except for certain types of large game. If this is used incorrectly, it can actually make rendering less efficient, so make sure you can measure a performance improvement before using it. For more information, see the blog post How render cells work.
107
Layer parallax
Change the rate at which the layer scrolls in the horizontal and vertical directions. A parallax rate of 100, 100 means ordinary scrolling, 0, 0 means it will never scroll (useful for UIs), 50, 50 means scrolling half as fast, etc.
108
Layer locking
Objects on locked layers cannot be selected
109
Construct objects
Plugins define a kind of object. For example, a Sprite is a kind of object. Javascript programmers can make new plugins (and behaviors) using the Javascript SDK.
110
All instances of an object type use its behaviors. You cannot add a behavior to only some of the instances
...
111
Construct effects
Effects change the visual appearance of an object. Effects do not work on all platforms, because it requires WebGL support. However, fallbacks can be set up so everything still appears reasonably when WebGL is not supported. Note effects are separate to the blend mode which is supported on all platforms.
112
Construct families
Families are groups of object types. This can help avoid repeating events for different object types in large projects.
113
Construct containers
Containers are an advanced feature for picking a group of instances at the same time in events. This is useful for building composite objects (objects made from multiple objects, such as a tank made from a base sprite and a turret sprite).
114
The 8 Direction behavior is blocked by any objects with the ___ behavior.
Solid
115
A useful feature of the Turret behavior is the ability to use
predictive aim
116
Construct UIDs
All objects at runtime have a unique ID assigned, which is a number starting at 0 for the first instance and incrementing by 1 for every other instance. It is returned by the object's UID expression. This number can be used to uniquely identify a single instance throughout an entire game
117
Construct IIDs
All objects at runtime have an index ID assigned, which is the number of the instance within its own object type. It is returned by the object's IID expression
118
ACEs term
Actions, conditions and expressions (ACE or ACEs)
119
npm update will only inspect top-level packages
To get the old behavior, use npm --depth 9999 update
120
npm-check-updates
seems awesome; install -g; ncu as alias; run ncu -u to update package.json
121
dir by creation time
dir /t:C
122
microskill: add PhantomJS
...
123
what does it mean when it says "index.d.ts is not a module" ?
?
124
the target of the new operator must be a value. Classes occupy an interesting place in the language because they are represent both a type and a value
...
125
find out about "export default"
...
126
in phantomjs index.d.ts
declare module "webpage" { export function create(): WebPage; }
127
import a simple .d.ts typing
import "webrtc"; you may need to use "moduleResolution": "node" in the compiler options. Alternatively use the "types": ["webrtc"] compiler option and the compiler will automatically load those types up for you.
128
install @types/phantom not @types/phantomjs?
...
129
the one-liner for importing a .d.ts typing
change output to ES6; and, import \* as phantom from 'phantom';
130
EaW spoiler Hera
Hera can get a vehicle out Turn 1, add C3-PO, which makes C3-PO akin to say a Holocron
131
What is the default expiration of an ASP.NET created "new HttpCookie()" . . . ?
The default Expires value for a cookie is not a static time, but it creates a Session cookie. This will stay active until the user closes their browser/clears their cookie
132
difference between merge and concat
merge interleaves items; concat emits all of source observable before moving on to the next
133
VSC change language mode
Ctrl-K M
134
highlight.js
syntax highlighting for the web
135
expand AST select
Shift-Alt-right (Shift-Alt-left to collapse)
136
go to next problem/error
F8 (shift-F8 to previous)
137
Ctrl-\
split editor
138
Ctrl+Alt+Right
move Editor into Next Group (ctrl-alt-left previous)
139
Ctrl+1
Focus into First Editor Group
140
Ctrl+K Ctrl+Left
Focus into Editor Group on the Left (right)
141
Ctrl+Shift+PageUp
Move Editor Left (pgdn - right)
142
Ctrl+K Left
Move Active Editor Group Left
143
Ctrl+K P
Copy Path of Active File
144
Ctrl+K W
Close Group
145
Ctrl+Tab
Open Next (Shift-Ctrl-Tab = open previous)
146
Ctrl+K Z
Toggle Zen Mode
147
Ctrl+Q
Quick Open View
148
Ctrl+K V
Open Preview to the Side
149
Ctrl+K Ctrl+S
Open Keyboard Shortcuts
150
Ctrl+K Ctrl+T
Select Color Theme
151
Open User Snippets
unassigned (me: Ctrl-U)
152
Ctrl+Shift+B
Run Build Task
153
All keyboard shortcuts in VS Code can be customized via
the keybindings.json file
154
In VSC key bindings, you can invoke a command with
arguments
155
Q: How to find out what command is bound to a specific key?
A: In the Default Keyboard Shortcuts, open Quick Outline by pressing Ctrl+Shift+O
156
Q: How to add a key binding to an action? For example add Ctrl+D to Delete Lines
...
157
...
158
rx let
is a convenience function for being able to compartmentalize logic and inject it into a pipeline
159
JIRA: Go to Issue Navigator
g then i
160
on JIRA issue: next issue = 'J' (prev = 'K')
...
161
Comment on Issue m
...
162
JIRA edit, assign
e,a
163
JIRA assign to me
i
164
Emmy and Julia's build-a-bear twins
Cocoa pup and cocoa bear
165
a frayed connection can stop all the connections in the big power block from working
...
166
Sequelize
the Sequelize library, which is an ORM (Object-Relational Mapping) tool for Node.js applications
167
Chalk
a node library for terminal string styling - console.log(chalk.blue('Hello world!')); just chain and nest the styles you want
168
Dana wants to check out http://cheesecakestoreonline.com/
Steve Buresh's Cheesecake Store and Sandwich Shp
169
Eli's test readout https://www.evernote.com/shard/s207/nl/23017663/418cde08-ceda-4606-a64a-76ad0a40a541
...
170
egghead.io 199/yr monthly and quarterly payments available 40/mo!
...
171
Reactive forms is an Angular technique for creating forms in a reactive style
...
172
Angular forms - two philosophies
Angular offers two form-building technologies: reactive forms and template-driven forms. The two technologies belong to the @angular/forms library and share a common set of form control classes. But they diverge markedly in philosophy, programming style, and technique. They even have their own modules: the ReactiveFormsModule and the FormsModule.
173
reactive forms
With reactive forms, you create a tree of Angular form control objects in the component class and bind them to native form control elements in the component template, using techniques described in this guide. You create and manipulate form control objects directly in the component class. As the component class has immediate access to both the data model and the form control structure, you can push data model values into the form controls and pull user-changed values back out. The component can observe changes in form control state and react to those changes.
174
template-driven forms
While this means less code in the component class, template-driven forms are asynchronous which may complicate development in more advanced scenarios.
175
forms: async vs sync
Reactive forms are synchronous. Template-driven forms are asynchronous. It's a difference that matters. In reactive forms, you create the entire form control tree in code. You can immediately update a value or drill down through the descendents of the parent form because all controls are always available. Template-driven forms delegate creation of their form controls to directives. To avoid "changed after checked" errors, these directives take more than one cycle to build the entire control tree. That means you must wait a tick before manipulating any of the controls from within the component class.
176
FormControl
FormControl is a directive that allows you to create and manage a FormControl instance directly. export class HeroDetailComponent1 { name = new FormControl(); }
177
FormControl constructor
A FormControl constructor accepts three, optional arguments: the initial data value, an array of validators, and an array of async validators.
178
binding a FormControl
179
core form classes
AbstractControl is the abstract base class for the three concrete form control classes: FormControl, FormGroup, and FormArray. It provides their common behaviors and properties, some of which are observable. FormControl tracks the value and validity status of an individual form control. It corresponds to an HTML form control such as an input box or selector. FormGroup tracks the value and validity state of a group of AbstractControl instances. The group's properties include its child controls. The top-level form in your component is a FormGroup. FormArray tracks the value and validity state of a numerically indexed array of AbstractControl instances.
180
formgroup example
Hero Detail *FormControl in a FormGroup* Name: Notice that now the single input is in a form element. The novalidate attribute in the element prevents the browser from attempting native HTML validations.
181
a "form model" backs the FormControls
Form value: {{ heroForm.value | json }} Form status: {{ heroForm.status | json }}
182
What is FormBuilder
The FormBuilder class helps reduce repetition and clutter by handling details of control creation for you
183
FormBuilder example
constructor(private fb: FormBuilder) { //
184
form group with a validator
this.heroForm = this.fb.group({ name: ['', Validators.required], });
185
selects and options
You must bind the option's value property with [value]="state". If you do not bind the value, the select shows the first option from the data model.
186
nested formgroups
this.heroForm = this.fb.group({ //
187
Inspect a single form value
Name value: {{ heroForm.get('name').value }}
188
some form properties
189
Scott G made good confluence page on invoking mobile API
...
190
mobile API url
/api/MobileApi.aspx
191
mobile API invocation - points to remember
The query string parameter "Method" must be provided to invoke the desired operation (e.g., /api/MobileApi.aspx?Method=GetCompanyRoom&...) The query string parameter "SessionId" must be provided in order to authorize the request. It must be in GUID format without brackets (e.g., /apiMobileApi.aspx?Method=GetCompanyRoom&SessionId=6D1F4702-E0FE-4310-8312-5B7C83CDBF8E) The content type of the request and response body must be text/xml and always works from a parent element
192
mapping from form model to data model
The component must copy the hero values in the data model into the form model. There are two important implications: The developer must understand how the properties of the data model map to the properties of the form model. User changes flow from the DOM elements to the form model, not to the data model. The form controls never update the data model. The form and data model structures need not match exactly. You often present a subset of the data model on a particular screen. this alignment facilitates copying the data model properties to the form model with the **patchValue** and **setValue** methods
193
how to invoke command line from node.js
There is a Child Process Module which allows to execute a child process. You will need either child\_process.exec, child\_process.execFile or child\_process.spawn. All of these are similar in use, but each has its own advantages.
194
child\_process sample usage
``` const { spawn } = require('child\_process'); const bat = spawn('cmd.exe', ['/c', 'my.bat']); ``` bat.stdout.on('data', (data) =\> { console.log(data.toString()); }); bat.stderr.on('data', (data) =\> { console.log(data.toString()); }); bat.on('exit', (code) =\> { console.log(`Child exited with code ${code}`); });
195
vsc fold recursively
Ctrl-K Ctrl-[
196
Fold All, or Fold Level N
Ctrl-K Ctrl-0, Ctrl-K Ctrl-{n}
197
dev and test - simpsons password
cartavi321!
198
json-server
You can access your fake API from anywhere using CORS and JSONP
199
Project Scorpio
Xbox One X
200
Type 4 - direction of growth
Back to basics today: remember that your Direction of Growth is to One, which means overcoming self-absorption, acting on objective principles, and being led by reality. Do you sense this movement of growth in yourself?
201
Type 5 - direction of growth
Back to basics today: remember that your Direction of Growth is to Eight, which allows you to become grounded in your body and feeling the self-confidence of the power of your instinctual energy. Do you sense this movement of growth in yourself?
202
Type 4 - basic desire
your Basic Desire is to find yourself and your significance and to create an identity out of your inner experience
203
Type 5 - basic desire
your Basic Desire is to understand reality and uncover the essence of things
204
deuterocanonical vs protocanonical books (vs non-canonical)
The deuterocanonical books (from the Greek meaning "belonging to the second canon") are the books and passages of the Christian Old Testament that are not part of the Hebrew Bible. The term, used since the 16th century by the Catholic Church and sometimes by Orthodox Christianity, distinguishes these texts from the protocanonical books, which are the books contained in the Hebrew canon
205
Eastern Orthodox texts
The Eastern Orthodox canon includes the deuterocanonical books listed above, plus 3 Maccabees and 1 Esdras
206
Catholic deuterocanonical books
Tobit Judith Additions to Esther (Vulgate Esther 10:4–16:24)[9] Wisdom (also called the Wisdom of Solomon) Sirach (also called Ecclesiasticus) Baruch, including the Letter of Jeremiah (Additions to Jeremiah in the Septuagint)[10] Additions to Daniel: Prayer of Azariah and Song of the Three Holy Children (Vulgate Daniel 3:24–90) Susanna (Vulgate Daniel 13, Septuagint prologue) Bel and the Dragon (Vulgate Daniel 14, Septuagint epilogue) 1 Maccabees 2 Maccabees
207
KJV Apocrypha
The Apocrypha section of the original 1611 King James Bible includes, in addition to the deuterocanonical books, the following three books: 1 Esdras (Vulgate 3 Esdras) 2 Esdras (Vulgate 4 Esdras) Prayer of Manasseh
208
food order-ahead apps
[https://www.evernote.com/shard/s207/nl/23017663/b11ceffa-04cd-4b75-8c7d-aad45988cffd](https://www.evernote.com/shard/s207/nl/23017663/b11ceffa-04cd-4b75-8c7d-aad45988cffd)
209
Angular 4.3 (HC)
HttpClient, a smaller, easier to use, and more powerful library for making HTTP Requests
210
Ang4.3 conditionally disable animations
Conditionally disable animations via a new attribute, [@.disabled]
211
Ang5 - smaller, faster; AoT becomes the default
... Ang5 in Oct2018
212
what is temp close vs perm close
there is a temp close situation when attempting to corner the villain
213
Stach is pathfinder character \_\_\_
Lem
214
Bree is pathfinder character \_\_\_
Seoni
215
blessing card that can recharge instead of discarding if they match top card of blessings deck
Torag, Sarenrae
216
Guidance
add 1 to any check
217
Battleaxe
strength +1d6, discard for +1d8, but +4 difficulty if no weapons specialty
218
Koz in pathfinder
Valeros
219
there is one __ or one __ in each location pile
villain or henchman
220
if close location and villain is in there...
villain becomes only card of that pile
221
blessings can help across locations?
true
222
Brett has the ability to
play \>1 blessing at once
223
hand management idea: set aside cards that \_\_\_
could be relevant on others' turns
224
closed location cards are
turned over
225
our game "snapshot" strategy
deck down, discard up, hand down
226
I'm a Gentleman Chrome extension
Save images with one click using the hotkey alt + click Or save images dragging them (drag an image slightly to any side and release the mouse) Download every single image on the page by using the extension button (green button on the right top)
227
Kyra character card
228
Lem
229
Valeros
230
Harsk
231
Seoni
232
Merisiel
233
upcoming yellow SWD cards
234
some known new heroes in Empire at War
235
if Postman tests fail with an Unauthorized . . .
may need to run Cartavi.DataLoader\SQL\ LoadPostmanTestData.sql to set up some test users
236
choco outdated
list outdated packages
237
update chocolatey
choco upgrade or "cup" -y
238
add path permanently to system path variable from command line
set PATH=%PATH%;C:\xampp\php
239
resize to 256x
magick mogrify -resize 256x256 \*.jpg
240
convert pngs to jpgs
magick mogrify -format jpg \*.png
241
iterate lines of a file from PowerShell
$content = Get-Content outdated.txt foreach ($line in $content) { Write-Host $line }
242
how to split a string and iterate segments in Powershell
$lines = $line.Split("|") foreach ($segment in $lines) { Write-Host $segment }
243
my tritype and instinct stack
459 sp/sx/so
244
aot 1
245
aot 2
246
Tap House Grill wifi
THEBEERNET/ilovebeer
247
248
249
my instinct stacks, based on reading, for 4 and 5
on 5, what feels truer to me (ranked in order from most to least resonant, as I assume I should be doing) - so/sx/sp . . . for 4, it seems like so/sp/sx but the sp/sx are tied so maybe overall so is top, then sx, then sp (which is completely reversed from that original test result)! so/sx/sp
250
John Kelly, chief of staff
251
252
253
Evolution items guide
254
255
strange stark theism, which many denounced as atheism
Spinoza
256
did most to set medieval theology upon its Aristotelian path
Maimonides (influence over not only Judaism but Islam and Christianity)
257
Jews forced to convert under the Inquisition were called
marranos
258
Utrecht
Both a Dutch province and that province's largest city
259
'Remonstrance'
a document drawn up in 1610 by the Arminians of the Dutch Reformed Church, presenting the differences between their doctrines and those of the strict Calvinists
260
...
261
Arminius
262
soteriology
the doctrine of salvation
263
264
Collegiants
The sect began as a refuge from the perceived bitterness of the Calvinist and Arminian controversies of the day. An association, founded in 1619 among the Arminians and Anabaptists in Holland.[1] They were so called because of their colleges (meetings) held the first Sunday of each month, at which everyone had the same liberty of expounding the scripture, praying, etc. Spinoza was involved for several years
265
most major work by Spinoza
Ethics
266
Spinoza supported himself by
giving private lessons in Cartesian philosophy and by grinding lenses
267
Spanish, Hebrew, effective command of Portuguese and Dutch - but Latin became the primary vehicle of his thought
Spinoza's languages
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
Scott put this in - ALTER DATABASE Cartavi SET COMPATIBILITY\_LEVEL = 130 130 is the current level for SQL Azure and 2016 needed for some of our JSON querying syntax
...
284
285
npm install tslint-microsoft-contrib
extra lint rules
286
By and large Christian sermons have told us what to see, not how to see. Contemplating is changing the seer.
Richard Rohr on the Liturgists
287
Vatican ii - big reform in the sixties - at the height of success, big reinvention by pope John Paul II
288
Dana mom TMJ carotid arteries bad, just see cardiologist
4 out of 5 on blockage scale, needs surgery, 5% mortality rate?!
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367