Skip to content

Instantly share code, notes, and snippets.

@gagarin55
gagarin55 / private_fork.md
Created December 17, 2023 04:21 — forked from 0xjac/private_fork.md
Create a private fork of a public repository

The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.

The correct way of creating a private frok by duplicating the repo is documented here.

For this assignment the commands are:

  1. Create a bare clone of the repository. (This is temporary and will be removed so just do it wherever.)

git clone --bare git@github.com:usi-systems/easytrace.git

@gagarin55
gagarin55 / idea.propertie
Created March 16, 2021 06:05 — forked from ScriptedAlchemy/idea.propertie
custom IntelliJ IDEA properties
# custom IntelliJ IDEA properties
editor.zero.latency.typing=true
idea.max.intellisense.filesize=3500
idea.cycle.buffer.size=2048
@gagarin55
gagarin55 / idea.vmoptions
Created March 16, 2021 06:05 — forked from ScriptedAlchemy/idea.vmoptions
improved perf vmoptions
-Xms1024m
-Xmx3072m
-Xss64m
-XX:ReservedCodeCacheSize=512m
-XX:+UseCompressedOops
-XX:NewRatio=2
-Dfile.encoding=UTF-8
-XX:+UseConcMarkSweepGC
-XX:SoftRefLRUPolicyMSPerMB=250
-XX:NewSize=512m

ErgoWallet Individual Contributor License Agreement

Thank you for your interest in contributing to open source software projects (“Projects”) made available by ErgoWallet.io or its affiliates (“Company”). This Individual Contributor License Agreement (“Agreement”) sets out the terms governing any source code, object code, bug fixes, configuration changes, tools, specifications, documentation, data, materials, feedback, information or other works of authorship that you submit or have submitted, in any form and in any manner, to the Company in respect of any of the Projects (collectively “Contributions”).

You agree that the following terms apply to all of your past, present and future Contributions. Except for the licenses granted in this Agreement, you retain all of your right, title and interest in and to your Contributions.

Copyright License

You hereby grant, and agree to grant, to the Company a non-exclusive, perpetual, irrevocable, worldwide, fully-paid, royalty-free, transferable copyright licens

No it's not.
In electron you can use a memory history instead of hash, yeah?
import {
createMemorySource,
createHistory,
LocationProvider
} from "@reach/router"
@gagarin55
gagarin55 / redux-actions.ts
Created March 29, 2018 09:24 — forked from milankorsos/redux-actions.ts
Correct TypeScript typing example for Redux Thunk actions
import {Action, ActionCreator, Dispatch} from 'redux';
import {ThunkAction} from 'redux-thunk';
// Redux action
const reduxAction: ActionCreator<Action> = (text: string) => {
return {
type: SET_TEXT,
text
};
};
### Keybase proof
I hereby claim:
* I am gagarin55 on github.
* I am gagarin55 (https://keybase.io/gagarin55) on keybase.
* I have a public key ASAz26ZC7BLn88ugIqRpYcpUAl6fNVXodTfFvS-MT-AoVAo
To claim this, I am signing this object:
@gagarin55
gagarin55 / ethereum_frameworks
Created April 28, 2017 09:15
Ethereum SmartContracts Framework
Truffle (https://github.com/trufflesuite/truffle) JavaScript
Populus (https://github.com/pipermerriam/populus) Python