Skip to content

Instantly share code, notes, and snippets.

View Wqrld's full-sized avatar
🌍
Discord: Wqrld#7373

Wqrld Wqrld

🌍
Discord: Wqrld#7373
View GitHub Profile
arr = {}
def main():
print("Range: ")
r = int(input())
# For each number 0-r
# If number not yet marked off
# mark all multiples of the number that are under r
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
USE ieee.numeric_std.ALL;
ENTITY pwmmer IS
GENERIC (
refgen : std_logic_vector(3 DOWNTO 0) := "0001"
);
library ieee;
USE ieee.std_logic_1164.all;
USE ieee.numeric_std.all;
entity pwmmer IS
PORT (ref0: in std_logic;
ref1: in std_logic;
ref2: in std_logic;
ref3: in std_logic;
@Wqrld
Wqrld / ezproxies.txt
Created May 17, 2022 14:32
list of some of ezproxy's ips
208.93.216.61
207.230.119.29
94.131.61.168
104.144.246.58
23.250.63.89
23.250.63.204
192.241.95.78
149.104.58.89
206.232.48.34
108.62.64.164
library ieee;
use ieee.std_logic_1164.all; -- logic vectors
use ieee.numeric_std.all; --integer, unsigned, etc
entity lut is
generic (i : std_logic_vector(0 to 15) := "0000000000000000"); -- variable with a default value set to an array of 16 bits
port (sel0, sel1, sel2, sel3: in std_logic;
f : out std_logic
);
end entity lut;
package sample;
import javafx.animation.AnimationTimer;
import javafx.application.Application;
import javafx.event.Event;
import javafx.scene.Scene;
import javafx.scene.input.KeyCode;
import javafx.scene.layout.Pane;
import javafx.scene.paint.Color;
import javafx.scene.shape.Line;
/*
* Copyright (C) Nginx, Inc.
*/
#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_http.h>
// Stubs for the configs below
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
struct graph {
int nodes; //also called vertices
int edges;
struct successor {
int count;
int len; // array len
import math
arr = [20, 8, 1, -100, 3, 1, 8, 1]
def merge(left, right):
leftindex = 0
rightindex = 0
newarray = []
package net.wqrld;
import java.util.Arrays;
public class Main {
public static int[] merge(int[] left, int[] right) {
int[] newarr = new int[right.length + left.length]; // Make a new array that can fit the merged arrays
int rightindex = 0;