I hereby claim:
- I am fujin on github.
- I am fujin (https://keybase.io/fujin) on keybase.
- I have a public key ASB0koRD0ugkTicVLKltsoKZiAmQumTGea4cFkAd4kMxbQo
To claim this, I am signing this object:
| browsers: ['Chrome_no_sandbox'], | |
| customLaunchers: { | |
| Chrome_no_sandbox: { | |
| base: 'Chrome', | |
| flags: ['--no-sandbox'] | |
| } | |
| }, |
| function ReloadPath | |
| { | |
| $env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") | |
| + ";" + [System.Environment]::GetEnvironmentVariable("Path","User") | |
| } |
I hereby claim:
To claim this, I am signing this object:
| static const TIM_TimeBaseInitTypeDef tim_apb2_time_base = { | |
| .TIM_Prescaler = (PIOS_PERIPHERAL_APB2_CLOCK / 1000000) - 1, | |
| .TIM_ClockDivision = TIM_CKD_DIV1, | |
| .TIM_CounterMode = TIM_CounterMode_Up, | |
| .TIM_Period = ((1000000 / PIOS_SERVO_UPDATE_HZ) - 1), | |
| .TIM_RepetitionCounter = 0x0000, | |
| }; |
| #!/usr/bin/env python | |
| from titan.pantheon import workflow_utilities | |
| f = open('freeze-sites.txt', 'r') | |
| for line in f.readlines(): | |
| for wf_res in workflow_utilities.create_site_workflow(line.strip(), 'freeze_site', block_until_complete=True): | |
| print(wf_res) | |
| f.close() |
| it 'should manually link the socket service' do | |
| link = chef_run.link( | |
| format( | |
| '/etc/systemd/system/containers.target.wants/%s', | |
| stunnel_socket_name | |
| )) | |
| expect(link).to link_to( | |
| format( | |
| '/etc/systemd/system/%s', |
| GF6045CF-3s #2 RPM: 16414 Volt_MIN: 12.472 Volt_MAX: 12.645 Current: 17.140 Grams: 726.57 | |
| GF6045N-3s #1 RPM: 17100 Volt_MIN: 12.488 Volt_MAX: 12.643 Current: 15.411 Grams: 702.53 | |
| GF6045N-3s #2 RPM: 17091 Volt_MIN: 12.488 Volt_MAX: 12.645 Current: 15.343 Grams: 695.35 | |
| HQ6045CFN-3s #1 RPM: 16962 Volt_MIN: 12.455 Volt_MAX: 12.611 Current: 15.684 Grams: 715.74 | |
| HQ6045CFN-3s #2 RPM: 16945 Volt_MIN: 12.449 Volt_MAX: 12.603 Current: 15.648 Grams: 716.80 | |
| GF6045CFN-3s #1 RPM: 17040 Volt_MIN: 12.441 Volt_MAX: 12.602 Current: 15.470 Grams: 695.52 | |
| GF6045CFN-3s #2 RPM: 17014 Volt_MIN: 12.434 Volt_MAX: 12.589 Current: 15.405 Grams: 689.30 | |
| HQ6045x3CFN-3s #1 RPM: 15488 Volt_MIN: 12.394 Volt_MAX: 12.592 Current: 19.819 Grams: 785.27 | |
| HQ6045x3CFN-3s #2 RPM: 15462 Volt_MIN: 12.391 Volt_MAX: 12.585 Current: 19.752 Grams: 786.42 |
| (defun dotspacemacs/layers () | |
| "Configuration Layers declaration. | |
| You should not put any user code in this function besides modifying the variable | |
| values." | |
| (setq-default | |
| ;; Base distribution to use. This is a layer contained in the directory | |
| ;; `+distribution'. For now available distributions are `spacemacs-base' | |
| ;; or `spacemacs'. (default 'spacemacs) | |
| dotspacemacs-distribution 'spacemacs | |
| ;; List of additional paths where to look for configuration layers. |
| dotspacemacs-configuration-layers | |
| '( | |
| ;; ---------------------------------------------------------------- | |
| ;; Example of useful layers you may want to use right away. | |
| ;; Uncomment some layer names and press <SPC f e R> (Vim style) or | |
| ;; <M-m f e R> (Emacs style) to install them. | |
| ;; ---------------------------------------------------------------- | |
| auto-completion | |
| better-defaults | |
| spell-checking |