Skip to content

Instantly share code, notes, and snippets.

@georgduees
georgduees / V90_CustomFW.md
Last active August 24, 2022 18:41
PowKiddy V90_CustomFW_Setup

V90 Custom Firmware Guide Powkiddy V90

Steps

  1. Install Custom Firmware

    Download CustomFirmware from https://github.com/TriForceX/MiyooCFW/ for Powkiddy V90

    $ wget https://github.com/TriForceX/MiyooCFW/releases/download/1.3.3/powkiddy-q90-v90-cfw-v1.3.3.7z
    
@georgduees
georgduees / ssh.cs
Created April 25, 2022 11:58 — forked from piccaso/ssh.cs
ssh.net Example - Keybased Authentication, File Upload, Shell Commands
/*
get SSH.NET (BSD License: http://sshnet.codeplex.com/license)
with NuGet:
>Install-Package SSH.NET -Version 2013.4.7
or just get the dll from here: http://j.mp/sshNet
*/
using System;
@georgduees
georgduees / address.json
Created December 6, 2021 18:48
HelloFresh Recipe Url German
[
"https://www.hellofresh.de/recipes/erbsencreme-suppe-61a902d663c4a864bd0b54e2",
"https://www.hellofresh.de/recipes/gemusequiche-mit-spinat-61a9026891ad6a469d7f871e",
"https://www.hellofresh.de/recipes/quiche-lorraine-mit-schinken-61a9017d892896410a75779a",
"https://www.hellofresh.de/recipes/quiche-mit-lachs-und-spinat-61a9014955c9311604003854",
"https://www.hellofresh.de/recipes/zitroniges-weiszweinrisotto-mit-miesmuscheln-und-dill-61a9011fedf98c5e59227039",
"https://www.hellofresh.de/recipes/orzonudeln-mit-garnelen-in-wurziger-weiszwein-sosze-61a900d877b8620be30e1530",
"https://www.hellofresh.de/recipes/cremige-farfalle-mit-raucherlachs-61a900884455236c4d0906a0",
"https://www.hellofresh.de/recipes/schweinemedaillons-in-zwiebel-rahmsosze-thermomix-61a61fb0c9b6ee1f180d3fe5",
"https://www.hellofresh.de/recipes/schweinemedaillons-in-zwiebel-rahmsosze-61a61facd9b53d6dc77a19e5",
@georgduees
georgduees / 1-elementary-os-apps.md
Created November 15, 2020 20:41 — forked from ankurk91/1-elementary-os-apps.md
elementary OS 5.1 Hera

elementaryOS Apps and Configs

⚠️ No longer maintained! ⚠️

This guide has been updated for elementaryOS v5.0+.

Enbale PPA support

sudo apt-get update
sudo apt-get -y install software-properties-common
@georgduees
georgduees / keybase.md
Created February 11, 2020 14:13
keybase.md

Keybase proof

I hereby claim:

  • I am georgduees on github.
  • I am georgd (https://keybase.io/georgd) on keybase.
  • I have a public key ASAp3UomvM19bx0RI_FGHpxutdvUYlzGFtJUOmm023Z19Ao

To claim this, I am signing this object:

@georgduees
georgduees / perfectelementary.bash
Created May 24, 2016 21:05
HowTo Install the perfect Elementary-OS
#Download Elementary OS from here:
#http://sourceforge.net/projects/elementaryos/files/stable/
#First you update your system
sudo apt-get update && sudo apt-get dist-upgrade
#Install Google Chrome
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
@georgduees
georgduees / .html
Created September 9, 2015 07:51
Gist for Centering Text over Image
<div id="borderDiv" class="BorderDiv">
<div id="imageDiv-##locationid##" class="imageDiv">
<div id="LocationImageBackDiv-##locationid##"><img id="LocationImageBack-##locationid##" class="LocationImage blur" src="##imageURL##" /></div>
<img id="LocationImageTop-##locationid##" class="LocationImage" src="##stampImageURL##" />
<div id="LocationItemDescription-##locationid##" class="LocationItemDescription">##LocationItemDescription##</div>
</div>
</div>
<!--CSS-->
.LocationDiv{
@georgduees
georgduees / trim_Sql
Created March 20, 2015 13:10
Check if string has content, and Return Trimmed, else return NULL
--Detect if string has leading or trailing whitespaces, if so trim them and return else return null,
SELECT ISNULL(NULLIF(LTRIM(RTRIM(' teststring ')), ''),NULL)
@georgduees
georgduees / 0_reuse_code.js
Last active August 29, 2015 14:11
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console