Skip to content

Instantly share code, notes, and snippets.

View yon3zu's full-sized avatar
❄️
Life Goes On !!

Sants Yonezu yon3zu

❄️
Life Goes On !!
View GitHub Profile
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
╔══════════════════════════════════════════════════════════╗
║ 🏦 PROFESSIONAL CRYPTO SCREENER — FUND MANAGER GRADE ║
║ Binance Futures | Multi-TF | SMC | Anti-Fakeout ║
║ Backtesting | Confluence Engine | Telegram Alerts ║
╚══════════════════════════════════════════════════════════╝
"""
@yon3zu
yon3zu / project2.py
Created February 10, 2024 07:41
Implementasi Serial ID
import wmi
import requests
def get_motherboard_serial():
c = wmi.WMI()
return next(iter(board.SerialNumber for board in c.Win32_BaseBoard()), None)
def generate_serial_code(serial):
return serial
@yon3zu
yon3zu / hardware-id.py
Created February 10, 2024 07:08
Project HWID System By Get Motherboard Serial
import wmi
def get_motherboard_serial():
c = wmi.WMI()
return next(iter(board.SerialNumber for board in c.Win32_BaseBoard()), None)
def generate_serial_code(serial):
return serial
motherboard_serial = get_motherboard_serial()
@yon3zu
yon3zu / Dashboard Controller Inventory
Last active July 28, 2022 13:00
dashboard.php Controller
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Dashboard extends CI_Controller {
function __construct(){
parent::__construct();
if(empty($this->session->userdata('login'))){
echo "<script>alert('No Session Detected');document.location='".base_url('login')."';</script>";
}
@yon3zu
yon3zu / edit view ci3
Last active July 28, 2022 13:01
edit view ci3
<!-- Begin Page Content -->
<div class="container-fluid">
<h1 class="h3 mb-2 text-gray-800">Edit Stok Barang</h1>
<?php echo form_open_multipart('dashboard/updateStok') ?>
<div class="card shadow mb-4">
<div class="card-body">
<div class="form-group">
<?php foreach($stok as $s) : ?>
@yon3zu
yon3zu / coding ci3 update news
Created July 28, 2022 11:55
Update News Ci3
public function update()
{
$id = $this->input->post('id_news');
$title = $this->input->post('title');
$meta_desc = $this->input->post('meta_desc');
$content = $this->input->post('content');
$date = $this->input->post('date');
$author = $this->input->post('author');
$category = $this->input->post('category');
@yon3zu
yon3zu / HackTheBox Write Up Fetcher
Created July 28, 2022 00:54
HackTheBox Write Up Fetcher
import requests, time, os
import json
# from dotenv import load_dotenv
from pathlib import Path
# load_dotenv()
key = os.environ.get("KEY")
def reQ(url):