This file contains 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
<div style="height: 150px; width:650px" class="_2Ypz6DjF0cnPXsnj_7roel"> | |
<table | |
style=" | |
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; | |
color: rgb(59, 70, 84); | |
font-size: 13px; | |
background: rgb(223, 228, 230) none repeat scroll 0% 0%; | |
transform: scale(0.633721); | |
transform-origin: left top 0px; | |
" |
This file contains 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 { Action, Reducer } from 'redux'; | |
// ----------------- | |
// STATE - This defines the type of data maintained in the Redux store. | |
export interface CounterState { | |
count: number; | |
} | |
// ----------------- |
This file contains 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
## Ignore Visual Studio temporary files, build results, and | |
## files generated by popular Visual Studio add-ons. | |
## | |
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore | |
# User-specific files | |
*.suo | |
*.user | |
*.userosscache | |
*.sln.docstates |
This file contains 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 assembly = Assembly.GetEntryAssembly(); | |
var resourceName = "ravencrt1.pfx2"; | |
var resourcePath = assembly.GetName().Name + "." + resourceName.Replace(" ", "_") | |
.Replace("\\", ".") | |
.Replace("/", "."); | |
using (var resourceStream = assembly.GetManifestResourceStream(resourcePath)) | |
{ | |
if (resourceStream != null) | |
{ | |
byte[] ba = new byte[resourceStream.Length]; |