Skip to content

Instantly share code, notes, and snippets.

View ixkipe's full-sized avatar
🏠
Working from home

Victor ixkipe

🏠
Working from home
View GitHub Profile
@ixkipe
ixkipe / bulma-demo.html
Created June 17, 2023 09:34
A webpage for viewing Bulma components that makes use of its colors, font etc.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="purplebulma.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<title>BULBA</title>
</head>
<body>
@ixkipe
ixkipe / Example.en.resx
Created September 23, 2023 17:47
ASP.NET Core Globalization Resource File Template
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
@ixkipe
ixkipe / dotnet_example_service_file.service
Created November 18, 2023 21:36
A .NET service file that works for me
# all files in the working directory must be owned by user {yourusername}
[Unit]
Description=Your App
[Service]
WorkingDirectory=/opt/appdir
ExecStart=/usr/share/dotnet/dotnet /opt/appdir/App.dll
SyslogIdentifier=AppName
User=yourusername