How to set environment variables can be found in the [docs]( https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#set-env-vars).
And there also seem to be [different ways]( https://stackoverflow.com/a/62508395/991496).
Nix is a tool that helps people create reproducible builds. This means that given a known input, you can get the same output on other machines. Let’s build and deploy a small Rust service with Nix.
TypeScript has never been easier thanks to the TypeScript plugin for Babel. Discover 4 reasons why TypeScript + Babel are a perfect pair, and follow a step-by-step guide to upgrade to TypeScript in 10 minutes.
Open USB block device using gdisk /dev/sdc, configure it as GPT and create Microsoft basic data partition (code 0700), then write changes and quit (Next steps will destroy partition table in your USB drive!!!).
sudo gdisk /dev/sdc
o
> This option deletes all partitions and creates a new protective MBR.
> Proceed? (Y/N): y
n
> Partition number ... > hit Enter
> First sector ... : > hit Enter
> Last sector ... : > hit Enter
> Current type is 'Linux filesystem'
> Hex code or GUID (L to show codes, Enter = 8300): 0700
p
> Should print something like:
> Disk /dev/sdc: 15646720 sectors, 7.5 GiB
> Model: DataTraveler 160
> Sector size (logical/physical): 512/512 bytes
> Disk identifier (GUID): ...
> Partition table holds up to 128 entries
> Main partition table begins at sector 2 and ends at sector 33
> First usable sector is 34, last usable sector is 15646686
> Partitions will be aligned on 2048-sector boundaries
> Total free space is 2014 sectors (1007.0 KiB)
> Number Start (sector) End (sector) Size Code Name
> 1 2048 15646686 7.5 GiB 0700 Microsoft basic data
w
> Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING PARTITIONS!!
> Do you want to proceed? (Y/N): y
q
Format new partition as NTFS:
sudo mkfs.ntfs /dev/sdc1
Mount new USB partition to temporary directory in your home:
mkdir ~/tmp-win10-usb-drive
sudo mount /dev/sdc1 ~/tmp-win10-usb-drive
Download Windows installation ISO, create new temporary directory in your home and mount it there:
mkdir ~/tmp-win10-iso-mnt
sudo mount Win10_1809Oct_English_x64.iso ~/tmp-win10-iso-mnt
Copy all files from mounted ISO to USB drive (you can use rsync to see progress):
sudo cp -rT ~/tmp-win10-iso-mnt/ ~/tmp-win10-usb-drive/`
Unmount Windows ISO and USB drive and remove temporary directories:
sudo umount ~/tmp-win10-iso-mnt/ ~/tmp-win10-usb-drive/
rmdir ~/tmp-win10-iso-mnt/ ~/tmp-win10-usb-drive/
Insert USB drive to new computer and boot from it.
A project to move the JavaScript ecosystem forward.. Search npm for fast, small, and modern web packages.Our catalog only includes packages that are built with modern ESM syntax and a package.json 'module' entrypoint.
When webpack bundles your javascript it wraps all of your individual files/modules in functions so they are no longer run in the global scope, therefore if you want to make a variable global you have to explicitly set it on the window object, i.e.
window.a = 1;
This post is a summary of my research on building Go projects in a Docker container on CI (Gitlab, specifically). I found solving private dependencies quite hard (coming from a Node/.NET background) so that is the main reason I wrote this up. Please feel free to reach out if there are any issues or a submit pull request on the Docker image. Dep As dep is the best option for managing Go dependencies right now, the build will need to run dep ensure before building.
Build tools have become a necessary component in the workflow for modern web applications. I have previously covered the basics of what build tools can do for you to show how builds help with scripting, automation, and eliminating complexity. Taking those into consideration, I’m going to provide a closer look at some of the more popular build tools and how they might make sense for your projects.
While CMake has become the de-facto standard buildsystem for C++, it's siblings CTest and CPack are less well known. This talk gives a lightspeed introduction …
CMake produces Visual Studio solutions seamlessly. This post will map CMake commands to the Visual Studio IDE with an example which makes learning much easier.
I spoke at the ACCU conference in April 2017 on the topic of Embracing Modern CMake. The talk was very well attended and received, but was unfortunately not recorded at the event. In September I gave the talk again at the Dublin C++ User Group, so that it could be recorded for the internet. https://www.youtube.com/watch?v=JsjI5xr1jxM…
P. Cooper. (2015)JAKARTA - PT XL Axiata Tbk (XL) Axis Telekom Capital Group Jakarta to prepare a special plan to support the development of underdeveloped areas in Indonesia. This commitment is in line with the government's plan to accelerate development in remote areas, including border areas. Deputy Chief Executive Officer (CEO) XL Dian Siswarini states, currently XL currently brewing a special plan that is expected to help support the vision of the government in distributing development. One of which is certainly among others adjust network development and open service by reaching remote and border areas. "There are dozens of BTS XL standing in the border areas, which are also remote from economic centers. Such areas include Sabang, Semeulue, Nias, Natuna, and a number of islands in the Riau Islands bordering Singapore and Malaysia," said Dian in a press release on Tuesday (10/2) In addition, XL also builds base stations in north Borneo bordering Sarawak and Sabah. In eastern Indonesia, XL also has BTS among others in Biak, Jayapura, and Merauke. According to Dian, in fact since the previous year’s XL always tries to keep building the infrastructure and roll out services in areas that are not profitable business. The consideration is to be able to assist the local area by encouraging the growth of the local economy, which in turn will be able to contribute to the acceleration of development. In the next plan, XL not only network and services will offer a course for disadvantaged areas. XL will also try to be more empowering potential benefits owned by the telecommunications network infrastructure and the internet to be able to develop the potential of an area more comprehensively. Concepts such as the local empowerment "Smart City" or "Smart Village" will be the reference. In addition, the Government's vision to build maritime and agriculture is also a reference XL. Communications and information technology will be able to help the efforts to promote fisheries and agriculture sectors. Moreover, from this year's 4G service will probably already be further developed to support the provision of fast internet services. He affirmed, XL will explore all the possibilities that can be done to participate and support the government's vision. Currently XL network has served almost all provinces across Indonesia, with 59.6 million subscribers as customers. XL optical fiber backbone network has reached more than 30,000 km, which extends and connects all the main islands, Sumatra-Java-Bali-Lombok Sulawesi, Kalimantan. Backbone XL is also connected directly to the international network through Johor, Malaysia. Total BTS XL has now reached more than 52 thousand BTS (2G & 3G)..