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
| """ | |
| Cyprus 2025 – Self-Employed vs Ltd take-home calculator | |
| Author: Orestis Ioannou | |
| Last updated: 20 May 2025 | |
| Usage examples | |
| -------------- | |
| # default demo revenues | |
| uv run cyprus_tax_calc_2025.py |
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
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| </head> | |
| <body> | |
| <ul id="todo-app"> | |
| <li class="todo">Walk the dog</li> | |
| <li class="todo">Pay bills</li> | |
| <li class="todo">Make dinner</li> | |
| <li class="todo">Code for one hour</li> |
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 Gallery extends Component { | |
| constructor(props) { | |
| super(props); | |
| this.state = { | |
| shareOpen: false, | |
| anchorEl: null, | |
| lightbox: false, | |
| photos: props.photos.map(photo => Object.assign({ srcSet: photo.childImageSharp.fluid.srcSet })), | |
| }; | |
| } |