This file contains 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
# WiseSavings Terms of Service | |
## Welcome to WiseSavings! | |
### Introduction | |
Please read these Terms of Service ("Terms", "Terms of Service") carefully before using the WiseSavings application ("Service") operated by WiseSavings Inc. ("us", "we", or "our"). Your access to and use of the Service is conditioned on your acceptance of and compliance with these Terms. These Terms apply to all visitors, users, and others who access or use the Service. | |
### Acceptance of Terms | |
By accessing or using the Service, you agree to be bound by these Terms. If you disagree with any part of the terms then you do not have permission to access the Service. |
This file contains 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
### Privacy Policy for Wisesavings | |
**Effective Date:** [Insert Date] | |
**Last Updated:** [Insert Date] | |
Thank you for choosing Wisesavings. We are committed to protecting your privacy and ensuring the security of your personal information. This Privacy Policy outlines how we collect, use, and safeguard your data when you use our budget tracking application. | |
### 1. Information We Collect | |
We collect the following types of information to provide and improve our services: |
This file contains 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
### Old | |
ap1/v1/products | |
filter[purchased] = true | |
products | |
attributes | |
- name | |
- amount | |
... etc |
This file contains 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
# Converts | |
# This | |
# { | |
# attributes: { | |
# name: 'jude', | |
# address.street: 'main street', | |
# address.city: 'cebu' | |
# }, | |
# relationships: { checkout: { data: { id: 2, type: 'checkouts' } } } | |
# } |
This file contains 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
set nocompatible " be iMproved, required | |
filetype off " required | |
call plug#begin('~/.vim/plugged') | |
" let Vundle manage Vundle, required | |
" Plug 'gmarik/Vundle.vim' | |
" Color schemes | |
"Plug 'phanviet/vim-monokai-pro' |
This file contains 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
# frozen_string_literal: true | |
class MetrofoodProductSearch | |
include BaseService | |
include Filterable | |
attr_reader :repository, :relation, :current_user, :sort, :page, :filters | |
def initialize(current_user, sort, page, filters) | |
@repository = MetrofoodProductRepository.new |
This file contains 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
# frozen_string_literal: true | |
module ChainOfResponsibility | |
attr_accessor :next | |
def handle(result) | |
@next&.handle(result) || result # Run next handler or return result | |
end | |
end |
This file contains 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
keycode Caps_Lock = Mode_switch | |
!Map Capslock + h/j/k/l to arrow keys | |
keysym h = h H Left | |
keysym l = l L Right | |
keysym k = k K Up | |
keysym j = j J Down | |
!Map Capslock + ESC to ` | |
!Map Capslock + Shift + Esc to ~ |
This file contains 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
package main | |
import ( | |
"bytes" | |
"encoding/json" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"os" |
This file contains 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
launch tmux -Lkitty | |
font_family Fira Code Retina | |
font_size 10.0 | |
bold_font auto | |
italic_font auto | |
bold_italic_font auto | |
/*window_margin_width 0.0*/ | |
/*window_padding_width 0.0*/ |
NewerOlder