A CHIP-8 Emulator in Rust
Mandlebrot generator using OpenCL. Old project circa 2012
Adds ENUM and SET support to ActiveRecord
Advent of Code 2017 solutions. http://adventofcode.com/
pull request commentCocoaPods/shared
@segiddins Please review.
comment created time in 18 hours
PR opened CocoaPods/shared
This updated Rubocop file designed for latest Rubocop (1.8 at time)
Notable change:
- Performance linting rules extract to a standalone gem
- Cops' namespace update
AllCops/Include
is a whitelist in newer version, so must addlib/**/*.rb
- Looks like
./
has problem, remove them, this should no harm
pr created time in 18 hours
startedashtom/hkimport
started time in 20 hours
created repositorytvooo/orchard
A personal wiki, outliner, and task manager
created time in 20 hours
push eventSkyscanner/backpack
commit sha 34b350fec039cf1c2c5273db1cf6656b3c977984
Update changelog
push time in 20 hours
push eventSkyscanner/backpack
commit sha b01fcbc506709c8115fec8358cab1993df40a590
Publish - bpk-component-datatable@2.2.0
push time in 20 hours
push eventbackpack/storybook
commit sha 407ba4e3b161bd02eb8224a538dedd1d5cf865ef
deploy: Skyscanner/backpack@47c5e42489c1747d054dd5601346cd8b39e64b1d
push time in 20 hours
startedGiancarloCode/form_bloc
started time in 21 hours
pull request commentSkyscanner/backpack
[NEON-167] DataTable rowClassName can be a function
Visit https://backpack.github.io/storybook-prs/2068 to see this build running in a browser.
comment created time in 21 hours
push eventbackpack/storybook-prs
commit sha 63c91853361e5101cd4c01fbcc022be486b1cdfe
deploy: Skyscanner/backpack@c9f1759224a08f7ab9a12dd963278677130a7e04
push time in 21 hours
PR closed Skyscanner/backpack
While working on a feature to dynamically change the background of a row depending on a value, I noticed that BpkDataTable
did not allow to pass a function for rowClassName
while the original react-virtualized Table
does.
This PR extends the component to allow passing a function as in Table
Remember to include the following changes:
- [x]
UNRELEASED.md
- [ ]
README.md
- [ ] Tests
- [ ] Docs (either update backpack-docs now, or create a follow up ticket)
pr closed time in 21 hours
PR opened Skyscanner/backpack
While working on a feature to dynamically change the background of a row depending on a value, I noticed that BpkDataTable
did not allow to pass a function for rowClassName
while the original react-virtualized Table
does.
This PR extends the component to allow passing a function as in Table
Remember to include the following changes:
- [x]
UNRELEASED.md
- [ ]
README.md
- [ ] Tests
- [ ] Docs (either update backpack-docs now, or create a follow up ticket)
pr created time in 21 hours
create barnchSkyscanner/backpack
branch : NEON-167_rowClassName_can_get_function
created branch time in 21 hours
PR opened Skyscanner/backpack
While working on a feature to dynamically change the background of a row depending on a value, I noticed that BpkDataTable
did not allow to pass a function for rowClassName
while the original react-virtualized Table
does.
This PR extends the component to allow passing a function as in Table
Remember to include the following changes:
- [ ]
UNRELEASED.md
- [ ]
README.md
- [ ] Tests
- [ ] Docs (either update backpack-docs now, or create a follow up ticket)
pr created time in a day
push eventbackpack/ios-prs
commit sha 71a83d9dd36d56d840850f81da0301ccf7919808
deploy: Skyscanner/backpack-ios@5e09bd9feb6879837e97267d533d8666f3518077
push time in a day
startedzino-app/graphql-flutter
started time in a day
PR closed Skyscanner/backpack-ios
Add Persistent and Modal Presentation Style
This PR has the objective to introduce a new style of presentation to BottomSheet. Now we are capable to present it modally or persistently.
Persistent Bottom Sheet
It can be initialized by using
let bottomSheet = BPKBottomSheet(contentViewController: viewController,
scrollViewToTrack: viewController.tableView,
bottomSectionViewController: nil,
presentationStyle: .persistent)
To use the .persistent
presentation style we need to ensure to use the method addPanel
instead of present
.
This will allow the following behavior.
What is New
- New parameter in the initialization called
presentationStyle
which is an enum
public enum PresentationStyle {
case modal
case persistent
}
- New layout definition:
ModalBottomSheetLayout
andPersistentBottomSheetLayout
- New
addPanel(toParent parent: UIViewController)
method, that will add a BottomSheet and make it persistent and allow you to interact with the parent view controller - New
removePanel(animated: Bool)
in case you added a BottomSheet persistently but needs to hide it for some loading interaction or something else. - New
public func move(to position: BPKFloatingPanelPosition)
that will allow you to programmatically change the position of the BottomSheet.
- [X] Check this if you have read and followed the contributing guidelines
Remember to include the following changes:
- [ ]
UNRELEASED.md
- [ ]
README.md
- [ ] Tests
- [ ] Screenshotting code
- [ ] Adding a component? Remember to expose it in the main
Backpack.h
header file - [ ] Docs (either update backpack-docs now, or create a follow up ticket)
If you are curious about how we review, please read through the code review guidelines
pr closed time in a day
PR opened Skyscanner/backpack-ios
Add Persistent and Modal Presentation Style
This PR has the objective to introduce a new style of presentation to BottomSheet. Now we are capable to present it modally or persistently.
Persistent Bottom Sheet
It can be initialized by using
let bottomSheet = BPKBottomSheet(contentViewController: viewController,
scrollViewToTrack: viewController.tableView,
bottomSectionViewController: nil,
presentationStyle: .persistent)
To use the .persistent
presentation style we need to ensure to use the method addPanel
instead of present
.
This will allow the following behavior.
What is New
- New parameter in the initialization called
presentationStyle
which is an enum
public enum PresentationStyle {
case modal
case persistent
}
- New layout definition:
ModalBottomSheetLayout
andPersistentBottomSheetLayout
- New
addPanel(toParent parent: UIViewController)
method, that will add a BottomSheet and make it persistent and allow you to interact with the parent view controller - New
removePanel(animated: Bool)
in case you added a BottomSheet persistently but needs to hide it for some loading interaction or something else. - New
public func move(to position: BPKFloatingPanelPosition)
that will allow you to programmatically change the position of the BottomSheet.
- [X] Check this if you have read and followed the contributing guidelines
Remember to include the following changes:
- [ ]
UNRELEASED.md
- [ ]
README.md
- [ ] Tests
- [ ] Screenshotting code
- [ ] Adding a component? Remember to expose it in the main
Backpack.h
header file - [ ] Docs (either update backpack-docs now, or create a follow up ticket)
If you are curious about how we review, please read through the code review guidelines
pr created time in a day
create barnchSkyscanner/backpack-ios
branch : BottomSheet/persistent-presentation-style
created branch time in a day
pull request commentSkyscanner/backpack-docs
Visit https://backpack.github.io/prs/883 to see this build running in a browser.
comment created time in a day
push eventbackpack/prs
commit sha 8314521204d27b6574403444262e16b3e503b511
deploy: Skyscanner/backpack-docs@76ab26a4b75b527fc76b0a41f243dbd732d116d8
push time in a day
PR opened Skyscanner/backpack-docs
<!-- Thanks for contributing to Backpack :pray: Please include a description of the changes you are introducing and some screenshots if appropriate. -->
Changes:
- Deleted large amounts of unused files since the migration to
mdx
format docs - Removed Accessibility pages as they were still in WIP (with no content) and not officially released, and are planned to be redesigned and worked into new
mdx
format- Which lead to more pages being able to be removed
- Fixed a flex issue that was being thrown by webpack on build.
- Removed old assets which should shrink project size also
- [x] Check this if you have read and followed the contributing guidelines
Remember to include the following changes:
If you are curious about how we review, please read through the code review guidelines
pr created time in a day
create barnchSkyscanner/backpack-docs
branch : BPK-4339-old-files-cleanup
created branch time in a day
startedgonsolo/gonzales
started time in a day
startedLeonardoCardoso/SwiftLinkPreview
started time in a day
The template for a one cent/month blog using S3, Cloudflare, Jekyll and Travis-Ci
fork in a day
pull request commentSkyscanner/backpack-docs
Visit https://backpack.github.io/prs/882 to see this build running in a browser.
comment created time in 2 days
push eventbackpack/prs
commit sha 749e9a42a56f912ada15bffaeb936d1d0a5acfa7
deploy: Skyscanner/backpack-docs@5176c630af98939fa45c3a9acca1cca8fc46d910
push time in 2 days
pull request commentSkyscanner/backpack-docs
<!-- 0 failure: 1 warning: `package-lock.jso...
DangerID: danger-id-Danger; -->
<table> <thead> <tr> <th width="50"></th> <th width="100%" data-danger-table="true">Warnings</th> </tr> </thead> <tbody><tr> <td>:warning:</td> <td>
package-lock.json
was updated. Ensure that this was intentional.
</td>
</tr>
</tbody>
</table>
<p align="right"> Generated by :no_entry_sign: <a href="https://danger.systems/js">dangerJS</a> against 95fd7ccbcbab4d81a339aff4f73a3f978a1d8025 </p>
comment created time in 2 days