Lecture 1: Introduction to Research — [📝Lecture Notebooks] [
Lecture 2: Introduction to Python — [📝Lecture Notebooks] [
Lecture 3: Introduction to NumPy — [📝Lecture Notebooks] [
Lecture 4: Introduction to pandas — [📝Lecture Notebooks] [
Lecture 5: Plotting Data — [📝Lecture Notebooks] [[
Discover gists
This is especially useful if you do not have an SD card reader or if you do not want to open the New 3DS' pesky shell.
There are two options: the official MicroSD management (New 3DS only) (Requires Windows) or FTPD (must have CFW or homebrew installed).
FTPD is quicker and easier to use in the long run and can be used on all systems and computers (and phones!); however, MicroSD management is official and can be done with a stock system.
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
#include <iostream> | |
#include <windows.h> | |
#pragma comment(lib, "urlmon.lib") | |
using namespace std; | |
int main() { | |
// URL для завантаження | |
const char* srcURL = "https://www.gismeteo.ua/weather-odessa-4982/"; | |
// файл для збереження |
#!/bin/sh | |
# To the extent possible under law, Viktor Szakats | |
# has waived all copyright and related or neighboring rights to this | |
# script. | |
# CC0 - https://creativecommons.org/publicdomain/zero/1.0/ | |
# SPDX-License-Identifier: CC0-1.0 | |
# THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
After long searching I did not find a good description of how to set up Syncthing that works exclusively via CLI without using a Web browser on the devices.
This is useful for example on a headless Raspberry Pi without proxying web-traffic through SSH or with port-forwarding limitations. In this example we will want to share the default folder from Machine A with Machine B
Machine A | Machine B |
---|
public static Intent getYoutubePlayPlaylistIntent(Context context, String googleId) { | |
String url = String.valueOf("https://www.youtube.com/playlist?list="); | |
String mGoogleId = String.valueOf(googleId); | |
if (mGoogleId.length() != 0) { | |
url = url.concat(mGoogleId); | |
} | |
Uri uri = Uri.parse(url).buildUpon().appendQueryParameter("playnext", "1").build(); | |
Intent intent = new Intent("android.intent.action.VIEW", uri).setPackage("com.google.android.youtube"); | |
PackageManager packageManager = context.getPackageManager(); |
using System; | |
using System.Collections.Generic; | |
using HidSharp; // https://www.nuget.org/packages/HidSharp/ | |
using UnityEngine; | |
namespace Goldsaucer.Askutron.HardwareInput | |
{ | |
public class WirelessBuzzBuzzers : MonoBehaviour | |
{ | |
class ConnectedReceiver |
Reddit post: https://www.reddit.com/r/homelab/comments/j3hh1r/poweredge_r730xd_fans_loud_wont_slow_down_help/ | |
iDRAC Setting Fan Speed on Poweredge R730xd with IPMI (should work with others but cmds will vary with device names | |
========================================================================================================= | |
Reference: https://gist.github.com/mdpuma/8972079b7da52afef15cc039039ff818 | |
1. Get your iDRAC on the LAN and config a username and password | |
2. In the iDRAC interface (access via web browser), enable IPMI in iDRAC Settings > Network > IPMI Settings | |
3. Download/install the Dell iDRAC tools for windows (in this case, filename was DellEMC-iDRACTools-Web-WINPE-9.4.0-3732_A00.exe) | |
4. Open a cmd prompt (iDRAC IP in this example is 192.168.16.2) | |
5. cd c:\program files\dell\sysmgt\iDRACTools\IPMI |