-
Ask for the following in one batch: a) the main "Which topic do you like to cover": . b) Ask for the product (if no skip) "Do you have a specific product you can solve the pain of your client": c) Ask for more and d) Ask if the output should be German or English.
-
Research online for the topic. If you able to research online then skip.
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
// SPDX-License-Identifier: BUSL-1.1 | |
pragma solidity 0.8.17; | |
import { IPortfolio } from "../../contracts/core/interfaces/IPortfolio.sol"; | |
import { IPortfolioFactory } from "../../contracts/front-end-helpers/IPortfolioFactory.sol"; | |
import { IAllowanceTransfer } from "../../contracts/core/interfaces/IAllowanceTransfer.sol"; | |
import { IRebalancing } from "../../contracts/rebalance/IRebalancing.sol"; | |
import { Addresses } from "../foundry/utils/Addresses.sol"; | |
import { PortfolioDeployment } from "./utils/PortfolioDeployment.s.sol"; | |
import { FunctionParameters } from "../../contracts/FunctionParameters.sol"; |
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
// SPDX-License-Identifier: BUSL-1.1 | |
pragma solidity 0.8.17; | |
import { IPortfolio } from "../../contracts/core/interfaces/IPortfolio.sol"; | |
import { IPortfolioFactory } from "../../contracts/front-end-helpers/IPortfolioFactory.sol"; | |
import { IAllowanceTransfer } from "../../contracts/core/interfaces/IAllowanceTransfer.sol"; | |
import { IRebalancing } from "../../contracts/rebalance/IRebalancing.sol"; | |
import { Addresses } from "../foundry/utils/Addresses.sol"; | |
import { PortfolioDeployment } from "./utils/PortfolioDeployment.s.sol"; | |
import { FunctionParameters } from "../../contracts/FunctionParameters.sol"; |
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
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.22; | |
import "forge-std/console.sol"; | |
import "forge-std/Test.sol"; | |
contract XTest is DSTest { | |
uint256 expires = 1000; | |
uint256 constant GRACE_PERIOD = 90 days; |
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
function onEntry(entry) { | |
entry.forEach((change) => { | |
if(change.isIntersecting) { | |
change.target.classList.add('visible'); | |
} | |
}); |
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
module Exchange.TradeHistory exposing (..) | |
import Crypto.HMAC exposing (sha256, sha512) | |
import Word.Bytes as Bytes | |
import Word.Hex as Hex | |
import Http | |
import HttpBuilder exposing (RequestBuilder, withBody, withHeader, withExpect, withQueryParams) | |
import Json.Decode exposing (..) |
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
<UserControl | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | |
xmlns:vm="clr-namespace:BrewPal.Modules.InventoryModule.ViewModels" | |
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity" | |
mc:Ignorable="d" | |
x:Class="BrewPal.Modules.InventoryModule.MainMenuView" | |
d:DesignWidth="640" d:DesignHeight="480" Height="80" Padding="0,10" |
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
public class UIViewService : IUIViewService | |
{ | |
readonly IRegionManager _regionManager; | |
public UIViewService(IRegionManager regionManager) | |
{ | |
_regionManager = regionManager; | |
} | |
public void ActivateNewOrExistingViewInContentItem(UIElement view, string viewName, string regionName) |
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
public class InventoryModule : IModule | |
{ | |
protected IUnityContainer container; | |
protected IRegionManager regionManager; | |
protected InventoryModule(IUnityContainer container, IRegionManager manager) | |
{ | |
this.container = container; | |
regionManager = manager; |
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
class Bootstrapper : UnityBootstrapper | |
{ | |
#region Overrides of UnityBootstrapper | |
protected override DependencyObject CreateShell() | |
{ | |
var shell = new Shell(); | |
shell.Show(); | |
return shell; | |
} |