Skip to content

Instantly share code, notes, and snippets.

@SuicSoft
SuicSoft / Index.md
Last active July 4, 2019 06:48
Undervolting of AMD CPU

Minimum stable voltages for AMD APU

Tested on my laptop.Voltages are -4 VIDs below the voltage where it BSODs or Kernel Panics to improve stability.

P-State Frequency Voltages
P-State 0 (pb0) 2.8 Ghz # How to test this one ?
P-State 1 (pb1) 2.3 Ghz VID:100 VCore:
P-State 2 (p0) 1.9 Ghz VID:110 VCore:
P-State 3 (p1) 1.8 Ghz VID:116 VCore:
P-State 4 (p2) 1.7 Ghz VID:117 VCore:
P-State 5 (p3) 1.6 Ghz VID:120 VCore:
@SuicSoft
SuicSoft / main.md
Last active April 2, 2018 04:41
How to install Remix OS on UEFI with secure boot

How to install Remix OS using secure boot on UEFI

  1. Download Remix OS (http://www.jide.com/remixos) and Ubuntu (http://www.ubuntu.com/) (if you do not have it installed)

  2. Using Rufus (https://rufus.akeo.ie/) copy Ubuntu to a USB stick and boot from it. Click Try Ubuntu after it boots.

Ubuntu

Ubuntu has correctly booted in this picutre

  1. Open the files application and go to the directory that Remix OS is located and copy the path.
@SuicSoft
SuicSoft / Main.md
Created February 8, 2016 02:20
Enable Multiwindow in Android Marshmallow

#How to enable multiwindow without rooting

@SuicSoft
SuicSoft / designer.html
Last active January 19, 2016 10:16
designer
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../paper-icon-button/paper-icon-button.html">
<link rel="import" href="../paper-input/paper-input.html">
<link rel="import" href="../topeka-elements/avatars.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../paper-button/paper-button.html">
<polymer-element name="login">
<template>
@SuicSoft
SuicSoft / wifite
Created January 1, 2016 13:09
Wifite python script modified
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""
wifite
author: derv82 at gmail
Licensed under the GNU General Public License Version 2 (GNU GPL v2),
@SuicSoft
SuicSoft / AsyncRef.cs
Last active November 9, 2015 08:00
Async ref arguments c#
/// <summary>
/// Ref for async methods or tasks
/// </summary>
/// <typeparam name="T">The return or set type</typeparam>
public class AsyncRef<T>
{
/// <summary>
/// Initailizes the AsyncRef
/// </summary>
/// <param name="get">The getter</param>