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
| node_modules | |
| dist/ | |
| yarn.lock | |
| wwwroot |
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
| // Original imp: https://github.com/jdnichollsc/Phaser-Kinetic-Scrolling-Plugin | |
| // Adapted to phaser 3 By Christian Panadero | |
| export default class KineticScroll { | |
| private pointerId | |
| private startX | |
| private startY | |
| private screenX | |
| private screenY |
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/python3 | |
| ''' | |
| author: ceres-c | |
| usage: ./frida-extract-keystore.py | |
| Once the keystore(s) have been exported you have to convert them to PKCS12 using keytool | |
| ''' | |
| import frida, sys, time |
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
| <!-- Swiper --> | |
| <div class="swiper-container"> | |
| <div class="swiper-wrapper"> | |
| <div class="swiper-slide"> | |
| <div class="slide-inner" style="background-image: url('http://cs412624.vk.me/v412624691/4117/RWBNZL6CLtU.jpg')"></div> | |
| </div> | |
| <div class="swiper-slide"> | |
| <div class="slide-inner" style="background-image: url('http://cs412624.vk.me/v412624691/41ad/atM6w55Z9Xg.jpg')"></div> | |
| </div> | |
| <div class="swiper-slide"> |
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
| /* globals TweenMax, Quad, Back, Elastic */ | |
| /* | |
| * Original implementation: https://codepen.io/wiledal/pen/ZYoNEa?editors=0010 | |
| * Requires GreenSockss GSAP 2.0.1 | |
| * Works with PixiJS 4.7.3 | |
| */ | |
| export default class ScrollContainer { | |
| constructor(x, y, width, height, itemHeight) { |
OlderNewer