Skip to content

Instantly share code, notes, and snippets.

View dualyticalchemy's full-sized avatar
💤
asleep in my own mind

⚫️ nothingness negates itself dualyticalchemy

💤
asleep in my own mind
View GitHub Profile
@dualyticalchemy
dualyticalchemy / .python_version
Last active April 2, 2022 15:30
text summarization in python with nltk. be sure to download 'punkt' and 'stopwords' using `nltk.download('punkt')`, etc after running $ python in commandline, then `import nltk`. use $ pip install -r requirements.txt to install the requirements. be sure to use virtualenv if you don't want to clutter up your global python packages directory. from
3.8.2

Structure of contingency

Notice the space between the end of the parenthetical and the start of the thick arrow, this is at an intersection of content and form, where category and functional interplay demarcate processuation of the real:

YUML

(start)[Start]->(running)
# http://127.0.0.1/rss.xml me
https://www.romanzolotarev.com/rss.xml blog
https://debug.ninja/feed.xml blog
https://mwl.io/feed blog
https://thegriddle.net/feed.xml blog
https://asylum.madhouse-project.org/blog/atom.xml blog
http://hcoder.org/feed/ blog
https://www.peppercarrot.com/feed/en/rss webcomic
https://megatokyo.com/rss/strips.xml webcomic
https://megatokyo.com/rss/rants.xml blog
const chalk = require('chalk');
module.exports = (chromeOptionsConfig, active) => {
const msg = [
`Are you testing for phone or tablet? Check`,
chalk.white('/tests/conf/platform.conf.json'),
`for the default`].join(' ');
const notifications = [
{
"rel": "help",
"command": chalk.blue(msg)
describe('Home (iPad)', () => {
const baseUrl = Cypress.env('baseUrl:home-unit') || 'http://localhost:8000';
it('should check for localStorage', () => {
cy.visit(baseUrl);
const localStorage = cy.window().its('localStorage');
cy.log('checking for localStorage');
expect(localStorage).to.exist;
cy.log("condition: 'get' in localStorage", 'get' in localStorage);
expect('get' in localStorage).to.be.true;
});
import { Given, When, Then } from '../../tests/bdd';
import { compose } from '../../tests/bdd/utils/compose.js';
const { load } = require('../../tests/bdd/utils/load.js');
const config = async () => {
const platformConf = await load(__dirname, 'platform.conf.json');
cy.log('reading file');
cy.log(platformConf);
return platformConf;
};
const { has } = require('../../tests/e2e/utils/has.js')(config(), 'homeUnitTabletConfig');
Scenario: Home - Unit
Given I am on "#home-unit"
When I click "Open"
Then I should see "Crew 2"
Scenario: Navigate to Unit Crew
Given I am on "#home-unit"
Given I am on "#unit-crew"
Scenario: Home - Unit
Given I am on "#home-unit"
When I click "Show navigation menu"
Then I should see "Logout"
const { getElement } = require('./utils/getElement.js');
const { getScope } = require('./utils/getScope.js');
const { load } = require('./utils/load.js');
const config = async () => {
cy.log(__dirname);
const platformConf = await load(__dirname, '../../tests/conf/platform.conf.json');
cy.log(platformConf);
return platformConf;
};
const { has } = require('../../tests/e2e/utils/has.js')(config(), 'homeUnitTabletConfig');