Skip to content

Instantly share code, notes, and snippets.

View Echo-Peak's full-sized avatar

Michael Wheeler Echo-Peak

View GitHub Profile
@Echo-Peak
Echo-Peak / Encrypt.cs
Created November 12, 2020 01:03
C# StringCipher
using System;
using System.Text;
using System.Security.Cryptography;
using System.IO;
using System.Linq;
namespace EncryptStringSample
{
public static class StringCipher
{
function fibonacci(n) {
if(n <= 1){
return n
}else{
return fibonacci(n - 1) + fibonacci(n - 2);
}
}
console.log(fibonacci(3));
import React from 'react';
let {Component} = React;
export default class CSSIMG extends Component{
constructor(props){
super();
this.state = {};
this.displayPos = ['absolute', 'fixed' ,'relative'];
this.defaultFallbackUrl = '';
}
componentDidMount(){