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 urllib | |
from bs4 import BeautifulSoup | |
save_folder = "/home/hydroxide/data/legal/docracy/" | |
base_url = "http://www.docracy.com" | |
doc_urls = [] | |
for i in range(1,110): | |
tag = "lease" | |
#list_page_url = base_url + "/doc/showalltagged?page=" + str(i) + "&tag=" + tag | |
#search_term = "\"consulting+services\"" |
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
using Lexico.DataModel; | |
using Lexico.DataModel.Questionnaire; | |
using Lexico.Search.NETStandard; | |
using Lexico.Web.Multitenancy.NET461; | |
using Lexico.Web.Multitenancy.NET461.User; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Text.RegularExpressions; |
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
var hwndSource = HwndSource.FromHwnd(handle); | |
if (hwndSource != null) | |
{ | |
hwndSource.AddHook(WindowProc); | |
} | |
WinAPI.ShowWindowAsync(new WindowInteropHelper(OverlayForm).Handle, 0); | |
private IntPtr WindowProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled) | |
{ |
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.clearframe.cas; | |
import java.security.GeneralSecurityException; | |
import java.util.Map; | |
import javax.security.auth.login.FailedLoginException; | |
import javax.validation.constraints.NotNull; | |
import org.jasig.cas.adaptors.jdbc.AbstractJdbcUsernamePasswordAuthenticationHandler; | |
import org.jasig.cas.authentication.UsernamePasswordCredential; | |
import org.jasig.cas.authentication.HandlerResult; | |
import org.jasig.cas.authentication.PreventedException; |
NewerOlder