plot(
plot(),
plot(),
...
)
This file contains hidden or 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
# From the editor: Ctrl-e to execute, Ctrl-l to clear console (My VsCode custom keybindings) | |
using Images | |
using LinearAlgebra | |
import LinearAlgebra: dot | |
using StaticArrays | |
using Printf | |
const Vec3 = SVector{3,Float64} | |
abstract type Material end |
This file contains hidden or 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
class Solution: | |
from functools import lru_cache | |
def getRow(self, rowIndex: int) -> List[int]: | |
# 1 0 0 0 0 0 j | |
# 1 1 0 0 0 0 | |
# 1 2 1 0 0 0 | |
# 1 3 3 1 0 0 | |
# 1 4 6 4 1 0 | |
# 1 5 10 10 5 1 | |
# i |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>DFT</title> | |
<style> | |
h1 { | |
font-family: sans-serif; | |
} | |
#canvas_container { |
This file contains hidden or 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
#include <stdio.h> | |
#include <freetype2/ft2build.h> | |
#include FT_FREETYPE_H | |
#include FT_LCD_FILTER_H | |
#define STB_IMAGE_WRITE_IMPLEMENTATION | |
#include "./stb_image_write.h" | |
int main() { |
This file contains hidden or 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
#include <stdio.h> | |
#include <freetype2/ft2build.h> | |
#include FT_FREETYPE_H | |
int main() { | |
FT_Library ft; | |
FT_Error err = FT_Init_FreeType(&ft); | |
if (err != 0) { | |
printf("Failed to initialize FreeType\n"); |
This file contains hidden or 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
#include "rapidjson/document.h" | |
#include <stack> | |
#include <unordered_set> | |
#include <vector> | |
using namespace rapidjson; | |
using namespace std; | |
#define PATH "/home/andrea/Desktop/dependencies.json" |
This file contains hidden or 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
import fetch from "node-fetch" | |
export interface PingData { | |
total_rows: number | |
offset: number | |
rows: Row[] | |
} | |
type packageid = string | |
export interface Row { |
This file contains hidden or 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
I (4863) Pinger: Start pinging | |
pf->send_count: 1 | |
pf->send_count: 2 | |
pf->send_count: 3 | |
pf->send_count: 4 |
This file contains hidden or 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
#include <stdio.h> | |
#include <string.h> | |
#include <time.h> | |
#include <sys/time.h> | |
#include "freertos/FreeRTOS.h" | |
#include "freertos/task.h" | |
#include "freertos/event_groups.h" | |
#include "lwip/sys.h" |
NewerOlder