file

Global Gitignore Files Are Cool and So Are You

Setting it up

First, here's the config setup you need to even allow for such a radical concept.

  1. Define the global gitignore file as a global Git configuration:

    git config --global core.excludesfile ~/.gitignore
    

    If you're on OSX, this command will add the following config lines in your ~/.gitconfig file.

    [core]
      excludesfile = /Users/triplegirldad/.gitignore
    
  2. Load that ~/.gitignore file up with whatever you want. It probably doesn't exist as a file yet so you might have to create it first.

Harnessing its incredible power

There are only two lines in my global gitignore file and they are both fairly useful pretty much all the time.

$ cat ~/.gitignore
TODO.md
playground

This 2 line file means that no matter where I am, what project I'm working on, where in the project I'm doing so, I have an easy space to stash notes, thoughts, in progress ideas, spikes, etc.

TODO.md

More often than not, I'm fiddling around with a TODO.md file. Something about writing markdown in your familiar text editor speaks to my soul. It's quick, it's easy, you have all the text editing tricks available to you, and it never does anything you wouldn't expect (looking at you auto-markdown-formatting editors). I use one or two # for headings, I use nested lists, and I ask for nothing more. Nothing more than more TODO.md files that is!

In practice I tend to just have one TODO.md file per project, right at the top, ready to pull up in a few keystrokes. Which I do often. I pull this doc up if:

  • I'm in a meeting and I just said "oh yeah that's a small thing, I'll knock it out this afternoon".
  • I'm halfway through some feature development and realize I want to make a sweeping refactor elsewhere. Toss some thoughts in the doc, and then get back to the task at hand.
  • It's the end of the day and I have to switch my brain into "feed small children" mode, thus obliterating everything work-related from my short term memory. When I open things up the next day and know exactly what the next thing to dive into was.
  • I'm preparing for a big enough refactor and I can't hold it all in my brain at once. What I'd give to have an interactive 3D playground for brain thoughts, but in the meantime a 2D text file isn't a terrible way to plan out dev work.

playground

Sometimes you need more than some human words in a markdown file to move an idea along. This is where my playground directory comes in. I can load this directory up with code that's related to a given project and keep it out of the git history. Because who doesn't like a place to play around.

I find that this directory is more useful for long running maintenance projects over fast moving greenfield ones. On the maintenance projects, I tend to find myself assembling a pile of scripts and experiments for various situations:

  • The client requests a one-time obscure data export. Whip up some CSV generation code and save that code in the playground directory.
  • The client requests a different obscure data export. Pull up the last time you did something vaguely similar and save yourself the startup time.
  • A batch of data needs to be imported just once. Might as well stash that in the chance that "just once" is actually "just a few times".
  • Kicking the tires on an integration with a third party service.

Some of these playground files end up being useful more times than I can count (eg: the ever-changing user_export.rb script). Some items get promoted into application code, which is always fun. But most files here serve their purpose and then wither away. And that's fine. It's a playground, anything goes.

Wrapping up

Having a personal space for project-specific notes and code has been helpful to me over the years as a developer on multiple projects. If you have your own organizational trick, or just want to brag about how you memorize everything without any markdown files, let me know in the comments below!




file

Global Gitignore Files Are Cool and So Are You

Setting it up

First, here's the config setup you need to even allow for such a radical concept.

  1. Define the global gitignore file as a global Git configuration:

    git config --global core.excludesfile ~/.gitignore
    

    If you're on OSX, this command will add the following config lines in your ~/.gitconfig file.

    [core]
      excludesfile = /Users/triplegirldad/.gitignore
    
  2. Load that ~/.gitignore file up with whatever you want. It probably doesn't exist as a file yet so you might have to create it first.

Harnessing its incredible power

There are only two lines in my global gitignore file and they are both fairly useful pretty much all the time.

$ cat ~/.gitignore
TODO.md
playground

This 2 line file means that no matter where I am, what project I'm working on, where in the project I'm doing so, I have an easy space to stash notes, thoughts, in progress ideas, spikes, etc.

TODO.md

More often than not, I'm fiddling around with a TODO.md file. Something about writing markdown in your familiar text editor speaks to my soul. It's quick, it's easy, you have all the text editing tricks available to you, and it never does anything you wouldn't expect (looking at you auto-markdown-formatting editors). I use one or two # for headings, I use nested lists, and I ask for nothing more. Nothing more than more TODO.md files that is!

In practice I tend to just have one TODO.md file per project, right at the top, ready to pull up in a few keystrokes. Which I do often. I pull this doc up if:

  • I'm in a meeting and I just said "oh yeah that's a small thing, I'll knock it out this afternoon".
  • I'm halfway through some feature development and realize I want to make a sweeping refactor elsewhere. Toss some thoughts in the doc, and then get back to the task at hand.
  • It's the end of the day and I have to switch my brain into "feed small children" mode, thus obliterating everything work-related from my short term memory. When I open things up the next day and know exactly what the next thing to dive into was.
  • I'm preparing for a big enough refactor and I can't hold it all in my brain at once. What I'd give to have an interactive 3D playground for brain thoughts, but in the meantime a 2D text file isn't a terrible way to plan out dev work.

playground

Sometimes you need more than some human words in a markdown file to move an idea along. This is where my playground directory comes in. I can load this directory up with code that's related to a given project and keep it out of the git history. Because who doesn't like a place to play around.

I find that this directory is more useful for long running maintenance projects over fast moving greenfield ones. On the maintenance projects, I tend to find myself assembling a pile of scripts and experiments for various situations:

  • The client requests a one-time obscure data export. Whip up some CSV generation code and save that code in the playground directory.
  • The client requests a different obscure data export. Pull up the last time you did something vaguely similar and save yourself the startup time.
  • A batch of data needs to be imported just once. Might as well stash that in the chance that "just once" is actually "just a few times".
  • Kicking the tires on an integration with a third party service.

Some of these playground files end up being useful more times than I can count (eg: the ever-changing user_export.rb script). Some items get promoted into application code, which is always fun. But most files here serve their purpose and then wither away. And that's fine. It's a playground, anything goes.

Wrapping up

Having a personal space for project-specific notes and code has been helpful to me over the years as a developer on multiple projects. If you have your own organizational trick, or just want to brag about how you memorize everything without any markdown files, let me know in the comments below!




file

Global Gitignore Files Are Cool and So Are You

Setting it up

First, here's the config setup you need to even allow for such a radical concept.

  1. Define the global gitignore file as a global Git configuration:

    git config --global core.excludesfile ~/.gitignore
    

    If you're on OSX, this command will add the following config lines in your ~/.gitconfig file.

    [core]
      excludesfile = /Users/triplegirldad/.gitignore
    
  2. Load that ~/.gitignore file up with whatever you want. It probably doesn't exist as a file yet so you might have to create it first.

Harnessing its incredible power

There are only two lines in my global gitignore file and they are both fairly useful pretty much all the time.

$ cat ~/.gitignore
TODO.md
playground

This 2 line file means that no matter where I am, what project I'm working on, where in the project I'm doing so, I have an easy space to stash notes, thoughts, in progress ideas, spikes, etc.

TODO.md

More often than not, I'm fiddling around with a TODO.md file. Something about writing markdown in your familiar text editor speaks to my soul. It's quick, it's easy, you have all the text editing tricks available to you, and it never does anything you wouldn't expect (looking at you auto-markdown-formatting editors). I use one or two # for headings, I use nested lists, and I ask for nothing more. Nothing more than more TODO.md files that is!

In practice I tend to just have one TODO.md file per project, right at the top, ready to pull up in a few keystrokes. Which I do often. I pull this doc up if:

  • I'm in a meeting and I just said "oh yeah that's a small thing, I'll knock it out this afternoon".
  • I'm halfway through some feature development and realize I want to make a sweeping refactor elsewhere. Toss some thoughts in the doc, and then get back to the task at hand.
  • It's the end of the day and I have to switch my brain into "feed small children" mode, thus obliterating everything work-related from my short term memory. When I open things up the next day and know exactly what the next thing to dive into was.
  • I'm preparing for a big enough refactor and I can't hold it all in my brain at once. What I'd give to have an interactive 3D playground for brain thoughts, but in the meantime a 2D text file isn't a terrible way to plan out dev work.

playground

Sometimes you need more than some human words in a markdown file to move an idea along. This is where my playground directory comes in. I can load this directory up with code that's related to a given project and keep it out of the git history. Because who doesn't like a place to play around.

I find that this directory is more useful for long running maintenance projects over fast moving greenfield ones. On the maintenance projects, I tend to find myself assembling a pile of scripts and experiments for various situations:

  • The client requests a one-time obscure data export. Whip up some CSV generation code and save that code in the playground directory.
  • The client requests a different obscure data export. Pull up the last time you did something vaguely similar and save yourself the startup time.
  • A batch of data needs to be imported just once. Might as well stash that in the chance that "just once" is actually "just a few times".
  • Kicking the tires on an integration with a third party service.

Some of these playground files end up being useful more times than I can count (eg: the ever-changing user_export.rb script). Some items get promoted into application code, which is always fun. But most files here serve their purpose and then wither away. And that's fine. It's a playground, anything goes.

Wrapping up

Having a personal space for project-specific notes and code has been helpful to me over the years as a developer on multiple projects. If you have your own organizational trick, or just want to brag about how you memorize everything without any markdown files, let me know in the comments below!




file

eagereyesTV: What is Data? Part 1, File Formats and Intent

We all use data all the time, but what exactly is data? How do different programs know what to do with our data? How is visualizing data different from other uses of data? And isn’t everything inside a computer data in the end? The latest episode of eagereyesTV looks at what data is and what […]




file

Syncing Local Alexa Skills JSON Files With Alexa Developer Console Settings

In the Alexa Skills for Node.JS ASK SDK development world, the Alexa Skills Kit (ASK) Command-Line Interface (CLI) is one of the most overlooked tools.

Boosting Developer Productivity

With proper use, one could really increase productivity when developing Alexa Skills. This is especially so if you are creating many Alexa Skills, either because you are in the learning process or you are just managing multiple Alexa Skills projects for yourself or your clients.




file

Determining a dynamic user profile indicative of a user behavior context with a mobile device

Methods, apparatuses and articles of manufacture for use in a mobile device to determine whether a dynamic user profile is to transition from a first state to a second state based, at least in part, on one or more sensed indicators. The dynamic user profile may be indicative of one or more current inferable user behavior contexts for a user co-located with the mobile device. The mobile device may transition a dynamic user profile from a first state to a second state, in response to a determination that the dynamic user profile is to transition from the first state to the second state, and operatively affect one or more functions performed, at least in part, by the mobile device based, at least in part, on the transition of the dynamic user profile to the second state.




file

Observation-based user profiling and profile matching

Observation-based user profiling and profile matching are provided. The network behavior of users of a computer-implemented social network are observed and used for user profiling. By observing network behavior instead of necessarily relying on user self-reported data, accurate and objective user profiles can be formed; user profiling is accomplished based on the observed network behaviors with or without the knowledge of the user being profiled. The observed network behaviors can include the customization of a visual graphic, a media preference, a communication preference, or a selection of words from a word list. The user profiles can be with respect to a domain and two or more users can be matched based on their profiles with respect to the same domain. User ratings and profile updating based on the ratings are also provided.




file

Formulations comprising isosorbide-modified unsaturated polyester resins and low profile additives which produce low shrinkage matrices

Formulations comprising an isosorbide-modified unsaturated polyester comprising maleic acid, fumaric acid, itaconic acid or maleic anhydride and isosorbide and one or more low profile additives. The formulations exhibit better shrink control in molding compound formulations with standard low profile additives than their non-isosorbide-modified analogues. These isosorbide-modified unsaturated polyester resins may be applied in molding compounds like sheet molding compounds or bulk molding compounds and may be components of fiber reinforced composites or other composite materials.




file

Securing crash dump files

In a computer storage system, crash dump files are secured without power fencing in a cluster of a plurality of nodes connected to a storage system. Upon an occurrence of a panic of a crashing node and prior to receiving a panic message of the crashing node by a surviving node loading, in the cluster, a capturing node to become active, prior to a totem token being declared lost by the surviving node, for capturing the crash dump files of the crashing node, while manipulating the surviving node to continue to operate under the assumption the power fencing was performed on the crashing node.




file

Media file synchronization

The description generally relates to a system designed to synchronize the rendering of a media file between a master device and a sister device. The system is designed so that a media file is simultaneously rendered on a master device and a sister device beginning from identical temporal starting points.




file

System for accessing a register file using an address retrieved from the register file

A data processing system and method are disclosed. The system comprises an instruction-fetch stage where an instruction is fetched and a specific instruction is input into decode stage; a decode stage where said specific instruction indicates that contents of a register in a register file are used as an index, and then, the register file pointed to by said index is accessed based on said index; an execution stage where an access result of said decode stage is received, and computations are implemented according to the access result of the decode stage.




file

Efficient conditional ALU instruction in read-port limited register file microprocessor

A microprocessor having performs an architectural instruction that instructs it to perform an operation on first and second source operands to generate a result and to write the result to a destination register only if its architectural condition flags satisfy a condition specified in the architectural instruction. A hardware instruction translator translates the instruction into first and second microinstructions. To execute the first microinstruction, an execution pipeline performs the operation on the source operands to generate the result. To execute the second microinstruction, it writes the destination register with the result generated by the first microinstruction if the architectural condition flags satisfy the condition, and writes the destination register with the current value of the destination register if the architectural condition flags do not satisfy the condition.




file

Identifying differences between source codes of different versions of a software when each source code is organized using incorporated files

An aspect of the present invention identifies differences between source codes (e.g. of different versions of a software), when each source code is organized using incorporated files. In one embodiment, in response to receiving identifiers of a first and second source codes (each source code being organized as a corresponding set of code files), listings of the instructions in the first and second source codes are constructed. Each listing is constructed, for example, by replacing each incorporate statement in the source code with instructions stored in a corresponding one of code files. The differences between the first and second source codes are then found by comparing the constructed listings of instructions.




file

Transferring files to a baseboard management controller (‘BMC’) in a computing system

Transferring files to a baseboard management controller (‘BMC’) in a computing system, including: receiving, by the BMC, a request to initiate an update of the computing system; identifying, by the BMC, an area in memory within the computing system for storing an update file; and transmitting, by the BMC, a request to register the BMC as a virtual memory device.




file

Transferring files to a baseboard management controller (‘bmc’) in a computing system

Transferring files to a baseboard management controller (‘BMC’) in a computing system, including: receiving, by the BMC, a request to initiate an update of the computing system; identifying, by the BMC, an area in memory within the computing system for storing an update file; and transmitting, by the BMC, a request to register the BMC as a virtual memory device.




file

Mirrored file manager

A file managing software program for managing a list of elements in a specific sequence in a first file of a computer program, including the steps of copying the first file to form a second file having an identical list of elements as the first file. The user is then permitted to rearrange the sequence of the elements of the second file independently of the sequence of the first file. A display of both the first and the second file list elements is provided to the user. Further embodiments allow the user to categorize, prioritize, and order according to users specified rules of how the second file element list is organized and displayed to provide a more convenient and flexible presentation of the file contents.




file

Trivial file transfer protocol (TFTP) accelerated file retry option

A method of transferring data using a Trivial File Transport Protocol (TFTP) includes sending first request packet from client to server, first request packet requesting that first file be transferred; transferring first file according to first request packet if first acknowledgement packet is received at client from server indicating that server can accommodate request of first request packet; sending second request packet from client to the server if transfer of first file does not complete successfully, the second request packet including TFTP option indicating that transfer of first file be retried beginning at first block after final block that was successfully transferred in response to first request packet; and retrying transfer of first file according to second request packet if second acknowledgement packet is received at client from server indicating that server can accommodate request of second request packet.




file

Systems and methods for operating a flash memory file system

A flash memory file system including a plurality of flash modules. Each of the plurality of flash modules includes a respective cache memory, a respective flash memory, and a respective flash controller in communication with the respective cache memory and the respective flash memory. A first flash module of the plurality of flash modules is configured to receive a file lookup message including a path name for file data stored on a second flash module of the plurality of flash modules. A third flash module of the plurality of flash modules is configured to select the second flash module based on the path name and a directory table, and generate a file metadata message responsive to the file lookup message. The file metadata message identifies the second flash module as containing the file data.




file

Method of determining clonotypes and clonotype profiles

The invention is directed to methods for determining clonotypes and clonotype profiles in assays for analyzing immune repertoires by high throughput nucleic acid sequencing of somatically recombined immune molecules. In one aspect, the invention comprises generating a clonotype profile from an individual by generating sequence reads from a sample of recombined immune molecules; forming from the sequence reads a sequence tree representing candidate clonotypes each having a frequency; coalescing with a highest frequency candidate clonotype any lesser frequency candidate clonotypes whenever such lesser frequency is below a predetermined value and whenever a sequence difference therebetween is below a predetermined value to form a clonotype. After such coalescence, the candidate clonotypes is removed from the sequence tree and the process is repeated. This approach permits rapid and efficient differentiation of candidate clonotypes with genuine sequence differences from those with experimental or measurement errors, such as sequencing errors.




file

Method of providing data included in building information modeling data file, recording medium therefor, system using the method, and method of providing data using building information modeling server

A method of providing data included in a building information modeling (BIM) data file using a server is provided. The method includes retrieving mapping data corresponding to a user request, extracting data corresponding to at least one entity mapped to the mapping data from the BIM data file, and transmitting the extracted data to a client.




file

Method and system for combined energy therapy profile

A method and system for treating tissue with a combined therapy profile is disclosed. In one exemplary embodiment, ultrasound energy is used to treat numerous depths of tissue within a region of interest and the spatial and temporal properties of the ultrasound energy are varied for more effective treatment. The method and system of the present invention are configured to treat all of the tissue from the surface on down and not spare intervening tissue.




file

Quality of service application controller and user equipment application profiler

Various topologies of a quality of service application controller and related techniques to optimize the communications performance an application executing on a device participating in a communications environment are disclosed. The communications environment may include a cellular network, an unlicensed spectrum network, or a combination of the two. The quality of service application controller observes one or more key performance indicators of the communications network, and retrieves a policy from a policy store specific to the application. The quality of service application controller then modifies the execution of the application and/or the configurable aspects of the communications environment to optimize the communications performance of the application. For example, the application's data throughput may be increased, the power draw of the application may be minimized, data requested by the application may be minimized, or the apparent response time of the application's response to a web service may be minimized.




file

Profile-rolling machine

The invention relates to a profile-rolling machine for rolling a profile in a blank, wherein the profile-rolling machine has a first and a second profile-rolling jaw. The second profile-rolling jaw (126) is guided—held by a carriage (124)—in a guide track (130) relative to the first profile-rolling jaw (110) for the purpose of rolling the profile into the blank. The carriage (124) has a carriage slide plate (122) and the guide track (130) has a guide slide plate (132). The two slide plates together form a sliding pairing and slide on each other. In order to render said sliding pairing less susceptible to dirty lubricant and less susceptible to wear, it is proposed according to the invention to manufacture the guide slide plate (132) and/or the carriage slide plate (122) at least partially from ceramic or from a non-metallic material or to coat the same with such materials.




file

Profile measuring apparatus, method for manufacturing structure, and structure manufacturing system

There is provided a profile measuring apparatus which measures a profile of an object including: a projection unit which projects a pattern on the object from a projection direction; a measurement unit, which is displaced at a difference position for the projection unit and takes an image of the pattern from a direction different from the projection direction to measure a position on a surface of the object based on an image data obtained with the taken image; an object-rotation unit which rotates the object in two directions; and a pattern-rotation unit which is connected to the projection unit so as to be able to rotate the pattern relative to the object-rotation unit.




file

Document fastener and file or folder

In order to newly provide a folder that facilitates insertion of a document fastener into a narrow slit and that is improved in durability by making use of a property of a document fastener whose folded state can be kept due to resin, the document fastener is so arranged to comprise a plate material (a) made of resin having a body part (11) extending longitudinally and a pair of folded pieces (12) extending from the body part (11), wherein a thickness of both end portions (14) of the plate material (a) is formed to be thinner than a thickness of other portions of the plate material (a), a boundary (13) between the body part (11) and the folded piece (12) is made to be foldable, and the folded state on the boundary (13) can be kept by making use of the properties of the resin itself.




file

File binder and document organizer

Disclosed herein is an organizer comprising a unique structural configuration to house and store both non-perforated documents and perforated documents. The organizer comprises a ring binder that is associated with an expandable compartment that is arranged peripheral to the ring binder.




file

File binder and document organizer

Disclosed herein is an organizer comprising a unique structural configuration to house and store both non-perforated documents and perforated documents. The organizer comprises a ring binder that is associated with an expandable compartment that is arranged peripheral to the ring binder.




file

Motion profile generator

Systems and methods are provided for generating a constraint-based, time-optimal motion profile for controlling the trajectory of a point-to-point move in a motion control system. A profile generator can calculate an ST-curve motion profile that includes a jerk reference that varies continuously over time for at least one of the motion profile segments, thereby producing a smooth, time-optimal trajectory. The profile generator can create the motion profile to conform to a set of motion constraints provided by the user. The profile generator also supports calculation of time-optimal motion profiles having segments that align to the sample time of the motion control system. In some embodiments, the profile generator can efficiently generate the motion profile by performing reference calculations only for those segments that will be used in the final motion profile for a given point-to-point move.




file

Low profile, wrappable elongate members spacer and method of maintaining elongate members in fixed, spaced relative relation

A low profile, wrappable spacer and method for maintaining a pair of elongate members in fixed, spaced relation to one another is provided. The wrappable spacer includes a flexible elongate body having oppositely facing inner and outer faces extending along laterally spaced, lengthwise extending edges between opposite ends. The inner face has an adhesive surface. At least one member extends between the edges transversely to the lengthwise extending edges. The member extends outwardly from the adhesive surface, wherein the adhesive surface is configured for adhesion to at least one of the member, the elongate members or the outer face.




file

Allowing inter-process communication via file system filter

In one embodiment, a method allows an application running in a first process to communicate with a second process. A file system filter driver receives a command from the application for a file. The file system filter driver is configured to process file system commands. The file system filter driver determines that the command is for an inter-process communication with a service running in the second process based on the command being for the file. Then, the file system filter driver sends the command to the service running in the second process where the command is processed by the service. A response from the service is received based on the command being processed by the service and the file system filter driver sends the response to the application.




file

Method and system for performing security monitoring on file downloading

The present invention discloses method and system for performing security monitoring on file downloading, and a non-transitory computer-readable medium that stores instructions for performing security monitoring on file downloading. The method includes upon detecting a file downloading operation, performing security detection on a downloaded file to determine whether the downloaded file is secure; if the downloaded file is secure, determining whether a downloading tool adopted when the file is downloaded is instant messenger (IM) software; and if the adopted downloading tool is IM software, modifying a filename extension of the downloaded file to ensure that the downloaded file is capable of being directly opened or run.




file

Information processing apparatus, method and program for writing file system metadata of plural operating systems

An information processing apparatus includes a transmission unit transmitting a command of a second operating system to the second operating system when receiving the command via a communication path which communicates under a control based on a first operating system, an extraction unit extracting data for the second operating system by analyzing the command transmitted from the transmission unit, and a writing unit writing the data extracted by the extraction unit as data constituting file system metadata of the second operating system.




file

Method and system for providing a rotating key encrypted file system

A file system data is divided into two or more data blocks. A unique encryption key is assigned to each data block with the encryption key assigned to each data block being distinct from other encryption keys used to encrypt the other data blocks and each of the data blocks is encrypted using its assigned encryption key. One of the data blocks within the file system is then selected and decrypted using the distinct encryption key assigned to the selected data block and a new encryption key, distinct for the previously assigned encryption key, is assigned to the selected data block and the selected data block is re-encrypted using the new encryption key. This process is then repeated for each data block on a sequential/cyclic and continually rotating basis.




file

Transfer of television programs from channel-specific files to program-specific files

A television receiver including a tuner and one or more processors may be presented. The television receiver may be configured to tune the tuner to a television channel. The television receiver may be configured to create and store an omnibus channel file containing a plurality of television programs broadcast consecutively on the television channel over a period of time. The television receiver may be configured to, after a predefined period of time, select the omnibus channel file for deletion. The television receiver may be configured to determine a television program to receive extended storage. The television receiver may be configured to store a portion of the omnibus channel file as an individual program file, wherein the portion of the omnibus channel file corresponds to the television program. The television receiver may be configured to, after storing the portion of the omnibus channel file, delete the omnibus channel file.




file

Low profile reamers and methods of use

Low profile reamers and methods of use are provided which can, in general, allow a hole to be drilled in bone. In one embodiment, a low profile retractable bone reamer is provided having an elongate shaft with a cutting element disposed on a distal end of the elongate shaft that can be configured to drill a hole in bone. The elongate shaft and cutting element can have first and second longitudinally separated portions that are movably coupled to each other. The reamer can be configured to move between a retracted configuration, in which a the reamer has a reduced, low profile configuration, and a non-retracted configuration, in which both longitudinally separated portions of the cutting element can be positioned adjacent to one another to form a single cutting element.




file

Preserving seasoning flavour profiles during the manufacturing of food-seasoning sheets

A method and an installation are provided for preserving desired seasoning flavour profiles during the manufacturing of food-seasoning sheets. The method includes the steps of; laying a thin layer of adhesive on a base sheet; removing air from the adhesive prior to the step of laying; reducing free moisture from the adhesive during the step of laying, and depositing food-seasoning ingredients onto the thin layer of adhesive. The installation for manufacturing food-seasoning sheets includes an adhesive dispenser having a reservoir and a delivery slot communicating with the reservoir for dispensing adhesive. The dispenser has a heating element mounted thereto for heating the adhesive. The adhesive is made under a partial vacuum and it is conveyed to the dispenser in a partial vacuum.




file

Method for downloading a configuration file in a programmable circuit, and apparatus comprising said component

The present invention relates to a method for downloading a binary configuration file in a programmable circuit implemented in a device. The device comprises at least one central processing unit, a plurality of connectors, and a programmable circuit enabling all or a part of the signals received by said connectors to be processed and transmitted to at least one other circuit of the device. The device analyzes the signals present on the connectors in order to define what other devices are connected and whether the connections are operational. Then, a configuration file is selected from among a set of configuration files according to the operational connections and is downloaded from a memory of the device into the programmable circuit. The invention also relates to a device having a component programmed according to the method previously described.




file

Profiled arc splitter plate

A profiled arc splitter plate for a switch having a fixed contact and a movable contact is provided to increase electromagnetic attractive forces on the arc generated during contact separation. The plate (300) comprises a body (306) defining an operatively inverted substantially V-shaped recess having a center notch (302) provided at the vertex of the recess and at least one protrusion (304) defined on either side of the center notch (302) along the inclined side walls of the recess, the movable contact of the switch displaceable through the recess without contacting the inclined side walls, in a spaced apart manner from the protrusions (304) and the center notch (302). Chamfers 308 are provided at an end of the plate (300) proximal to the vertex of the recess to provide an exit for hot gases towards the vent of the arc chamber.




file

Hand operated jacks for lifting file cabinets

This invention discloses mechanical and hydraulic jacks for lifting heavy fireproof and burglary proof file cabinets with their contents inside for transportation to a truck or other destination. This jack can also lift lateral or regular file cabinets with their contents inside for transportation. It discloses a hook assembly which can be extended over the top of the cabinet remote from the jack with a hook to hold the cabinet from tilting. It discloses a lifting assembly with a lifting plate at the front bottom of the jack for inserting under the bottom corners of the cabinet for lifting. A device for tilting the cabinet away from the jack is disclosed to allow the lifting plate to be inserted under the cabinet. A lifting plate on the front bottom of the jack can be extended under the end of a file cabinet which is secured by the hooking assembly.




file

Device to produce round cross-section articles with complicated profiled surfaces

A lathe attachment device is disclosed for producing long articles with complicated profiles. The device contains a beveled multi-teeth cutter driven to rotate in a direction opposite the rotation of a billet to ensure a very short period of contact time between an individual cutting tooth and the article. The cutter is slightly tilted towards the billet in both horizontal and vertical plane. The teeth of the cutter are shaped to each have a pointed end facing the rough part of the billet. Provisions are made to draw the cutter along the billet. The device allows producing a smooth finished long article with complicated surface profile in a single pass with high productivity. Due to limited contact time, it offers extended life of the cutter. The device is used most advantageously to produce long wood articles.




file

Tire comprising a tread with asymmetric groove profiles

A pneumatic tire comprises an annular tread portion including a plurality of circumferentially extending main grooves comprising an innermost groove, an outermost groove, and at least one middle groove arranged between the innermost groove and the outermost groove. The outermost groove comprises an inner sidewall, an outer sidewall, a groove bottom, and a groove opening opposite to the groove bottom, wherein the outermost groove has an asymmetric cross section with respect to any straight line perpendicular to the groove opening, and wherein the outer sidewall of the outermost groove is tilted by more than 20° with respect to a straight line perpendicular to the groove opening.




file

Low resistance hair clipper blade tooth profile

A tooth for a blade of a hair cutting apparatus includes a root secured to a base of the blade, a tip opposite the root, and a longitudinal axis of the tooth defined between the root and the tip. A lower, planar cutting surface is provided on the tooth, as is an upper surface opposite the lower surface, and sidewalls separating the upper surface from the lower surface. At least a portion of the upper surface and the sidewalls is elliptical in the direction of the longitudinal axis, beginning at the tip.




file

Non-uniform vacuum profile die attach tip

A tool is disclosed for separating a semiconductor die from a tape to which the die is affixed during the wafer dicing process. The tool includes a pick-up arm for positioning a vacuum tip over a semiconductor die to be removed. The vacuum tip includes a non-uniform array of vacuum holes to grip the semiconductor wafer.




file

Low profile solar drying tunnel

A solar drying tunnel having a low-profile and which is transportable includes a bottom portion, a frame, a cover, and externally controlled rolling mechanism for turning grain over. The tunnel may also include a fan at one end and a chimney at another end to provide enhanced air flow.




file

Longitudinally ground file having increased resistance to torsional and cyclic fatigue failure

A method of producing an endodontic file that involves grinding in a plane substantially parallel to the longitudinal axis of a rotating dental instrument blank. By grinding the dental instrument blank in this manner, the torsional strength of the resulting endodontic file is not eroded during its production, thereby providing a file that is less susceptible to breakage during its use.




file

Method for profiling a flat reversible key, and flat reversible key, based on a flat reversible key profile, which is produced according to the method

A method for profiling broad sides of a flat reversible key. A key blank is clamped to expose the first broad side of the key blank and complementary grooves and ribs are milled using a milling cutter with cutter teeth by advance in the longitudinal direction of the key relative to the longitudinal section profile of the cutter teeth. The key blank is then clamped in a position turned by 180° about the longitudinal center axis of the key so that the second broad side of the blank is exposed, and complementary grooves and ribs are milled into the broad side with milling cutter, by advance in the longitudinal direction of the key. The cutter shaft axes is inclined at an angle of inclination (φ) relative to the longitudinal center plane of the key, at least one cutter tooth rib of the cutter teeth producing an undercut guide wall.




file

Manufacturing apparatus of plate-like tooth profile member

[Problem] To present a manufacturing apparatus of a plate-like tooth profile member capable of forging and forming in one process by using a closed type die, being hardly accompanied by burrs due to plastic changes in the circumferential direction and in the axial direction of the material of the plate-like tooth profile member. [Solving Means] Consisting of an upper die 1 and a lower die 2 of closed type, the lower die 2 is composed of a tooth die 21 for forming a tooth portion in a material W of a plate-like tooth profile member, and movable dies 22, 22 movable relatively in a vertical direction to the tooth die 21 disposed at both sides in the axial direction of the material W of the plate-like tooth profile member of the tooth die 21, a first stroke is executed for confining the circumference at both end portions in the axial direction of the material W of the plate-like tooth profile member by the upper die 1 and the movable dies 22, 22, and a second stroke is executed for forming a tooth portion in the material W of the plate-like tooth profile member by the upper die 1 and the tooth die 21.




file

Wire profile for card clothing

A wire profile comprises a rib portion and a plurality of teeth over the length of the rib portion. The teeth are sloped with a back slope representing the backbone of the teeth and a front slope representing the side in direct contact with fiber. The back slope has a tangent forming a hack angle with the rib portion, and the front slope is divided into at least two segments, a tip segment converging with the back slope to form a tip of the teeth and serving to penetrate between fibers, and an undercut segment to retain the fibers. The undercut segment has a tangent forming an undercut angle with the rib portion, and the undercut angle is at each point in the undercut segment greater than the maximum of the hack angle and smaller than the smallest value of the tip angle.




file

Wire profile for card clothing

A wire profile having a rib portion and plurality of teeth over the length of said rib portion, wherein said plurality of teeth is inclined at an angle with respect to the said rib portion, wherein said teeth has a front portion and a back portion, wherein said front portion is the inner portion of the said teeth leaning towards the rib portion and said back portion is the outer portion of the said teeth, and wherein at least one teeth with said back portion comprises at least one nose cut segment.




file

Device and method for forming a uniform or profiled fleece or a uniform or profiled fiber flock mat

The device for producing a uniform or profiled fleece or a fiber flock mat includes a material dispensing device which produces a fleece and a transport device for the further transport of the fleece. The device also includes a measuring device to determine a transverse profile and a longitudinal profile of the fleece by measuring the mass per unit area of the fleece across its width, and a profile-changing device for supplying individualized fibers or fiber flocks to the fleece. A control unit controls the profile-changing device on the basis of the results of the measuring device in such a way that the profile-changing device supplies the individualized fibers or fiber flocks section by section in a targeted manner. Thus, depending on the purpose of the application, a uniform fleece or a fleece with a nonuniform transverse profile or longitudinal profile can be produced.