Expenseya is a income & expense tracker app built with PHP & LARAVEL.
- Clone the repo
- Copy
.env.exampleto.env
| <?php | |
| namespace App\Http\Controllers; | |
| use App\Models\RawEvent; | |
| use Illuminate\Http\Request; | |
| use Illuminate\Support\Facades\Http; | |
| class SummarizeController extends Controller | |
| { |
| #!/bin/bash | |
| NS1="red" | |
| NS2="blue" | |
| VETH1="veth-red" | |
| VETH1_BR="veth-red-br" | |
| VETH2="veth-blue" | |
| VETH2_BR="veth-blue-br" | |
| VETH_BR="veth-br" | |
| IP_ADDR1="10.0.0.1/24" |
| #!/bin/bash | |
| while true; do | |
| xdotool keydown alt key Tab; sleep 2; xdotool keyup alt | |
| sleep 30; | |
| done | |
| # First need to make executable by Run this command. | |
| # chmod +x file_name.sh | |
| # And then run like this from folder -> ./file_name.sh |
| #================================= | |
| # Author: MI SHAJIB | |
| #================================= | |
| import struct | |
| # Sample packet in hex format | |
| packet = b'450000280000400080060000c0a80101c0a80164' | |
| # Convert packet to binary format |
| //================================= | |
| //# Author: MI SHAJIB | |
| //================================= | |
| // Sample packet in hex format | |
| const packet = "450000280000400080060000c0a80101c0a80164"; | |
| // Convert packet to binary format | |
| const packetBinary = Buffer.from(packet, "hex"); |
| //================================= | |
| //# Author: MI SHAJIB | |
| //================================= | |
| // Import execSync for execute os command | |
| const { execSync } = require("child_process"); | |
| // Init data | |
| const NS1 = "red"; | |
| const NS2 = "blue"; |
| #================================= | |
| # Author: MI SHAJIB | |
| #================================= | |
| # Import necessary library for run command on OS(operating system) | |
| import os | |
| # Constants | |
| NS1 = 'red' | |
| NS2 = 'blue' |
| { | |
| "calendars": [ | |
| { | |
| "date": "2023-03-24", | |
| "sehri_time": "04:39:00", | |
| "iftar_time": "18:14:00" | |
| }, | |
| { | |
| "date": "2023-03-25", | |
| "sehri_time": "04:38:00", |
| name: Deploy website on push in production server | |
| on: | |
| push: | |
| branches: | |
| - production | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest |