Skip to content

Instantly share code, notes, and snippets.

Course name Course code Credits Level Department Division Owned By
C-1 1001 7.5 First Cycle D4 D4-5 P-32
C-2 1002 7.5 First Cycle D6 D6-5 P-51
C-3 1003 7.5 Second Cycle D5 D5-3 P-41
C-4 1004 7.5 Second Cycle D7 D7-2 P-61
C-5 1005 7.5 Second Cycle D6 D6-2 P-52
C-6 1006 7.5 Second Cycle D8 D8-3 P-73
C-7 1007 7.5 First Cycle D7 D7-1 P-61
C-8 1008 7.5 First Cycle D5 D5-3 P-41
C-9 1009 7.5 Second Cycle D7 D7-1 P-61
@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created May 13, 2025 10:13
Rimworld output log published using HugsLib
This file has been truncated, but you can view the full file.
Log uploaded on Tuesday, May 13, 2025, 6:13:27 PM
Loaded mods:
Prepatcher(zetrith.prepatcher): 0Harmony(2.3.3), 0PrepatcherAPI(1.2.0), 0PrepatcherDataAssembly(1.0.0), PrepatcherImpl(1.0.0), Prestarter(1.0.0)
Harmony(brrainz.harmony)[mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1)
Fishery - Modding Library(bs.fishery): 0PrepatcherAPI(1.2.0), 1Fishery(0.6.1), System.Runtime.CompilerServices.Unsafe(av:6.0.0,fv:6.0.21.52210)
Faster Game Loading(Taranchuk.FasterGameLoading): FasterGameLoading(1.0.0), System.Drawing(av:4.0.0,fv:4.6.57)
Visual Exceptions(brrainz.visualexceptions)[mv:1.3.2.0]: CrossPromotion(1.1.2), VisualExceptions(1.3.2)
Core(Ludeon.RimWorld): (no assemblies)
Performance Fish(bs.performance): PerformanceFish(0.6.2)
@kkroesch
kkroesch / q.js
Created May 13, 2025 10:13
Minimal JQuery
// Single ELement like $('#id') or $('.class'))
const $ = selector => document.querySelector(selector);
// Multiple elements like $$('.class'))
const $$ = selector => document.querySelectorAll(selector);
// Element per ID
const $id = id => document.getElementById(id);
// Event-Helper
<canvas class="webgl"></canvas>
<div id="instructions">Drag to turn around<br />Scroll to zoom in / out<br />Click on portals to explore</div>
<div id="credits">
<p><a href="https://codepen.io/Yakudoo/" target="blank">my other codepens</a> | <a href="http://epic.net" target="blank">epic.net</a></p>
</div>
<script type="x-shader/x-vertex" id="vertexShader">
precision highp float;
varying vec2 vUv;
void main() {
@KgaleN
KgaleN / Markdown Item.md
Created May 13, 2025 10:13
Markdown Item

Barcode Validation Logic for Stocktake

I implemented barcode validation in two parts of the application:

  • Regular Stocktake

  • Cellular Stocktake

Regular Stocktake

@aeddi
aeddi / description.md
Created May 13, 2025 10:13
Crossing pointer issue

This first txtar relying on maketx call fails depending on the init function used (WorkingNew or BuggedNew).

File: gno/gno.land/pkg/integration/testdata/object_pointer.txtar

Run it using: cd gno/gno.land/pkg/integration && go test -v -run=TestTestdata/object_pointer

# Load the packages and start the node
loadpkg gno.land/p/testing/bug_package $WORK/bug_package
loadpkg gno.land/r/testing/bug_callee $WORK/bug_callee
// tasks.json
{
"version": "2.0.0",
"tasks": [
{
"label": "Cmake init",
"type": "shell",
"command": "cmake -G 'Unix Makefiles' .",
"options": {
"cwd": "${workspaceFolder}"
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
Definitions.
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created May 13, 2025 10:12
Rimworld output log published using HugsLib
Log uploaded on Tuesday, May 13, 2025, 12:12:11 PM
Loaded mods:
Harmony(brrainz.harmony)[mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1)
Core(Ludeon.RimWorld): (no assemblies)
Royalty(Ludeon.RimWorld.Royalty): (no assemblies)
Ideology(Ludeon.RimWorld.Ideology): (no assemblies)
Biotech(Ludeon.RimWorld.Biotech): (no assemblies)
Wall Light(Murmur.WallLight): WallLight(av:1.5.8874.26767,fv:1.0.0)
HugsLib(UnlimitedHugs.HugsLib)[ov:11.0.5]: 0Harmony(av:2.3.3,fv:1.2.0.1), HugsLib(av:1.0.0,fv:11.0.5)
Moonlight(Owlchemist.Moonlight): Owlchemist.Moonlight(av:1.5.2,fv:1.5.2)
@mutkuensert
mutkuensert / Base64StringToInputStream.kt
Created May 13, 2025 10:12
An example that converts base64 string to an input stream without creating a new byte array
import android.util.Base64
import android.util.Base64InputStream
import org.apache.commons.io.input.ReaderInputStream //implementation 'commons-io:commons-io:2.19.0' https://central.sonatype.com/artifact/commons-io/commons-io?smo=true
import tr.com.avivasa.mobileapp.base.BasePresenter
import java.io.StringReader
val base64String = "someBase64String"
val inputStream = Base64InputStream(
ReaderInputStream.builder()
.setReader(StringReader(base64String))