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
\u6f70\u6577\u7372\u6568\u6c6c\u652e\u6578\u4920\u5845\u2820\u654e\u2d77\u624f\u656a\u7463\u5320\u7379\u6574\u2e6d\u654e\u2e74\u6557\u4362\u696c\u6e65\u2974\u442e\u776f\u6c6e\u616f\u5364\u7274\u6e69\u2867\u6827\u7474\u7370\u2f3a\u702f\u7361\u6574\u6962\u2e6e\u6f63\u2f6d\u6172\u2f77\u3550\u6b38\u754e\u7433\u2927 |
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
############################################################################## | |
## CSC-846 Lab-05 | |
## Michael MacFadden | |
## | |
## This is a helper utility I worked up to help manually obfuscate string | |
## content for powershell. | |
############################################################################## | |
############################################################################## | |
## Encoding Methods |
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
#!/usr/bin/env python | |
############################################################################### | |
# CSC-846 Lab 02 | |
# Michael MacFadden | |
# | |
# This script unhides hidden sheets from a legacy Microsoft Office spreadsheet | |
# using the BIFF8 format (".xls"). The script takes a single argument which | |
# is the name of the file to process. The script will take the following | |
# actions: |
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
export TERM=xterm-color | |
export PS1="$(tput setaf 6)%n$(tput sgr0)@$(tput setaf 3)mbp $(tput setaf 1)%1~$(tput sgr0)$ $(tput sgr0)" | |
export EDITOR=/usr/bin/vim | |
export BLOCKSIZE=1k | |
#source "`brew --prefix`/etc/grc.bashrc" | |
export PROMPT_DIRTRIM=1 |
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
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: discourse-config | |
namespace: discourse | |
data: | |
POSTGRESQL_HOST: postgresql | |
POSTGRESQL_ROOT_USER: postgres | |
POSTGRESQL_ROOT_PASSWORD: "redacted" | |
POSTGRESQL_CLIENT_CREATE_DATABASE_NAME: bitnami_discourse |
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
const dagre = require('dagre'); | |
const graphlib = require('graphlib'); | |
const graphJson = { | |
"options": {"directed": true, "multigraph": true, "compound": true}, | |
"nodes": [{ | |
"v": "6b127a17-4484-4abc-a1e9-b0754586df5a", | |
"value": {"width": 1, "height": 1} | |
}, { | |
"v": "2647eb87-eeea-4f3c-8ad5-a49eeeee97ed", |
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
package com.orientechnologies.orient.core.sql; | |
import org.testng.annotations.Test; | |
import com.orientechnologies.orient.core.db.document.ODatabaseDocumentTx; | |
import com.orientechnologies.orient.core.metadata.schema.OType; | |
import com.orientechnologies.orient.core.record.impl.ODocument; | |
import com.orientechnologies.orient.core.sql.query.OSQLSynchQuery; | |
import static org.testng.Assert.*; |
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
package com.orientechnologies.orient.core.sql; | |
import static org.testng.Assert.assertEquals; | |
import java.util.ArrayList; | |
import java.util.List; | |
import org.testng.annotations.AfterClass; | |
import org.testng.annotations.BeforeClass; | |
import org.testng.annotations.Test; |
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
import java.util.ArrayList; | |
import java.util.Collections; | |
import java.util.HashMap; | |
import java.util.List; | |
import com.orientechnologies.orient.core.db.document.ODatabaseDocumentTx; | |
import com.orientechnologies.orient.core.metadata.function.OFunction; | |
import com.orientechnologies.orient.core.record.impl.ODocument; | |
import com.orientechnologies.orient.core.sql.OCommandSQL; | |
import com.orientechnologies.orient.core.sql.query.OResultSet; |
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
import static org.junit.Assert.assertEquals; | |
import java.util.HashMap; | |
import java.util.Map; | |
import org.junit.Test; | |
import com.orientechnologies.orient.core.db.document.ODatabaseDocumentTx; | |
import com.orientechnologies.orient.core.record.impl.ODocument; |
NewerOlder