target distro is ubuntu-ja-remix 32bit, but similar to official distro
core of live USB
- semi‐official ubuntu-ja-remix by Ubuntu Japanese Team
- official ubuntu by Canonical
/** | |
** ____ _ ___ ___ _ _ | |
** | _ \ | | | \/ | | | (_) | |
** | | \ |__ _ _ __| | __ | . . | ___ _ __ ___ | | __ __ _ _ | |
** | | | | _` | '__| |/ / | |\/| |/ _ \| '_ \ / _ \| |/ // _` | | | |
** | |_/ /(_| | | | < | | | | (_) | | | | (_) | <| (_| | | | |
** |____/\__,_|_| |_|\_\ \_| |_/\___/|_| |_|\___/|_|\_\\__,_|_| | |
** | |
** Quassel Theme | |
** |
target distro is ubuntu-ja-remix 32bit, but similar to official distro
core of live USB
# -*- coding: utf-8 -*- | |
from __future__ import unicode_literals | |
""" | |
*************************************************************************** | |
* Copyright (c) 2014 2015 2016 2017 2018 2019 2020 2021 2025 <mario52> * | |
* * | |
* This file is a supplement to the FreeCAD CAx development system. * | |
* * | |
* This program is free software; you can redistribute it and/or modify * | |
* it under the terms of the GNU General Public License (GPL) * |
# -*- coding: utf-8 -*- | |
from __future__ import unicode_literals | |
""" | |
*************************************************************************** | |
* Copyright (c) 2015 2016 <mario52> * | |
* * | |
* This file is a supplement to the FreeCAD CAx development system. * | |
* * | |
* This program is free software; you can redistribute it and/or modify * | |
* it under the terms of the GNU Lesser General Public License (LGPL) * |
# Modified from : https://github.com/timcastelijn/gcode-generator | |
feedrate= 85 # Carriage Speed | Increment by +- 5 | |
curve_tolerance=0.008 | |
curve_angle_tolerance=5 | |
z_offset = 0 | |
material_mult = 0.01 # Extrusion Speed: A-Axis | Increments of +- 0.001 | |
extruder_axis = 0 # Rotation A-Axis | |
import rhinoscriptsyntax as rs | |
import math |
mpv
The latest working mpv version for this guides is 0.27.2, tested on 2018-03-13-raspbian-stretch.
sudo apt-get update && sudo apt-get upgrade -y &&
sudo apt-get install -y git devscripts equivs &&
sudo apt-get install -y libgles2-mesa-dev
sudo rm -rf /Applications/Tuxera\ Disk\ Manager.app | |
sudo rm -rf /Library/Application\ Support/Tuxera\ NTFS | |
sudo rm -rf /Library/Filesystems/fusefs_txantfs.fs |
# -*- coding: utf-8 -*- | |
from __future__ import unicode_literals | |
# | |
""" | |
*************************************************************************** | |
* Copyright (c) 2017 2018 2019 2020 <mario52> * | |
* * | |
* This file is a supplement to the FreeCAD CAx development system. * | |
* * | |
* This program is free software; you can redistribute it and/or modify * |
''' | |
Example of web scraping using Python and BeautifulSoup. | |
Sraping ESPN College Football data | |
http://www.espn.com/college-sports/football/recruiting/databaseresults/_/sportid/24/class/2006/sort/school/starsfilter/GT/ratingfilter/GT/statuscommit/Commitments/statusuncommit/Uncommited | |
The script will loop through a defined number of pages to extract footballer data. | |
''' | |
from bs4 import BeautifulSoup |
# -*- coding: utf-8 -*- | |
from __future__ import unicode_literals | |
# | |
""" | |
*************************************************************************** | |
* Copyright (c) 2017 2018 2019 2020 2023 2024 <mario52> * | |
* * | |
* This file is a supplement to the FreeCAD CAx development system. * | |
* * | |
* This program is free software; you can redistribute it and/or modify * |