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
| 20a7096993db432888590d09759714be078c5c45bba58f6e63a164e81d5f49e73fbbe4bb10eb |
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
| 0x4d96dd166a0f096eca9961f2b855b738fedd64e3 | |
| home: 0x5B729C1cBbf176A49F931A4105aF11E7B8F601A2 |
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
| 73292986899aa9c2bd6234a43e83710d774bd1277ca64d19b2f9ecaceb58118a695394c7146c |
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
| 0x3CC75842c62dA262c333ca74Da4978d023Ee8F55 |
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
| payment id: f72f1f2ec95e68e7a38b87d6502226be41e299e5e090a5695111fb2d421b5567 | |
| address: 47sghzufGhJJDQEbScMCwVBimTuq6L5JiRixD8VeGbpjCTA12noXmi4ZyBZLc99e66NtnKff34fHsGRoyZk3ES1s1V4QVcB |
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
| payload 7f998dde58da11b9 | |
| address 86646-64 |
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
| 0x09a2bFf33B3c6EB190EcF8eeDf26364e26bf7AA6 |
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
| #!/usr/bin/env python | |
| import wx | |
| class GeneralPage(wx.StockPreferencesPage): | |
| def CreateWindow(self, parent): | |
| panel = wx.Panel(parent) | |
| panel.SetMinSize((600, 300)) | |
| sizer = wx.BoxSizer(wx.VERTICAL) |
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
| $width: 260px; | |
| @for $i from 1 through 50 { | |
| $min-width: ($width * $i) + 10px; | |
| $max-width: ($width * ($i + 1)) + 10px; | |
| $min-width: if(($min-width + 260px) >= $sidebar-breakpoint, $min-width + 260px, $min-width); | |
| $max-width: if(($max-width + 260px) >= $sidebar-breakpoint, $max-width + 260px, $max-width); | |
| $item-width: 100% / $i; |