Skip to content

Instantly share code, notes, and snippets.

@Danburn1999
Danburn1999 / How to download from Keep2Share without premium account 2024.md
Last active July 27, 2024 03:11
# How to download from Keep2Share without premium account | New method 2023-2024

How to download from Keep2Share without premium account | New method 2023-2024 New method

How to downloader from Keep2Share without premium account | New method 2024

Premiumdownloader.Net This web tool allows you to download any file or folder from Rapidgator , Keep2share, FileBoom, Turbobit and many hosting in the world. All you need to do is enter your Premiumdownloader link and your email address and wait a few minutes for it to download for you. Use the code “FREE512MB”. You can download any file or folder up to 1GB for free.

Steps

Open the website mentioned above and select item , or uses this direct link:

Premiumdownloader.Net (Transfer file from Keep2Share to google drive)

2. Go to your cart and start purchase. Enter the coupon code FREEDOWNLOAD1GB to get download items under 1GB for free.

@cihanmehmet
cihanmehmet / CVE-2020-5902.md
Last active July 27, 2024 03:07
BIGIP CVE-2020-5902 Exploit POC

🚨BIGIP CVE-2020-5902 Exploit POC 🔥🧱🔨👀


Shodan Seaarch

title:"Big-IP®" org:"Organization Name"
http.title:"BIG-IP®- Redirect" org:"Organization Name"
http.favicon.hash:-335242539 "3992" org:"Organization Name"

🔸LFI

@dedlim
dedlim / claude_3.5_sonnet_artifacts.xml
Last active July 27, 2024 03:06
Claude 3.5 Sonnet, Full Artifacts System Prompt
<artifacts_info>
The assistant can create and reference artifacts during conversations. Artifacts are for substantial, self-contained content that users might modify or reuse, displayed in a separate UI window for clarity.
# Good artifacts are...
- Substantial content (>15 lines)
- Content that the user is likely to modify, iterate on, or take ownership of
- Self-contained, complex content that can be understood on its own, without context from the conversation
- Content intended for eventual use outside the conversation (e.g., reports, emails, presentations)
- Content likely to be referenced or reused multiple times
@suanmiao
suanmiao / data_cleaning_mpt_7b_chat_experiment.py
Created October 23, 2023 22:42
Data cleaning code for MPT-7B-Chat
#Please note that the code below is specifically optimized for MPT-7B-Chat model on the Databricks Documentation dataset, modifications may be required for other models or datasets.
import re
from html import unescape
# Keep all HTML tags
# No code is needed as we are keeping all HTML tags
# Replace multiple newlines or multiple empty lines with one newline
@Froghut
Froghut / OdinWatchWindow.cs
Last active July 27, 2024 03:02
Odin Watch Window
#if ODIN_INSPECTOR
using System;
using System.Collections.Generic;
using System.Linq;
using Sirenix.OdinInspector.Editor;
using Sirenix.Utilities;
using Sirenix.Utilities.Editor;
using UnityEditor;
using UnityEngine;
using Object = UnityEngine.Object;
import {
Canvas,
DataSourceParam,
dist,
ImageShader,
rect,
RoundedRect,
rrect,
Shader,
Skia,
@ityonemo
ityonemo / test.md
Last active July 27, 2024 03:01
Zig in 30 minutes

A half-hour to learn Zig

This is inspired by https://fasterthanli.me/blog/2020/a-half-hour-to-learn-rust/

Basics

the command zig run my_code.zig will compile and immediately run your Zig program. Each of these cells contains a zig program that you can try to run (some of them contain compile-time errors that you can comment out to play with)

@bradtraversy
bradtraversy / mern-server-setup.md
Last active July 27, 2024 03:01
Setup Ubuntu & Deploy MERN app

Linux Server Setup & MERN App Deployment

These are the steps to setup an Ubuntu server from scratch and deploy a MERN app with the PM2 process manager and Nginx. We are using Linode, but you could just as well use a different cloud provider or your own machine or VM.

Create an account at Linode

Click on Create Linode

Choose your server options (OS, region, etc)

SSH Keys

@sindresorhus
sindresorhus / esm-package.md
Last active July 27, 2024 02:58
Pure ESM package

Pure ESM package

The package that linked you here is now pure ESM. It cannot be require()'d from CommonJS.

This means you have the following choices:

  1. Use ESM yourself. (preferred)
    Use import foo from 'foo' instead of const foo = require('foo') to import the package. You also need to put "type": "module" in your package.json and more. Follow the below guide.
  2. If the package is used in an async context, you could use await import(…) from CommonJS instead of require(…).
  3. Stay on the existing version of the package until you can move to ESM.
@UbuntuEvangelist
UbuntuEvangelist / Completely Uninstall LAMP Ubuntu
Last active July 27, 2024 02:55
Completely Uninstall LAMP Ubuntu 20.04 LTS
HIRE Me For Your Project Support :)
Telegram: https://t.me/LinuxGun
#!/bin/bash
# Completely Remove Apache Ubuntu
service apache2 stop
apt purge apache2 apache2-utils apache2.2-bin
apt remove apache2.*
apt autoremove
whereis apache2