Discover gists
This file contains 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
-- AH POST-SERVER LOGS -- | |
-- ServerID: f6f866f4-7041-474a-9c90-f58b879161c4 | |
-- Server started: January 19, 2025 03:04 AM UTC | Server uptime: 1632 seconds | |
------------------ LOADB LOGS ------------------ | |
{ | |
} |
This file contains 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
const std = @import("std"); | |
// Although this function looks imperative, note that its job is to | |
// declaratively construct a build graph that will be executed by an external | |
// runner. | |
pub fn build(b: *std.Build) void { | |
// Standard target options allows the person running `zig build` to choose | |
// what target to build for. Here we do not override the defaults, which | |
// means any target is allowed, and the default is native. Other options | |
// for restricting supported target set are available. |
This file contains 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
Folosind timpul pipiline de 130 ps determinat anterior. | |
Instrucțiunile sunt: | |
- ADD R3, R2, R1 (R3 ← R2 + R1) | |
- SUB R4, R1, R3 (R4 ← R1 - R3) | |
Identificarea dependenței: | |
Avem o dependență de tip RAW (Read After Write) deoarece: | |
- Prima instrucțiune (ADD) scrie în R3 | |
- A doua instructiune (SUB) citește R3 |
This file contains 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
<?xml version='1.0' encoding='UTF-8'?> | |
<gexf xmlns="http://gexf.net/1.3" version="1.3" xmlns:viz="http://gexf.net/1.3/viz" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://gexf.net/1.3 http://gexf.net/1.3/gexf.xsd"> | |
<meta lastmodifieddate="2025-01-19"> | |
<creator>Gephi 0.10.1</creator> | |
<title></title> | |
<description></description> | |
</meta> | |
<graph defaultedgetype="undirected" mode="static"> | |
<attributes class="node" mode="static"> | |
<attribute id="lang" title="lang" type="string"/> |
This file contains 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
Show hidden characters
{ | |
"color_scheme": "Adaptify Dark.sublime-color-scheme", | |
"ignored_packages": ["Vintage"], | |
"theme": "Adaptive.sublime-theme", | |
"font_size": 13, | |
"font_face": "JetBrains Mono", | |
"index_files": false, | |
"word_wrap": true, | |
"highlight_line": false, | |
"line_padding_bottom": 0, |
This file contains 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
#!/bin/busybox sh | |
# parse-pkg.sh: APKBUILD -> JSON parser | |
# This parses APKBUILD files to determine info | |
# ahead of time about the package that WOULD be | |
# built if abuild were invoked. | |
# | |
# Since APKBUILD files are literally shell scripts | |
# they can be fully dynamic, producing different | |
# output depending on the input. |
This file contains 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
@ECHO off | |
cls | |
echo Please Wait when Installing SQL Server 2008 | |
SQLEXPR_x86_ENU.exe /QS /ACTION=Install /FEATURES=SQL,SDK /INSTANCENAME=SQLExpress /SQLSVCACCOUNT="NT AUTHORITY\Network Service" /SQLSYSADMINACCOUNTS="Users" /AGTSVCACCOUNT="NT AUTHORITY\Network Service" /Hideconsole | |
cls | |
echo Please Wait when Installing SQLServer2005_BC | |
msiexec /I SQLServer2005_BC_64x.msi /qn ALLUSERS=1 ADDLOCAL=SQL_DMO | |
cls |
This file contains 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
-- AH POST-SERVER LOGS -- | |
-- ServerID: dcea3f1b-adc1-4162-a9d9-bf55ebb7f7d5 | |
-- Server started: January 19, 2025 01:33 AM UTC | Server uptime: 5859 seconds | |
------------------ LOADB LOGS ------------------ | |
{ | |
} |
This file contains 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
-- AH POST-SERVER LOGS -- | |
-- ServerID: 47b1d5bf-4440-495d-8229-7106003ecc35 | |
-- Server started: January 19, 2025 03:22 AM UTC | Server uptime: 201 seconds | |
------------------ LOADB LOGS ------------------ | |
{ | |
} |
This file contains 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
const express = require('express') | |
const cry = require('thor-devkit/dist/cry') | |
const Transaction = require('thor-devkit/dist/transaction').Transaction | |
const app = express() | |
app.use(express.json()) | |
const port = 3000 | |
app.post('/', function(req, res) { |
NewerOlder